/*
Theme Name: Clemix Realtors
Author: Clemix Realtors Limited
Version: 3.0.0
Text Domain: clemix
*/

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:       #0B3C5D;
  --navy-dark:  #072d47;
  --navy-mid:   #0f4d74;
  --gold:       #D4AF37;
  --gold-light: #e8cc6b;
  --gold-pale:  #fdf8e8;
  --white:      #FFFFFF;
  --gray-bg:    #F5F7FA;
  --gray-line:  #E4E9EF;
  --gray-mid:   #8A97A8;
  --text:       #1A2B3C;
  --text-soft:  #4A5E72;
  --shadow-sm:  0 2px 12px rgba(11,60,93,0.08);
  --shadow-md:  0 8px 32px rgba(11,60,93,0.12);
  --shadow-lg:  0 20px 60px rgba(11,60,93,0.16);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --transition: 0.25s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; }
input, textarea, select { font: inherit; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

.section-title {
  font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-soft); max-width: 560px; line-height: 1.7; }
.section-sub.centered { margin: 0 auto; }

section { padding: 88px 0; }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px; transition: all var(--transition); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 8px 24px rgba(11,60,93,0.3); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 18px 40px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .nav-logo { color: var(--navy); }
.site-header.scrolled .nav-logo span { color: var(--gold); }
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-link:hover { color: var(--navy); }
.site-header.scrolled .nav-toggle { color: var(--navy); border-color: var(--gray-line); }

.nav-logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px; transition: color var(--transition);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.9); padding: 8px 14px; border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--gold); }

/* Properties mega-dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 20px; min-width: 340px; opacity: 0; visibility: hidden;
  transition: all var(--transition); pointer-events: none;
  border: 1px solid var(--gray-line);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-prop { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 8px; transition: background var(--transition); }
.dropdown-prop:hover { background: var(--gray-bg); }
.dropdown-prop-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 14px; }
.dropdown-prop-units { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.unit-badge { font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: 20px; }
.unit-badge.available { background: #e8f5e9; color: #2e7d32; }
.unit-badge.occupied { background: #ffebee; color: #c62828; }
.dropdown-view-btn { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--navy); background: var(--gray-bg); padding: 6px 14px; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.dropdown-view-btn:hover { background: var(--navy); color: var(--white); }
.dropdown-divider { height: 1px; background: var(--gray-line); margin: 8px 0; }

.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 8px 12px; border-radius: 8px; font-size: 18px; transition: all var(--transition); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7,45,71,0.92) 0%, rgba(11,60,93,0.75) 55%, rgba(11,60,93,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 120px 32px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold); padding: 8px 16px; border-radius: 100px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800; color: var(--white); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-testimonial {
  margin-top: 48px; padding-top: 28px; max-width: 480px;
  border-top: 1px solid rgba(255,255,255,0.15); min-height: 90px;
}
.hero-testimonial__quote-mark { font-size: 24px; color: var(--gold); line-height: 1; display: inline-block; margin-bottom: 8px; }
.hero-testimonial__quote { font-size: 17px; font-style: italic; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 12px; min-height: 26px; }
.hero-testimonial__name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--gold); margin: 0; }
.hero-testimonial__role { font-size: 12px; color: rgba(255,255,255,0.6); margin: 2px 0 0; }

/* Hero search card */
.hero-search-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero-search-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hero-search-card p { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }
.search-form { display: flex; flex-direction: column; gap: 14px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group select, .form-group input {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-line);
  border-radius: 8px; font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color var(--transition); appearance: none;
}
.form-group select:focus, .form-group input:focus { outline: none; border-color: var(--navy); }
.search-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ── PROPERTIES SECTION ──────────────────────────────────── */
.properties { background: var(--gray-bg); }
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.property-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.property-card__img { position: relative; height: 220px; overflow: hidden; }
.property-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .property-card__img img { transform: scale(1.06); }
.property-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; letter-spacing: 0.5px;
}
.property-card__body { padding: 24px; }
.property-card__name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.property-card__loc { font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 5px; margin-bottom: 16px; }
.property-card__units { margin-bottom: 20px; }
.property-card__units-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-mid); margin-bottom: 8px; }
.units-list { display: flex; gap: 8px; flex-wrap: wrap; }
.unit-chip {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 12px; font-weight: 500;
  padding: 5px 10px; border-radius: 6px; border: 1.5px solid;
  cursor: pointer; transition: all var(--transition);
}
.unit-chip.available { border-color: #4caf50; color: #2e7d32; background: #f1f8f1; }
.unit-chip.occupied { border-color: #ef5350; color: #b71c1c; background: #fdf1f1; }
.unit-chip.available:hover { background: #4caf50; color: var(--white); }
.unit-chip input[type=checkbox] { width: 13px; height: 13px; accent-color: #4caf50; }
.property-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--gray-line); }
.property-card__from { font-family: var(--font-head); font-size: 12px; color: var(--text-soft); }
.property-card__price { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--gray-bg); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: all var(--transition); border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; background: var(--navy);
  transform: scaleY(0); transform-origin: bottom; transition: transform var(--transition);
  z-index: 0;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.15); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.78); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(11,60,93,0.08); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: background var(--transition);
}
.service-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: color var(--transition); }
.service-desc { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; transition: color var(--transition); }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-us { background: var(--navy); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: rgba(212,175,55,0.06); top: -200px; right: -200px; pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,60,93,0.4) 0%, transparent 60%);
}
.why-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: var(--gold); color: var(--navy); border-radius: var(--radius-lg);
  padding: 16px 20px; font-family: var(--font-head); font-weight: 800;
}
.why-badge__num { font-size: 32px; line-height: 1; }
.why-badge__text { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.why-text .section-tag { color: var(--gold); }
.why-text .section-title { color: var(--white); }
.why-text .section-sub { color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-feature-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(212,175,55,0.15); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-feature-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-feature-desc { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.5; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section { background: var(--gray-bg); }
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.gtab {
  padding: 10px 22px; border-radius: 100px; font-family: var(--font-head); font-size: 13px; font-weight: 600;
  border: 2px solid var(--gray-line); background: var(--white); color: var(--text-soft);
  transition: all var(--transition); cursor: pointer;
}
.gtab.active, .gtab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gitem { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gitem:hover img { transform: scale(1.08); }
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-overlay {
  position: absolute; inset: 0; background: rgba(11,60,93,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gitem-overlay svg { color: var(--white); width: 32px; height: 32px; }
.gitem.wide { grid-column: span 2; }
.gitem.tall { grid-row: span 2; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--gray-bg); border-radius: var(--radius-lg); padding: 32px;
  position: relative; border: 2px solid transparent; transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-soft); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); }
.testimonial-label { font-size: 12px; color: var(--gray-mid); }
.testimonial-quote {
  position: absolute; top: 24px; right: 24px;
  font-family: Georgia, serif; font-size: 64px; line-height: 1; color: var(--gold); opacity: 0.15;
}

/* ── NEWS ────────────────────────────────────────────────── */
.news-section { background: var(--gray-bg); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__img { height: 200px; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__body { padding: 24px; }
.news-card__date { font-size: 12px; color: var(--gray-mid); font-family: var(--font-head); font-weight: 500; margin-bottom: 10px; }
.news-card__title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.news-card__excerpt { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 18px; }
.news-card__link { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.news-card__link:hover { color: var(--gold); }

/* ── BOOK A VIEWING CTA ──────────────────────────────────── */
.booking-cta {
  background: var(--navy); padding: 88px 0; position: relative; overflow: hidden;
}
.booking-cta::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(212,175,55,0.07); bottom: -200px; right: -100px; pointer-events: none;
}
.booking-cta::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(212,175,55,0.05); top: -100px; left: -80px; pointer-events: none;
}
.booking-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.booking-cta h2 { font-family: var(--font-head); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.booking-cta p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7; }
.booking-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.booking-form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px; margin-top: 52px;
  text-align: left; box-shadow: var(--shadow-lg);
}
.booking-form-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form .full { grid-column: 1 / -1; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-line); border-radius: 8px;
  font-size: 14px; color: var(--text); background: var(--gray-bg); transition: border-color var(--transition);
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.booking-form textarea { resize: none; height: 100px; }
.booking-form .btn { grid-column: 1 / -1; justify-content: center; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(11,60,93,0.08); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-item-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; color: var(--text); line-height: 1.5; }
.contact-item-value a:hover { color: var(--navy); }
.contact-dept-list { display: flex; flex-direction: column; gap: 10px; }
.contact-dept { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--gray-bg); border-radius: 8px; border-left: 3px solid var(--gold); }
.contact-dept-name { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); min-width: 140px; }
.contact-dept-email { font-size: 13.5px; color: var(--text-soft); }
.contact-dept-email a { color: var(--navy); font-weight: 500; }
.contact-dept-email a:hover { color: var(--gold); }
.contact-form { background: var(--gray-bg); border-radius: var(--radius-xl); padding: 40px; }
.contact-form h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-grid .full { grid-column: 1 / -1; }
.cf-grid input, .cf-grid select, .cf-grid textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-line); border-radius: 8px;
  font-size: 14px; color: var(--text); background: var(--white); transition: border-color var(--transition);
}
.cf-grid input:focus, .cf-grid select:focus, .cf-grid textarea:focus { outline: none; border-color: var(--navy); }
.cf-grid textarea { resize: none; height: 120px; }
.cf-grid .btn { grid-column: 1 / -1; justify-content: center; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(7,45,71,0.96); z-index: 200; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lb-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 32px; background: none; border: none; opacity: 0.7; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 36px; background: rgba(0,0,0,0.3); border: none; padding: 16px 20px; border-radius: 8px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: var(--navy); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.2), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 52px; }
.footer-brand .nav-logo { font-size: 24px; color: var(--white); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.62); max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; flex-direction: column; margin-bottom: 14px; }
.footer-contact-item .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-search-card { max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gitem.wide { grid-column: span 1; }
  .gitem.tall { grid-row: span 1; }
  .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: var(--white); padding: 20px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open .nav-link { color: var(--text); padding: 12px 16px; }
  .nav-links.open .nav-link:hover { color: var(--navy); background: var(--gray-bg); }
  .nav-toggle { display: block; }
  section { padding: 60px 0; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .hero-testimonial { max-width: 100%; }
  .booking-form, .cf-grid { grid-template-columns: 1fr; }
  .booking-form .full, .cf-grid .full, .booking-form .btn, .cf-grid .btn { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── NEIGHBOURHOOD SECTION ──────────────────────────────── */
.neighbourhood { background: var(--dark); padding: 100px 0 0; }
.nbr-hero {
  position: relative; height: 70vh; min-height: 500px;
  overflow: hidden; display: flex; align-items: flex-end;
  background: linear-gradient(135deg, #0d2b1a 0%, #1a3c2a 50%, #0d2b1a 100%);
}
.nbr-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55; transition: transform 8s ease;
}
.nbr-hero:hover .nbr-hero-img { transform: scale(1.04); }
.nbr-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.3) 55%, rgba(13,13,13,0.1) 100%);
}
.nbr-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 60px; width: 100%; max-width: 900px;
}
.nbr-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold); padding: 8px 18px; border-radius: 100px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.nbr-hero-badge::before { content: '🦁'; }
.nbr-hero h2 {
  font-family: var(--font-head); font-size: clamp(38px,6vw,68px);
  font-weight: 800; color: #fff; line-height: 1.05;
  margin-bottom: 16px; letter-spacing: -1px;
}
.nbr-hero h2 span { color: var(--gold); }
.nbr-hero p { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 620px; line-height: 1.7; }

/* Distance ticker */
.nbr-distance-bar {
  background: var(--gold); padding: 18px 60px;
  display: flex; align-items: center; gap: 0; overflow: hidden;
}
.nbr-dist-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 40px; border-right: 1px solid rgba(11,60,93,0.25);
  flex-shrink: 0;
}
.nbr-dist-item:last-child { border-right: none; }
.nbr-dist-icon { font-size: 26px; }
.nbr-dist-num {
  font-family: var(--font-head); font-size: 22px;
  font-weight: 800; color: var(--navy-dark); line-height: 1;
}
.nbr-dist-label { font-size: 12px; font-weight: 600; color: rgba(11,60,93,0.7); letter-spacing: 0.3px; }

/* Attractions grid */
.nbr-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.nbr-card {
  background: var(--charcoal); padding: 40px 32px;
  border-top: 3px solid transparent; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.nbr-card:hover { border-color: var(--gold); background: var(--mid); }
.nbr-card__num {
  font-family: var(--font-head); font-size: 72px; font-weight: 800;
  color: rgba(212,175,55,0.07); position: absolute; top: -8px; right: 12px; line-height: 1;
}
.nbr-card__icon { font-size: 38px; margin-bottom: 20px; display: block; }
.nbr-card__name {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.nbr-card__dist {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.nbr-card__desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); }

/* Map section */
.nbr-map { background: var(--dark); padding: 0; }
.nbr-map iframe { width: 100%; height: 420px; border: none; filter: grayscale(20%) contrast(1.1); }
.nbr-map-overlay {
  background: var(--charcoal); padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.nbr-map-overlay h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.nbr-map-overlay p { font-size: 14px; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .nbr-grid { grid-template-columns: 1fr 1fr; }
  .nbr-distance-bar { flex-wrap: wrap; padding: 16px 30px; gap: 14px; }
  .nbr-dist-item { border-right: none; padding: 10px 20px; }
  .nbr-hero-content { padding: 0 30px 50px; }
  .nbr-map-overlay { padding: 28px 30px; }
}
@media (max-width: 640px) {
  .nbr-grid { grid-template-columns: 1fr; }
  .nbr-hero { height: 80vh; }
  .nbr-map iframe { height: 300px; }
}

/* ── SOCIAL LINK HUB (QR landing page) ───────────────────── */
.social-hub {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  padding: 60px 20px; overflow: hidden;
}
.social-hub__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.social-hub__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,45,71,0.94) 0%, rgba(11,60,93,0.9) 100%);
}
.social-hub__inner {
  position: relative; z-index: 2; max-width: 460px; width: 100%; text-align: center;
}
.social-hub__brand { margin-bottom: 8px; }
.social-hub__logo {
  font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -0.5px;
}
.social-hub__logo span { color: var(--gold); }
.social-hub__tag {
  font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-top: 6px;
}
.social-hub__desc {
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 20px 0 32px;
}
.social-hub__links { display: flex; flex-direction: column; gap: 12px; }
.social-hub__link {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 16px 20px;
  color: var(--white); text-decoration: none; transition: all var(--transition);
}
.social-hub__link:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); transform: translateY(-2px); }
.social-hub__icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }
.social-hub__icon svg { width: 100%; height: 100%; }
.social-hub__label { font-family: var(--font-head); font-size: 15px; font-weight: 600; flex: 1; text-align: left; }
.social-hub__arrow { color: rgba(255,255,255,0.4); font-size: 16px; }
.social-hub__back {
  display: inline-block; margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none;
}
.social-hub__back:hover { color: var(--gold); }
