/* ═══════════════════════════════════════════════════════════
   99BHK — Premium Real Estate Design System
   Palette: Warm White · Charcoal · Sand · Matte Gold
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:        #FAF8F5;
  --white-pure:   #FFFFFF;
  --charcoal:     #141414;
  --charcoal-mid: #2A2A2A;
  --charcoal-soft:#404040;
  --sand:         #C4B49A;
  --sand-light:   #EDE5D8;
  --sand-dark:    #9E8A6E;
  --stone:        #8A8A8A;
  --stone-light:  #C0BBBB;
  --stone-pale:   #F0EEEB;
  --gold:         #B8963E;
  --gold-light:   #D4AF5C;
  --gold-pale:    #F5EDD8;
  --green:        #2D4A3E;
  --green-light:  #3D6456;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-h:        76px;
  --r-sm:         8px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         36px;
  --r-full:       999px;

  --shadow-sm:    0 2px 12px rgba(20,20,20,.06);
  --shadow-md:    0 8px 32px rgba(20,20,20,.10);
  --shadow-lg:    0 20px 60px rgba(20,20,20,.14);
  --shadow-gold:  0 8px 32px rgba(184,150,62,.25);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:       0.18s;
  --t-base:       0.32s;
  --t-slow:       0.56s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width var(--t-fast), height var(--t-fast), background var(--t-fast);
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.28s, height 0.28s, opacity 0.28s;
  opacity: 0.6;
}
body.cursor-hover .cursor { width: 6px; height: 6px; background: var(--charcoal); }
body.cursor-hover .cursor-follower { width: 54px; height: 54px; opacity: 0.3; }

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transition: width 0.1s linear;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.body-lg { font-size: 1.125rem; line-height: 1.72; color: var(--stone); }
.body-md { font-size: 1rem; line-height: 1.68; color: var(--stone); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-header { margin-bottom: clamp(48px, 7vw, 80px); }
.section-header.centered { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white-pure);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(184,150,62,.35); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-outline-sm {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  border: 1.5px solid var(--sand);
  color: var(--charcoal);
  border-radius: var(--r-full);
}
.btn-ghost {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}
.btn-ghost:hover { border-bottom-color: var(--gold); gap: 14px; }
.btn-whatsapp-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #25D366;
  color: white;
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.btn-whatsapp-nav:hover { background: #1EBE5C; transform: translateY(-1px); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}
.nav.scrolled {
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(20,20,20,.08);
}
.nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 2px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.08em;
}
.nav.hero-mode .logo-text { color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  position: relative;
}
.nav.hero-mode .nav-link { color: rgba(255,255,255,0.85); }
.nav-link:hover, .nav-link.active { background: var(--stone-pale); color: var(--charcoal); }
.nav.hero-mode .nav-link:hover { background: rgba(255,255,255,.12); color: var(--white); }
.nav-chevron { width: 14px; height: 14px; transition: transform var(--t-fast); }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white-pure);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transition: all var(--t-base) var(--ease-out);
  border: 1px solid var(--sand-light);
}
.has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: background var(--t-fast);
}
.dropdown-item:hover { background: var(--stone-pale); }
.dropdown-item svg { width: 16px; height: 16px; color: var(--gold); }

.nav-actions {
  display: flex; align-items: center; gap: 12px;
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav.hero-mode .nav-phone { color: rgba(255,255,255,.8); }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease-out);
}
.nav.hero-mode .nav-hamburger span { background: white; }

.nav-mobile {
  display: none;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--white-pure);
  border-top: 1px solid var(--sand-light);
  padding: 24px 32px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px); opacity: 0;
  transition: all var(--t-base) var(--ease-out);
  pointer-events: none;
}
.nav-mobile.open { display: block; transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.nav-mobile a {
  display: block; padding: 12px 16px;
  font-size: 1rem; color: var(--charcoal);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.nav-mobile a:hover { background: var(--stone-pale); }
.nav-mobile-cta { display: flex; gap: 12px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20,20,20,0) 30%,
      rgba(20,20,20,0.72) 100%
    ),
    url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-in-out) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

/* Hero Search Glass Panel */
.hero-search {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  padding: 0 32px;
  max-width: 1360px; margin: 0 auto;
  left: 50%; transform: translateX(-50%);
}
.search-glass {
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid rgba(196,180,154,0.4);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 32px 36px;
  box-shadow: 0 -12px 60px rgba(20,20,20,.12);
}
.search-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
}
.search-tab {
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--r-full);
  color: var(--stone);
  transition: all var(--t-fast);
  cursor: pointer;
}
.search-tab.active {
  background: var(--charcoal);
  color: var(--white);
}
.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.search-field {
  display: flex; flex-direction: column; gap: 6px;
}
.search-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.search-field select,
.search-field input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--sand-light);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white-pure);
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
}
.search-field select:focus,
.search-field input:focus {
  border-color: var(--gold);
}
.search-btn {
  height: 48px;
  padding: 0 28px;
  background: var(--gold);
  color: white;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
}
.search-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.search-btn svg { width: 18px; height: 18px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 160px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  animation: scrollBob 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── PROPERTIES SECTION ──────────────────────────────────── */
.properties-section { background: var(--white); }
.properties-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* Property Cards Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.properties-grid .prop-card:first-child {
  grid-column: span 2;
}
.prop-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white-pure);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-light);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.properties-grid .prop-card:first-child .prop-card-img {
  aspect-ratio: 16/9;
}
.prop-card-img img {
  width: 100%; height: 100%;
  transition: transform var(--t-slow) var(--ease-out);
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }

.prop-badges {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.badge {
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}
.badge-gold      { background: rgba(184,150,62,.9); color: white; }
.badge-green     { background: rgba(45,74,62,.9); color: white; }
.badge-dark      { background: rgba(20,20,20,.75); color: white; }
.badge-verified  { background: rgba(255,255,255,.85); color: var(--charcoal); }

.prop-save {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.prop-save:hover { background: white; transform: scale(1.1); }
.prop-save svg { width: 16px; height: 16px; color: var(--charcoal); }

.prop-score {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(20,20,20,.75);
  backdrop-filter: blur(12px);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  display: flex; flex-direction: column; align-items: center;
}
.prop-score-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.prop-score-label { font-size: 0.6rem; color: rgba(255,255,255,.5); letter-spacing: 0.1em; }

.prop-card-body { padding: 20px 22px 22px; }
.prop-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
}
.prop-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--stone);
  margin-bottom: 16px;
}
.prop-location svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.prop-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.prop-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--stone);
}
.prop-meta-item svg { width: 13px; height: 13px; }
.prop-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--stone-pale);
}
.prop-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
}
.prop-status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.status-ready  { background: #E8F5E9; color: #2D7A2D; }
.status-uc     { background: #FFF8E1; color: #8A6A00; }

/* ── WHY 99BHK ───────────────────────────────────────────── */
.why-section { background: var(--stone-pale); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 6vw, 64px);
}
.why-card {
  background: var(--white-pure);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 1px solid var(--sand-light);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.why-card p { font-size: 0.92rem; line-height: 1.7; color: var(--stone); }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section { background: var(--white); overflow: hidden; }
.services-scroll {
  display: flex; gap: 24px;
  overflow-x: auto;
  padding: 8px 0 32px;
  scrollbar-width: none;
  cursor: grab;
}
.services-scroll::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 360px;
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--sand-light);
  background: var(--stone-pale);
  transition: all var(--t-slow) var(--ease-out);
}
.service-card:first-child { background: var(--charcoal); }
.service-card:nth-child(2) { background: var(--green); }
.service-card:nth-child(3) { background: var(--gold-pale); }
.service-card:nth-child(4) { background: linear-gradient(135deg, #f8f4f0, #ede5d8); }
.service-card:last-child { background: var(--charcoal-mid); }

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card-icon {
  position: absolute; top: 40px; right: 40px;
  width: 56px; height: 56px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.service-card:nth-child(3) .service-card-icon,
.service-card:nth-child(4) .service-card-icon {
  background: rgba(20,20,20,.08);
}
.service-card-icon svg { width: 24px; height: 24px; color: white; }
.service-card:nth-child(3) .service-card-icon svg,
.service-card:nth-child(4) .service-card-icon svg { color: var(--charcoal); }

.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.12;
  position: absolute; top: 24px; left: 32px;
  color: white;
}
.service-card:nth-child(3) .service-num,
.service-card:nth-child(4) .service-num { color: var(--charcoal); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-card:nth-child(3) h3,
.service-card:nth-child(4) h3 { color: var(--charcoal); }
.service-card p {
  font-size: 0.88rem; line-height: 1.68;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.service-card:nth-child(3) p,
.service-card:nth-child(4) p { color: var(--stone); }
.service-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 32px;
}
.service-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
}
.service-card:nth-child(3) .service-feature,
.service-card:nth-child(4) .service-feature { color: var(--stone); }
.service-feature::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── LIFESTYLE / EDITORIAL ───────────────────────────────── */
.lifestyle-section { background: var(--charcoal); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.lifestyle-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px;
}
.lifestyle-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.lifestyle-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(20,20,20,.82) 100%);
}
.lifestyle-panel:hover img { transform: scale(1.04); }
.lifestyle-content {
  position: relative; z-index: 1;
}
.lifestyle-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lifestyle-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
}
.lifestyle-desc { font-size: 0.9rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 380px; }

/* ── INVESTMENT CTA ──────────────────────────────────────── */
.invest-cta-section {
  background: var(--gold-pale);
  position: relative; overflow: hidden;
}
.invest-cta-section::before {
  content: '₹';
  position: absolute; right: -40px; top: -60px;
  font-family: var(--font-display);
  font-size: 400px;
  font-weight: 300;
  color: rgba(184,150,62,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.invest-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.invest-cta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.invest-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 20px;
}
.invest-cta-sub {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.invest-cta-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-track {
  display: flex; gap: 24px;
  overflow-x: auto; padding-bottom: 24px;
  scrollbar-width: none; cursor: grab;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 400px;
  background: var(--stone-pale);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  border: 1px solid var(--sand-light);
  transition: all var(--t-slow) var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white-pure); }
.testi-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
}
.testi-stars span { font-size: 1.1rem; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--charcoal);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-quote::before { content: '\201C'; font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sand-light);
}
.testi-name { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }
.testi-role { font-size: 0.78rem; color: var(--stone); margin-top: 2px; }
.testi-property {
  margin-top: 8px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── BLOG SECTION ────────────────────────────────────────── */
.blog-section { background: var(--stone-pale); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white-pure);
  border: 1px solid var(--sand-light);
  transition: all var(--t-slow) var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; transition: transform var(--t-slow); }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 28px 24px; }
.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.blog-excerpt { font-size: 0.85rem; color: var(--stone); line-height: 1.68; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-author-img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
.blog-author { font-size: 0.78rem; font-weight: 500; color: var(--charcoal); }
.blog-date { font-size: 0.75rem; color: var(--stone); }
.blog-read { font-size: 0.75rem; color: var(--stone); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto;
  text-align: center;
}
.newsletter-label { color: var(--gold); margin-bottom: 16px; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
}
.newsletter-sub { color: rgba(255,255,255,.45); font-size: 0.92rem; margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; height: 52px;
  padding: 0 20px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: white;
  outline: none;
  transition: border-color var(--t-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  height: 52px; padding: 0 28px;
  background: var(--gold);
  color: white;
  border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--t-base);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #0D0D0D; padding: 80px 0 0; }
.footer-top {
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { display: flex; align-items: baseline; gap: 2px; margin-bottom: 20px; display: inline-flex; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 220px;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all var(--t-fast);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

.footer-nav {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: white; }

.footer-contact { gap: 14px !important; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact span,
.footer-contact a { font-size: 0.82rem; color: rgba(255,255,255,.45); }

.footer-bottom {
  max-width: 1360px; margin: 0 auto;
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.25); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: all var(--t-base) var(--ease-out);
}
.whatsapp-float svg { width: 26px; height: 26px; color: white; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--charcoal);
  color: white;
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -6px;
  border: 2px solid rgba(37,211,102,.3);
  border-radius: 50%;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── MOBILE STICKY CTA ───────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white-pure);
  border-top: 1px solid var(--sand-light);
  padding: 10px 16px 10px;
  padding-bottom: env(safe-area-inset-bottom, 10px);
  gap: 8px;
}
.mobile-cta-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px;
  border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 500;
  background: var(--stone-pale);
  color: var(--charcoal);
  transition: all var(--t-fast);
  border: 1px solid var(--sand-light);
}
.mobile-cta-btn svg { width: 16px; height: 16px; }
.mobile-cta-wa  { background: #25D366; color: white; border-color: #25D366; }
.mobile-cta-primary { background: var(--charcoal); color: white; border-color: var(--charcoal); }

/* ── ANIMATIONS / REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-stone  { color: var(--stone); }
.italic      { font-style: italic; }
.separator {
  width: 48px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.separator.centered { margin: 20px auto; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid .prop-card:first-child { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-fields .search-btn { grid-column: span 2; width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 80px; }
}

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .hero-search { padding: 0 20px; }
  .search-glass { padding: 24px 20px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .search-fields { grid-template-columns: 1fr; }
  .search-fields .search-btn { grid-column: span 1; }
  .properties-grid { grid-template-columns: 1fr; }
  .properties-grid .prop-card:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .lifestyle-panel { padding: 28px 24px; min-height: 380px; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .invest-cta-section::before { display: none; }
  .service-card { flex: 0 0 300px; min-height: 380px; padding: 36px 28px; }
  .stat-item { padding: 20px 16px; }
  .hero-headline { font-size: clamp(2.6rem, 12vw, 5rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
