/* ==============================================
   NEXORA ESTATE — GLOBAL STYLES
   Theme: Navy Blue (#1a2a4a) + Gold (#C9A84C)
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2a4a;
  --navy-dark:  #0f1c31;
  --navy-mid:   #243558;
  --gold:       #C9A84C;
  --gold-light: #e0c97a;
  --gold-dark:  #a8872e;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --text-dark:  #1c1c2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2d9c8;
  --shadow-sm:  0 2px 8px rgba(26,42,74,.08);
  --shadow-md:  0 8px 32px rgba(26,42,74,.12);
  --shadow-lg:  0 20px 60px rgba(26,42,74,.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,28,49,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: 0 5%;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
.nav-brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: .5px; }
.brand-tag { font-size: .65rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-auth { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.btn-nav-login {
  color: var(--gold); border: 1.5px solid var(--gold);
  padding: 8px 20px; border-radius: 50px; font-size: .88rem; font-weight: 600;
  transition: var(--transition);
}
.btn-nav-login:hover { background: var(--gold); color: var(--navy); }
.btn-nav-register {
  background: var(--gold); color: var(--navy);
  padding: 8px 20px; border-radius: 50px; font-size: .88rem; font-weight: 700;
  transition: var(--transition);
}
.btn-nav-register:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; height: 50vh; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,28,49,.8) 0%, rgba(15,28,49,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 20px; max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: 8px 20px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px; line-height: 1.15; }
.hero-title .gold { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 560px; margin-inline: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,.5); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; background: rgba(255,255,255,.4); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════ */
.search-section {
  background: var(--white);
  padding: 0; margin-top: -1px;
}
.search-bar-wrapper {
  max-width: 1100px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 32px 36px;
  transform: translateY(-60px); position: relative; z-index: 10;
}
.search-tabs { display: flex; gap: 4px; margin-bottom: 24px; }
.search-tab {
  padding: 10px 24px; border-radius: 50px; border: none;
  background: var(--off-white); color: var(--text-mid);
  font-weight: 600; font-size: .9rem; cursor: pointer; transition: var(--transition);
}
.search-tab.active { background: var(--navy); color: var(--white); }
.search-fields { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.search-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.search-field input, .search-field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter',sans-serif;
  font-size: .95rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.search-field input:focus, .search-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.btn-search {
  background: var(--gold); color: var(--navy); border: none;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-search:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section { padding: 90px 5%; }
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 16px; }
.section-subtitle { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-inline: auto; }

/* ══════════════════════════════════════
   FEATURED PROPERTIES
══════════════════════════════════════ */
.properties-section { background: var(--off-white); }
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.property-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-img-wrap { position: relative; height: 220px; overflow: hidden; }
.property-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.property-card:hover .property-img-wrap img { transform: scale(1.08); }
.property-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 5px 14px; border-radius: 50px; font-size: .76rem; font-weight: 700;
}
.property-wishlist {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.property-wishlist:hover { background: var(--white); transform: scale(1.1); }
.property-wishlist svg { width: 18px; height: 18px; color: var(--text-mid); }
.property-body { padding: 20px; }
.property-price { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.property-price span { font-size: .85rem; color: var(--text-light); font-family: 'Inter',sans-serif; font-weight: 400; }
.property-name { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.property-location { display: flex; align-items: center; gap: 4px; color: var(--text-light); font-size: .88rem; margin-bottom: 16px; }
.property-location svg { width: 14px; height: 14px; }
.property-features { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.property-feat { display: flex; align-items: center; gap: 5px; font-size: .83rem; color: var(--text-mid); }
.property-feat svg { width: 15px; height: 15px; color: var(--gold); }
.view-all-wrap { text-align: center; margin-top: 48px; }
.btn-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy);
  padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--navy); color: var(--white); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px; background: rgba(201,168,76,.12);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1; transition: var(--transition);
}
.service-icon svg { width: 30px; height: 30px; color: var(--gold); }
.service-card:hover .service-icon { background: rgba(201,168,76,.2); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; position: relative; z-index: 1; transition: var(--transition); }
.service-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; position: relative; z-index: 1; transition: var(--transition); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 220px; height: 160px; object-fit: cover;
  border-radius: var(--radius-md); border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge-stat {
  position: absolute; top: -20px; left: -20px;
  background: var(--gold); color: var(--navy);
  padding: 18px 24px; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-stat strong { display: block; font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; }
.about-badge-stat span { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feat { display: flex; align-items: flex-start; gap: 12px; }
.about-feat-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(201,168,76,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.about-feat-icon svg { width: 20px; height: 20px; color: var(--gold); }
.about-feat h4 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.about-feat p { font-size: .83rem; color: var(--text-light); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: var(--navy); color: var(--white); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.7); }
.testimonials-slider-wrapper { 
  position: relative; 
  max-width: 800px; 
  margin: 0 auto; 
  padding: 0 60px;
}
.testimonials-slider { 
  position: relative; 
  overflow: hidden;
  min-height: 300px;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}
.testimonial-card-slider {
  background: rgba(255,255,255,.06); 
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); 
  padding: 48px 40px;
  text-align: center;
}
.testimonial-stars { 
  color: var(--gold); 
  font-size: 1.4rem; 
  margin-bottom: 24px; 
}
.testimonial-text { 
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: rgba(255,255,255,.9); 
  margin-bottom: 32px; 
  font-style: italic;
  max-width: 600px;
  margin-inline: auto;
}
.testimonial-author { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  justify-content: center;
}
.testimonial-name { 
  font-weight: 600; 
  font-size: 1.05rem; 
  color: var(--white); 
}
.testimonial-role { 
  font-size: .9rem; 
  color: var(--gold); 
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.testimonial-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.testimonial-nav svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonial-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}
.testimonial-dot:hover {
  background: rgba(255,255,255,.5);
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 80px 5%; text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(26,42,74,.8); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-dark {
  background: var(--navy); color: var(--white); border: none;
  padding: 15px 38px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-cta-dark:hover { background: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-outline {
  background: transparent; color: var(--navy);
  border: 2.5px solid var(--navy); padding: 13px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(26,42,74,.08); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding: 70px 5% 50px; max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-heading { font-family: 'Playfair Display',serif; font-size: 1.05rem; color: var(--gold); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-contact svg { width: 18px; height: 18px; min-width: 18px; color: var(--gold); margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 5%; text-align: center;
  font-size: .85rem; color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 74, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
}
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-nav svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
.lightbox-prev {
  left: 32px;
}
.lightbox-next {
  right: 32px;
}
.lightbox-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--off-white); }
.faq-container { 
  max-width: 900px; 
  margin: 0 auto; 
}
.faq-item {
  background: var(--white); 
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border); 
  transition: var(--transition);
  margin-bottom: 16px;
}
.faq-item:hover { 
  border-color: var(--gold); 
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 20px 24px; 
  background: transparent; 
  border: none;
  text-align: left; 
  cursor: pointer; 
  font-family: 'Inter',sans-serif;
  font-size: 1rem; 
  font-weight: 600; 
  color: var(--navy);
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px; 
  height: 20px; 
  min-width: 20px;
  color: var(--gold); 
  transition: transform .3s ease;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; 
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 24px 20px 24px;
  font-size: .9rem; 
  line-height: 1.7; 
  color: var(--text-mid);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.fade-in-up { animation: fadeInUp .7s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px){
  .search-fields { grid-template-columns: 1fr 1fr 1fr; }
  .btn-search { grid-column: span 3; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { right: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px){
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 80px; left: 0; right: 0; background: rgba(15,28,49,.98); padding: 20px; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-auth { flex-direction: row; justify-content: center; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); margin-left: 0; }
  .nav-toggle { display: flex; }
  .search-bar-wrapper { padding: 24px 20px; transform: translateY(-40px); }
  .search-fields { grid-template-columns: 1fr; }
  .btn-search { grid-column: span 1; }
  .search-tabs { overflow-x: auto; }
  .hero-stats { gap: 24px; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-accent { display: none; }
  section { padding: 60px 5%; }
  .testimonials-slider-wrapper { padding: 0 50px; }
  .testimonial-card-slider { padding: 32px 24px; }
  .testimonial-nav { width: 40px; height: 40px; }
  .testimonial-nav svg { width: 20px; height: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
}
@media(max-width:480px){
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
}

/* ── NAVBAR DROPDOWN STYLING ── */
.nav-links li {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 1100;
  padding: 20px 24px;
  margin-top: 15px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 40px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}
.nav-dropdown-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #8c9ba5;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 8px 0;
  color: #0f1c31;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  border-bottom: none;
}
.nav-dropdown-item:hover {
  color: var(--gold);
  padding-left: 6px;
  background: transparent;
}
.btn-nav-post {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}
.btn-nav-post svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
}
.btn-nav-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    padding: 6px 0;
    margin-top: 4px;
    margin-left: 14px;
    display: none;
  }
  .nav-dropdown::before {
    display: none;
  }
  .nav-links li.open-dropdown .nav-dropdown {
    display: block;
  }
  .nav-dropdown-item {
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
  }
  .nav-dropdown-item:hover {
    color: var(--gold);
    padding-left: 16px;
  }
  .nav-dropdown-header {
    color: rgba(255,255,255,0.4);
    padding: 4px 16px;
    margin-bottom: 4px;
  }
  .btn-nav-post {
    padding: 14px 20px;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-top: 8px;
  }
  .btn-nav-post:hover {
    transform: none;
  }
}
