/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0a1f44;
  --blue-800: #0f3172;
  --blue-700: #1a4fa0;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --gold:       #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark:  #A8882C;
  --cream:      #F8F4EE;
  --dark:       #07111D;
  --charcoal:   #1A2535;
  --white:    #ffffff;
  --gray-900: #0f172a;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --green:    #16a34a;
  --orange:   #ea580c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --radius:   14px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: none;
  padding: 0;
  border-radius: 0;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  padding: .65rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--blue-700);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text { color: var(--gray-900); }
.logo-text span { color: var(--blue-600); }
.logo-white .logo-text { color: var(--white); }
.logo-white .logo-text span { color: var(--gold-light); }

#navbar:not(.scrolled) .logo-text { color: var(--white); }
#navbar:not(.scrolled) .logo-text span { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a:hover { color: var(--blue-600); }

.btn-loans {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark) !important;
  padding: .48rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  display: inline-flex; align-items: center; gap: .38rem;
  transition: transform .25s, box-shadow .25s;
  letter-spacing: .03em;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-loans:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.55);
  color: var(--dark) !important;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  display: flex; align-items: center; gap: .4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--gray-900); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 1.5rem 6rem;
  background: #030507;
}

/* ---- Slideshow ---- */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #030507;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  animation: ken-burns 10s ease-out forwards;
}
/* Outgoing slide stays on top while fading — prevents gap flash */
.hero-slide.leaving {
  opacity: 0;
  z-index: 2;
}
@keyframes ken-burns {
  from { transform: scale(1);    }
  to   { transform: scale(1.09); }
}

/* Cinematic dark gradient over slides */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,15,35,.55) 0%, rgba(5,15,35,.3) 40%, rgba(5,15,35,.72) 100%),
    linear-gradient(90deg,  rgba(5,15,35,.6)  0%, transparent 60%);
}

/* Slide counter – top right */
.slide-counter {
  position: absolute; top: 5.5rem; right: 2rem;
  z-index: 3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
}
.slide-counter #slideCurrentNum { color: rgba(255,255,255,.9); font-size: .92rem; }

/* ---- Slide nav ---- */
.slide-nav {
  position: absolute; bottom: 2.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.slide-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.slide-arrow:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }
.slide-dots { display: flex; align-items: center; gap: .55rem; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ---- Hero content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.45);
  margin-bottom: 1.6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.hero-heading span {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  margin-bottom: 2.6rem;
  line-height: 1.75;
}

/* Search box */
.search-box {
  display: flex;
  gap: .5rem;
  background: var(--white);
  border-radius: 16px;
  padding: .6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .8rem;
}
.search-field i { color: var(--gray-500); font-size: .95rem; flex-shrink: 0; }
.search-field input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .92rem;
  color: var(--gray-900);
  width: 100%;
  background: transparent;
}
.search-field input::placeholder { color: var(--gray-500); }
.search-select {
  flex: 0 0 140px;
  padding: .5rem .8rem;
  border-left: 1px solid var(--gray-300);
}
.search-select select {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .88rem;
  color: var(--gray-700);
  background: transparent;
  width: 100%;
  cursor: pointer;
}
.btn-search {
  background: var(--blue-600);
  color: var(--white);
  padding: .75rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: .92rem;
  display: flex; align-items: center; gap: .5rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-search:hover { background: var(--blue-700); transform: translateY(-1px); }

/* Builder logos strip */
.builder-strip {
  margin: 2.2rem 0 2rem;
  text-align: center;
}
.strip-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}
.strip-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 12%, white 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, white 12%, white 88%, transparent 100%);
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-track img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
  flex-shrink: 0;
  transition: opacity .25s ease;
  display: block;
}
.strip-track img:hover { opacity: 1; }
.strip-text-logo {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .25s ease;
}
.strip-text-logo:hover { color: rgba(255,255,255,1); }

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== LOCALITIES ===== */
.localities-section { background: var(--dark); }
.localities-section .section-header h2 { color: var(--white); }
.localities-section .section-sub { color: rgba(255,255,255,.55); }
.localities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1rem;
}
.locality-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
  transition: transform .4s ease, box-shadow .4s ease;
}
.locality-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.locality-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.locality-card:hover .locality-img { transform: scale(1.09); }
.locality-img i { display: none; }
.locality-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1.1rem;
  background: linear-gradient(to top, rgba(5,10,25,.95) 0%, rgba(5,10,25,.6) 55%, transparent 100%);
}
.locality-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--white);
  letter-spacing: .01em;
}
.locality-info span {
  font-size: .68rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ===== PROPERTIES ===== */
.properties-section { background: var(--white); }
.filter-tabs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue-500); color: var(--blue-600); }
.filter-btn.active { background: var(--dark); color: var(--gold); border-color: var(--gold); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.6rem;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: none;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, outline .4s ease;
}
.property-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(0,0,0,.14); outline: 1.5px solid rgba(201,168,76,.4); }
.property-card.hidden { display: none; }

.prop-image-wrap { position: relative; }
.prop-image {
  height: 275px;
  overflow: hidden;
}
.prop-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.property-card:hover .prop-image img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.prop-badge.ready   { background: #dcfce7; color: #16a34a; }
.prop-badge.upcoming{ background: #fef9c3; color: #b45309; }
.prop-badge.luxury  { background: #ede9fe; color: #7c3aed; }

.prop-rera-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(10,31,68,.82);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 4px;
  letter-spacing: .04em;
}
.prop-rera {
  font-size: .72rem;
  color: var(--gray-500);
  margin: .4rem 0 .6rem;
  word-break: break-all;
}

.prop-wishlist {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  font-size: .9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.prop-wishlist:hover { color: #ef4444; transform: scale(1.1); }
.prop-wishlist.active { color: #ef4444; }

.prop-body { padding: 1.2rem; }
.prop-tags {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .6rem;
}
.prop-tags span {
  font-size: .75rem;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: .2rem .6rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: .3rem;
  font-weight: 500;
}
.prop-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: var(--gray-900);
  letter-spacing: .01em;
}
.prop-builder {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .35rem;
}
.prop-details {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.prop-details div { display: flex; align-items: center; gap: .35rem; }
.prop-details i { color: var(--gold-dark); }
.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .9rem;
  border-top: 1px solid var(--gray-100);
}
.prop-price { font-size: 1.08rem; font-weight: 800; color: var(--gold-dark); letter-spacing: .01em; }
.btn-enquire {
  background: transparent;
  color: var(--gold-dark);
  padding: .48rem 1.1rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  border: 1.5px solid var(--gold);
  letter-spacing: .04em;
  transition: all var(--transition);
}
.btn-enquire:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-600);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
}
.btn-primary-large:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.35); }

/* ===== WHY US ===== */
.why-section { background: var(--blue-900); }
.why-section .section-tag { color: rgba(255,255,255,.55); }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(201,168,76,.4);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background var(--transition), transform var(--transition), border-left-color var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); border-left-color: var(--gold); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ===== PROCESS ===== */
.process-section { background: var(--cream); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(201,168,76,.25);
  line-height: 1;
  margin-bottom: .6rem;
}
.step-icon {
  width: 62px; height: 62px;
  background: var(--white);
  border: 2px solid rgba(201,168,76,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin: 0 auto .9rem;
  box-shadow: 0 4px 18px rgba(201,168,76,.18);
}
.process-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; color: var(--gray-900); }
.process-step p { font-size: .83rem; color: var(--gray-500); line-height: 1.6; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--blue-300, #93c5fd);
  padding: 3.5rem .5rem 0;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #050e1c; }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,.5); }
.testimonials-section .section-tag { color: var(--gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  border: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.6rem; left: 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  pointer-events: none;
  user-select: none;
}
.testimonial-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4); transform: translateY(-5px); border-color: rgba(201,168,76,.3); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 1rem; display: flex; gap: .18rem; }
.testimonial-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--white); }
.testimonial-author span { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ===== CONTACT ===== */
.contact-section { background: var(--gray-100); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: .9rem; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: .9rem; line-height: 1.25; }
.contact-sub { color: var(--gray-500); font-size: .93rem; margin-bottom: 2rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: .9rem; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.08);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .85rem; color: var(--gray-700); margin-bottom: .1rem; }
.contact-item span { font-size: .9rem; color: var(--gray-900); font-weight: 500; }

.social-links { display: flex; gap: .7rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(201,168,76,.08);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,168,76,.3); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full-width { margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-500); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  padding: .9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: all var(--transition);
  margin-bottom: .8rem;
  border: none;
}
.btn-submit:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.form-note { font-size: .75rem; color: var(--gray-500); text-align: center; display: flex; align-items: center; justify-content: center; gap: .3rem; }

.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success i { font-size: 3.5rem; color: var(--green); }
.form-success h3 { font-size: 1.4rem; font-weight: 800; }
.form-success p { color: var(--gray-500); font-size: .92rem; }
.btn-whatsapp-lg {
  background: #25D366;
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .88rem; margin: 1rem 0 1.5rem; line-height: 1.7; }
.footer-brand .social-links a { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.15); }
.footer-brand .social-links a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-col h4 { color: var(--white); font-size: .92rem; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .3s, box-shadow .3s, opacity .5s, visibility .5s;
}
/* Hidden while hero is in view */
.whatsapp-float.wa-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.75) !important;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-900);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  width: 42px; height: 42px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue-900);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; color: var(--white) !important; }
  .hero-stats { gap: 1rem; padding: 1rem; }
  .stat { padding: 0 1rem; }
  .stat-divider { display: none; }
  .search-box {
    flex-direction: column;
    gap: 0;
    padding: .4rem;
    border-radius: 12px;
  }
  .search-field {
    padding: .55rem .75rem;
    min-width: unset;
  }
  .search-field input { font-size: .85rem; }
  .search-select {
    flex: unset;
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding: .5rem .75rem;
  }
  .search-select select { font-size: .83rem; padding: 0; }
  .btn-search {
    padding: .65rem 1.2rem;
    font-size: .85rem;
    border-radius: 9px;
    width: 100%;
    justify-content: center;
  }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .localities-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== EDITORIAL BANNER ===== */
.editorial-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(6,18,38,.55) 0%, rgba(6,18,38,.72) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&h=800&q=85&auto=format&fit=crop') center/cover no-repeat;
}
.editorial-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,18,38,.6) 0%, transparent 60%);
  pointer-events: none;
}
.editorial-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%;
  padding: 0 2rem;
}
.editorial-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.editorial-banner h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.4rem;
  max-width: 560px;
}
.editorial-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.editorial-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold);
  color: var(--dark);
  padding: .85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .05em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.editorial-cta:hover { background: var(--gold-dark); color: var(--white); transform: translateX(5px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

/* ===== SHOWCASE SPLIT ===== */
.showcase-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.showcase-img {
  position: relative;
  overflow: hidden;
}
.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.showcase-section:hover .showcase-img img { transform: scale(1.04); }
.showcase-text {
  background: var(--blue-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.showcase-text .section-tag {
  color: var(--gold);
  align-self: flex-start;
  margin-bottom: 1.4rem;
}
.showcase-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 1.4rem;
}
.showcase-text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.showcase-text .btn-primary-large {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .editorial-banner { height: 420px; }
  .showcase-section { grid-template-columns: 1fr; }
  .showcase-img { height: 300px; }
  .showcase-text { padding: 3rem 2rem; }
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(7,17,29,.72) 0%, rgba(7,17,29,.78) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=700&q=85&auto=format&fit=crop') center/cover no-repeat;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem;
  width: 100%;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.3rem;
  letter-spacing: -.01em;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-band-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
}
.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold);
  color: var(--dark);
  padding: .95rem 2.4rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-cta-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  color: var(--white);
  padding: .95rem 2.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.35);
  transition: all var(--transition);
}
.btn-cta-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

@media (max-width: 768px) {
  .cta-band-inner { padding: 4rem 1.5rem; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}

/* ===== PROCESS ARROW GOLD ===== */
.process-arrow {
  font-size: 1.5rem;
  color: rgba(201,168,76,.45);
  padding: 3.5rem .5rem 0;
  flex-shrink: 0;
}

/* ===== FORM FOCUS GOLD ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }

/* ===== BACK TO TOP GOLD ===== */
.back-to-top { background: var(--gold-dark); }
.back-to-top:hover { background: var(--gold); color: var(--dark); }

/* ===== NAVBAR SCROLLED LOGO GOLD SPAN ===== */
#navbar.scrolled .logo-text span { color: var(--gold-dark); }

/* ===== FILTER BTN HOVER GOLD ===== */
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,.05); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: preloader-float 1.4s ease-in-out infinite;
}
.preloader-track {
  width: 90px; height: 2px;
  background: rgba(201,168,76,.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: preloader-fill .9s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: .15s;
}
.preloader-label {
  margin-top: 1.3rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(201,168,76,.45);
}
@keyframes preloader-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.08); }
}
@keyframes preloader-fill { to { width: 100%; } }

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [onclick], .property-card, .locality-card, .filter-btn, input, select, textarea, label { cursor: none; }
  .custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, opacity .25s ease, background .25s ease;
    will-change: transform;
  }
  .custom-cursor.hovered {
    width: 44px; height: 44px;
    background: rgba(201,168,76,.2);
    border: 1.5px solid var(--gold);
  }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--cream);
  padding: 1.3rem 0;
  border-top: none;
  border-bottom: 1px solid rgba(201,168,76,.18);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(168,136,44,.6);
  white-space: nowrap;
  padding-right: 1.8rem;
  border-right: 1px solid rgba(201,168,76,.3);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  padding: .15rem 1.4rem;
  border-right: 1px solid rgba(201,168,76,.2);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color .25s ease;
  white-space: nowrap;
}
.trust-logo-item:last-child { border-right: none; }
.trust-logo-item:hover { color: var(--gold-dark); }
@media (max-width: 768px) {
  .trust-label { border-right: none; padding-right: 0; }
  .trust-inner { flex-direction: column; gap: .8rem; }
}

/* ===== FEATURED PROPERTY CARD ===== */
@media (min-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(3, 1fr); }
  .property-card.featured { grid-column: span 2; }
  .property-card.featured .prop-image { height: 365px; }
  .property-card.featured .prop-body h3 { font-size: 1.55rem; }
  .property-card.featured .prop-price { font-size: 1.25rem; }
  .property-card.featured .prop-body { padding: 1.6rem; }
}

/* ===== WHATSAPP FLOAT PULSE ===== */
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
  70%  { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float { animation: wa-pulse 2.5s ease infinite; }
.whatsapp-float:hover { animation: none; transform: scale(1.12); box-shadow: 0 12px 36px rgba(37,211,102,.55); }

/* ===== HERO LEFT ACCENT LINE ===== */
.hero-content::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 15%;
  height: 55%;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
  opacity: .45;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-content::before { display: none; }
}

/* ===== NAVBAR GOLD HOVER LINK ===== */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ===== FOOTER TOP GOLD BORDER ===== */
.footer { border-top: 2px solid rgba(201,168,76,.35); }

/* ===== VIEW DETAILS LINK ===== */
.btn-view-detail {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .04em;
  transition: color .2s;
  padding: 0 0 0 .8rem;
  border-left: 1px solid var(--gray-200);
  white-space: nowrap;
}
.btn-view-detail:hover { color: var(--gold-dark); }
.btn-view-detail i { font-size: .65rem; }

/* ===== PROPERTY CARD CURSOR POINTER ===== */
.property-card[data-id] { cursor: pointer; }
.prop-footer { gap: .6rem; align-items: center; }

/* ===== CONTACT SECTION WARM BG ===== */
.contact-section { background: var(--cream); }

/* ===== SECTION ALTERNATING TONES ===== */
.properties-section { background: #fafaf8; }

/* ===== PROP BUILDER ICON COLOR ===== */
.prop-builder i { color: var(--gold-dark); opacity: .7; }

/* ===== SCROLLED NAVBAR GOLD HOVER ===== */
#navbar.scrolled .nav-links a::after { background: var(--gold-dark); }

/* ===== HERO SCROLL HINT GOLD ===== */
.hero-scroll-hint { color: rgba(201,168,76,.65); }
.hero-scroll-hint i { color: var(--gold); }

/* ===== LIVE DOT ===== */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  vertical-align: middle;
  margin-right: .3rem;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(74,222,128,.6);
  animation: live-ring 1.8s ease-out infinite;
}
@keyframes live-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ===== SHOWCASE HEADING SERIF ===== */
.showcase-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.01em;
}
.showcase-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ===== EDITORIAL BANNER HEADING SERIF ===== */
.editorial-banner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.02em;
}

/* ===== WHY CARD TITLE SERIF ===== */
.why-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ===== PROP TAGS WARM NEUTRAL ===== */
.prop-tags span {
  font-size: .72rem;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
}
.prop-tags span i { color: var(--gold-dark); }

/* ===== PROP FOOTER BORDER WARM ===== */
.prop-footer { border-top: 1px solid #f0ede8; }

/* ===== SECTION HEADERS SPACING ===== */
.section-header { margin-bottom: 3.5rem; }

/* ===== PROCESS STEP HEADING SERIF ===== */
.process-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ===== CONTACT FORM HEADING SERIF ===== */
.contact-form h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ===== CONTACT INFO HEADING SERIF ===== */
.contact-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* ===== FOOTER COL LINKS GOLD HOVER ===== */
.footer-col ul li a:hover { color: var(--gold-light); }

/* ===== BTN PRIMARY LARGE → GOLD VARIANT ===== */
.btn-primary-large {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-primary-large:hover { background: var(--gold-dark); color: var(--white); box-shadow: 0 8px 28px rgba(201,168,76,.4); }

/* ===== PROP BODY LAYOUT ===== */
.prop-body { padding: 1.3rem; }

/* ===== PROP RERA BADGE GOLD ===== */
.prop-rera-badge {
  background: rgba(10,31,68,.88);
  border-left: 2px solid var(--gold);
}

/* ===== SECTION TAG - dark section override ===== */
.contact-info .section-tag { color: var(--gold); }

/* ============================================================
   PREMIUM ANIMATIONS
   ============================================================ */

/* ---- Scroll Reveal Base Classes ---- */
.reveal {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .75s;
}
.reveal.fade-up    { transform: translateY(50px); }
.reveal.fade-down  { transform: translateY(-35px); }
.reveal.fade-left  { transform: translateX(-60px); }
.reveal.fade-right { transform: translateX(60px); }
.reveal.zoom-in    { transform: scale(.88); transition-duration: .65s; }
.reveal.flip       { transform: perspective(700px) rotateX(20deg) translateY(30px); transition-duration: .8s; }
.reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* Stagger delays */
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

/* ---- Gold Price Shimmer ---- */
@keyframes gold-shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
.prop-price {
  background: linear-gradient(90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 38%,
    #fff8e7 50%,
    var(--gold-light) 62%,
    var(--gold-dark) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s linear infinite;
}

/* ---- Button Shine Sweep ---- */
.btn-cta-gold::after,
.btn-submit::after,
.btn-search::after,
.btn-enquire::after,
.btn-primary-large::after,
.editorial-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-cta-gold:hover::after,
.btn-submit:hover::after,
.btn-search:hover::after,
.btn-enquire:hover::after,
.btn-primary-large:hover::after,
.editorial-cta:hover::after { left: 130%; }

/* ---- Featured Service Card Glow Pulse ---- */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,.08); }
  50%       { box-shadow: 0 10px 44px rgba(201,168,76,.25); }
}
.service-card--featured { animation: card-glow 3.5s ease-in-out infinite; }

/* ---- Dubai Stat Number Pop ---- */
@keyframes num-pop {
  0%   { transform: translateY(20px) scale(.85); opacity: 0; }
  65%  { transform: translateY(-4px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1);       opacity: 1; }
}
.dubai-stat.pop .dubai-num {
  animation: num-pop .65s cubic-bezier(.34,1.56,.64,1) both;
}
.dubai-stat:nth-child(1).pop .dubai-num { animation-delay: .05s; }
.dubai-stat:nth-child(2).pop .dubai-num { animation-delay: .2s;  }
.dubai-stat:nth-child(3).pop .dubai-num { animation-delay: .35s; }

/* ---- Dubai Perk Slide-In ---- */
@keyframes perk-slide {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}
.dubai-perk { opacity: 0; }
.dubai-perk.pop { animation: perk-slide .5s ease forwards; }
.dubai-perk:nth-child(1).pop { animation-delay: .45s; }
.dubai-perk:nth-child(2).pop { animation-delay: .6s;  }
.dubai-perk:nth-child(3).pop { animation-delay: .75s; }
.dubai-perk:nth-child(4).pop { animation-delay: .9s;  }

/* ---- Section Heading Gold Underline ---- */
.section-header h2 { display: inline-block; position: relative; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .85s cubic-bezier(.4,0,.2,1) .3s;
}
.section-header.heading-visible h2::after { width: 55%; }

/* ---- Why Card Icon Pulse on Hover ---- */
@keyframes icon-pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(201,168,76,.35); }
  50%  { transform: scale(1.1);  box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(201,168,76,0); }
}
.why-card:hover .why-icon { animation: icon-pulse .65s ease forwards; }
.service-card:hover .service-icon { animation: icon-pulse .65s ease forwards; }

/* ---- Locality Card Gold Tint on Hover ---- */
.locality-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(201,168,76,.07);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.locality-card:hover::after { opacity: 1; }

/* ---- Section Tag Line Draw Animation ---- */
.section-tag::before,
.section-tag::after { transition: width .6s cubic-bezier(.4,0,.2,1) .1s; }
.section-header.heading-visible .section-tag::before,
.section-header.heading-visible .section-tag::after { width: 28px; }
/* start at 0 when not yet visible (only if inside section-header) */
.section-header .section-tag::before,
.section-header .section-tag::after { width: 0; }

/* ---- Hero Badge Float ---- */
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-badge { animation: badge-float 3.8s ease-in-out infinite; }

/* ---- Hero Scroll Hint Bounce (enhanced) ---- */
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
.hero-scroll-hint { animation: scroll-hint-bounce 2.2s ease-in-out infinite; }

/* ---- Stat Numbers Gradient ---- */
.hero-stats .stat-num {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Dubai Section: badge entrance ---- */
@keyframes badge-slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dubai-badge { animation: badge-slide-up .7s ease .9s both; }

/* ---- Process Step Number Glow ---- */
@keyframes step-num-glow {
  0%, 100% { -webkit-text-fill-color: rgba(201,168,76,.2); }
  50%       { -webkit-text-fill-color: rgba(201,168,76,.5); }
}
.process-step.is-visible .step-num {
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: step-num-glow 2.5s ease-in-out infinite;
}

/* ---- Testimonial card quote mark pulse ---- */
.testimonial-card:hover::before {
  opacity: .28;
  transition: opacity .35s ease;
}

/* ============================================================
   3D ANIMATIONS
   ============================================================ */

/* ---- WHY CARD 3D FLIP ---- */
.why-card {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  perspective: 1100px;
  min-height: 240px;
  transform: none !important; /* disable tilt – inner handles it */
  box-shadow: none !important;
}
.why-card-inner {
  position: relative;
  width: 100%;
  min-height: 240px;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.4, 0, .2, 1);
}
@media (hover: hover) {
  .why-card:hover .why-card-inner { transform: rotateY(180deg); }
}
.why-card-front,
.why-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-card-front {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(201,168,76,.45);
  justify-content: flex-start;
}
.why-card-back {
  background: linear-gradient(135deg, rgba(201,168,76,.2) 0%, rgba(201,168,76,.07) 100%);
  border: 1.5px solid rgba(201,168,76,.4);
  box-shadow: inset 0 0 40px rgba(201,168,76,.06), 0 20px 60px rgba(0,0,0,.35);
  transform: rotateY(180deg);
  justify-content: center;
}
.why-card-front .why-icon { margin-bottom: 1.3rem; }
.why-card-back .why-icon {
  margin-bottom: 1rem;
  background: rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.5);
}
.why-card-front h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0; }
.why-card-back h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.why-card-back p { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.72; }
.why-flip-hint {
  margin-top: auto;
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .35rem;
  text-transform: uppercase;
}
.why-flip-hint i { animation: spin-slow 3s linear infinite; }
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- HERO HEADING 3D TEXT SHADOW ---- */
.hero-heading {
  text-shadow:
    1px 1px 0   rgba(0,0,0,.4),
    2px 2px 0   rgba(0,0,0,.3),
    3px 3px 0   rgba(0,0,0,.2),
    4px 4px 0   rgba(0,0,0,.12),
    5px 5px 12px rgba(0,0,0,.25);
}
.hero-heading span {
  text-shadow:
    1px 1px 0   rgba(168,136,44,.5),
    2px 2px 0   rgba(168,136,44,.35),
    3px 3px 8px rgba(0,0,0,.3);
}

/* ---- SERVICE CARD 3D ROTATION ON HOVER ---- */
.service-card {
  perspective: 900px;
  transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease, border-top-color .35s ease;
}
@media (hover: hover) {
  .service-card:hover {
    transform: perspective(900px) rotateX(-4deg) rotateY(3deg) translateY(-8px) scale(1.02);
    box-shadow: 8px 20px 50px rgba(0,0,0,.12), -4px 4px 20px rgba(201,168,76,.1);
  }
}

/* ---- PROPERTY CARD Z-AXIS ENTRANCE ---- */
.reveal.zoom-in {
  transform: scale(.88) translateZ(-60px);
  transition-duration: .7s;
}
.reveal.zoom-in.is-visible { transform: none; }

/* ---- LOCALITY CARD 3D DEEP HOVER ---- */
.locality-card {
  transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s ease;
  transform-style: preserve-3d;
}
@media (hover: hover) {
  .locality-card:hover {
    transform: perspective(600px) rotateX(-6deg) rotateY(4deg) translateY(-10px) scale(1.03);
    box-shadow: 12px 30px 70px rgba(0,0,0,.5);
  }
}

/* ---- FLOATING 3D WIREFRAME SHAPES ---- */
.dubai-section { position: relative; overflow: hidden; }
.shape-float {
  position: absolute;
  border: 1.5px solid rgba(201,168,76,.12);
  pointer-events: none;
  z-index: 0;
  transform-origin: center center;
}
.shape-float--1 {
  width: 90px; height: 90px;
  top: 12%; right: 4%;
  transform: rotate(45deg);
  animation: shape-orbit 8s ease-in-out infinite;
}
.shape-float--2 {
  width: 50px; height: 50px;
  bottom: 22%; right: 11%;
  transform: rotate(45deg);
  animation: shape-orbit 6s ease-in-out infinite .9s reverse;
  border-color: rgba(201,168,76,.08);
}
.shape-float--3 {
  width: 130px; height: 130px;
  top: 45%; left: 46%;
  border-radius: 50%;
  animation: shape-orbit 11s linear infinite 1.8s;
  border-color: rgba(201,168,76,.06);
}
@keyframes shape-orbit {
  0%   { transform: rotate(0deg)   translateY(0px)   scale(1);    }
  25%  { transform: rotate(55deg)  translateY(-22px) scale(1.06); }
  50%  { transform: rotate(110deg) translateY(-38px) scale(.94);  }
  75%  { transform: rotate(165deg) translateY(-18px) scale(1.03); }
  100% { transform: rotate(220deg) translateY(0px)   scale(1);    }
}

/* ---- 3D LOGO ICON SPIN ON HOVER ---- */
.logo-icon {
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  transform-style: preserve-3d;
}
.logo:hover .logo-icon {
  transform: perspective(200px) rotateY(180deg);
}

/* ---- PROCESS STEP 3D Z-ENTRANCE ---- */
.reveal.flip.is-visible {
  opacity: 1;
  transform: perspective(700px) rotateX(0deg) translateY(0) translateZ(0);
}
.reveal.flip {
  transform: perspective(700px) rotateX(20deg) translateY(30px) translateZ(-40px);
}

/* ---- PROPERTY CARD 3D DEPTH GLOW ---- */
.property-card {
  transform-style: preserve-3d;
}
.property-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.property-card:hover::after { opacity: 1; }

/* ---- TESTIMONIAL CARD 3D TILT ---- */
.testimonials-grid { perspective: 1200px; }
.testimonial-card {
  transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s ease, border-color .35s ease;
}

/* ---- STATS BAR 3D PERSPECTIVE ---- */
.hero-stats {
  transform: perspective(800px) rotateX(2deg);
  transition: transform .4s ease;
}
.hero-stats:hover { transform: perspective(800px) rotateX(0deg); }

/* ---- FOOTER brand fade-up on scroll ---- */
.footer-brand, .footer-col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.footer.footer-visible .footer-brand,
.footer.footer-visible .footer-col { opacity: 1; transform: translateY(0); }
.footer.footer-visible .footer-col:nth-child(2) { transition-delay: .1s; }
.footer.footer-visible .footer-col:nth-child(3) { transition-delay: .2s; }
.footer.footer-visible .footer-col:nth-child(4) { transition-delay: .3s; }

/* ===== DUBAI SECTION ===== */
.dubai-section { background: var(--dark); }
.dubai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.dubai-text .section-tag { color: var(--gold); }
.dubai-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.dubai-text h2 em { font-style: italic; color: var(--gold-light); }
.dubai-text > p {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.dubai-stats {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  overflow: hidden;
}
.dubai-stat {
  flex: 1;
  text-align: center;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgba(201,168,76,.15);
  background: rgba(201,168,76,.04);
  transition: background .25s;
}
.dubai-stat:hover { background: rgba(201,168,76,.09); }
.dubai-stat:last-child { border-right: none; }
.dubai-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .35rem;
}
.dubai-label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.dubai-perks { display: flex; flex-direction: column; gap: .75rem; }
.dubai-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
}
.dubai-perk i { color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.dubai-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.dubai-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.dubai-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7,17,29,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 10px;
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
}
.dubai-badge i { font-size: 1rem; }
@media (max-width: 900px) {
  .dubai-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dubai-img-wrap { order: -1; }
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,.15);
  border-top: 3px solid transparent;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: transform .35s ease, box-shadow .35s ease, border-top-color .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
  border-top-color: var(--gold);
}
.service-card--featured {
  border-top-color: var(--gold);
  background: #fdfcf8;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--gray-700);
  font-weight: 500;
}
.service-list li i { color: var(--gold-dark); font-size: .72rem; flex-shrink: 0; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== HOME SERVICES STRIP ===== */
.home-services-strip { background: var(--cream); }
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hs-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,.15);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hs-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(0,0,0,.1); }
.hs-icon {
  width: 62px; height: 62px;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold-dark);
  margin: 0 auto 1.1rem;
  transition: background .25s, transform .25s;
}
.hs-card:hover .hs-icon { background: rgba(201,168,76,.18); transform: scale(1.08); }
.hs-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .55rem;
}
.hs-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.hs-cta {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.hs-card:hover .hs-cta { gap: .7rem; }
@media (max-width: 900px) { .home-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .home-services-grid { grid-template-columns: 1fr; } }

/* ===== PLANS SECTION ===== */
.plans-section { background: var(--dark); }
.plans-section .section-tag { color: var(--gold); }
.plans-section h2 { color: var(--white); }
.plans-section .section-sub { color: rgba(255,255,255,.55); }

.plans-tabs-wrap {
  overflow-x: auto;
  margin-bottom: 2.8rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.plans-tabs-wrap::-webkit-scrollbar { display: none; }
.plans-tabs {
  display: flex;
  gap: .4rem;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: .35rem;
  width: fit-content;
  min-width: max-content;
  margin: 0 auto;
}
.plan-tab {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  font-family: inherit;
}
.plan-tab i { font-size: .88rem; }
.plan-tab.active { background: var(--gold); color: var(--dark); }
.plan-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,.08); }

.plan-content { display: none; }
.plan-content.active { display: block; animation: planFadeIn .4s ease; }
@keyframes planFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.plan-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(0,0,0,.35); }
.plan-card--popular { border-color: var(--gold); background: rgba(201,168,76,.06); }

.plan-popular-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 20px;
}

.plan-card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.plan-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.plan-card--popular .plan-icon { background: rgba(201,168,76,.2); border-color: var(--gold); }
.plan-card-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.plan-price { margin: .7rem 0 .5rem; }
.plan-price span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.plan-card-header > p { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.5; }

.plan-features {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .72rem;
}
.plan-features li {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.plan-features li i { font-size: .75rem; color: var(--gold); flex-shrink: 0; }
.plan-feature--off { opacity: .3; }
.plan-feature--off i { color: rgba(255,255,255,.35) !important; }

.plan-cta {
  display: block;
  text-align: center;
  padding: .9rem 1.5rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  transition: all .25s;
  font-family: inherit;
}
.plan-cta:hover { background: rgba(255,255,255,.14); color: var(--white); }
.plan-cta--gold { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.plan-cta--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); }
@media (max-width: 900px) { .plan-cards-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ===== POST YOUR PROPERTY ===== */
.post-property-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, #0d1f3c 60%, var(--dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.post-property-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.post-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.post-prop-text .section-tag { color: var(--gold); }
.post-prop-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.post-prop-text h2 em { font-style: italic; color: var(--gold-light); }
.post-prop-text > p {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.post-prop-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.post-prop-benefits li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.post-prop-benefits li i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.post-prop-form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 28px 65px rgba(0,0,0,.3);
}
.post-prop-form h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.8rem;
  text-align: center;
}
@media (max-width: 900px) {
  .post-prop-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =====================================================
   HERO 3D ANIMATION SUITE
   Gold Particles · Mouse Parallax · Tilt · Scroll Recede · Stats Flip
   ===================================================== */

/* --- Gold Dust Particles container --- */
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
@keyframes particle-rise {
  0%   { transform: translateY(0)       translateX(0)                      scale(1);    opacity: var(--pop);               }
  55%  { transform: translateY(-55vh)   translateX(calc(var(--drift)*.55))  scale(.80);  opacity: calc(var(--pop) * .50);   }
  100% { transform: translateY(-108vh)  translateX(var(--drift))            scale(.50);  opacity: 0;                        }
}

/* --- Hero content GPU hints --- */
.hero-content {
  will-change: transform, opacity;
}
.hero-slides {
  will-change: transform, filter;
  transform-origin: center center;
}

/* --- Stats 3D flip-in --- */
.hero-stats .stat {
  opacity: 0;
  animation: stat-3d-enter .78s cubic-bezier(.23, 1, .32, 1) forwards;
}
.hero-stats .stat-divider {
  opacity: 0;
  animation: stat-divider-fade .45s ease forwards;
}
@keyframes stat-3d-enter {
  from { opacity: 0; transform: perspective(580px) rotateY(85deg) translateY(10px); }
  to   { opacity: 1; transform: perspective(580px) rotateY(0deg)  translateY(0);   }
}
@keyframes stat-divider-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   PREMIUM UPGRADE — Scroll Progress · Sticky Filter · Badges · Enquiry Drawer
   ============================================================ */

/* ---- Scroll Progress Bar ---- */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  z-index: 10001;
  pointer-events: none;
  will-change: width;
  animation: progress-shimmer 3s linear infinite;
}
@keyframes progress-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ---- Sticky Filter Tabs ---- */
.filter-tabs {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---- Premium Badge Redesign ---- */
.prop-badge {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .68rem;
  letter-spacing: .07em;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.prop-badge.ready {
  background: rgba(5,15,25,.85);
  color: #4ade80;
  border-color: rgba(74,222,128,.28);
}
.prop-badge.upcoming {
  background: rgba(5,15,25,.85);
  color: var(--gold-light);
  border-color: rgba(201,168,76,.38);
}
.prop-badge.luxury {
  background: rgba(5,15,25,.85);
  color: var(--gold-light);
  border-color: rgba(201,168,76,.5);
}

/* ---- Enquire button — position relative for shine effect ---- */
.btn-enquire {
  position: relative;
  overflow: hidden;
}

/* ---- Enquiry Drawer ---- */
.enq-drawer {
  position: fixed;
  inset: 0;
  z-index: 6000;
  pointer-events: none;
  visibility: hidden;
}
.enq-drawer.open {
  pointer-events: all;
  visibility: visible;
}
.enq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,17,29,.48);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s ease;
}
.enq-drawer.open .enq-overlay { opacity: 1; }

.enq-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  background: var(--white);
  transform: translateX(105%);
  transition: transform .44s cubic-bezier(.23,1,.32,1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 70px rgba(0,0,0,.22);
}
.enq-drawer.open .enq-panel { transform: translateX(0); }

.enq-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.7rem 1.8rem 1.3rem;
  border-bottom: 1px solid #f0ede8;
  flex-shrink: 0;
  background: var(--white);
}
.enq-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .35rem;
}
.enq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.15;
}
.enq-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  font-size: .95rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
  margin-top: .15rem;
}
.enq-close:hover { background: var(--gray-100); color: var(--gray-900); }

.enq-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.enq-prop-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: .65rem 1rem;
  background: rgba(201,168,76,.07);
  border-left: 2.5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}
.enq-prop-label:empty { display: none; }

.enq-form { display: flex; flex-direction: column; gap: 1.1rem; }

.enq-form .req { color: #ef4444; margin-left: .15rem; }

.enq-submit {
  margin-top: .4rem;
  background: #25D366;
  color: #fff;
  border: none;
  font-size: .93rem;
  letter-spacing: .03em;
}
.enq-submit:hover {
  background: #1cb955;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,211,102,.38);
}

.enq-privacy {
  font-size: .73rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  text-align: center;
  padding-top: .4rem;
  border-top: 1px solid var(--gray-100);
}
.enq-privacy i { color: var(--green); font-size: .8rem; }

