/* =========================================
   TVS SATHANUR — LUXURY MICROSITE
   Fully Mobile-Responsive Version
   ========================================= */

:root {
  --sage: #4a7c59;
  --sage-light: #6a9e78;
  --sage-dark: #2d5c3f;
  --sage-pale: #e8f2ec;
  --copper: #b87333;
  --copper-light: #d4924a;
  --ivory: #f8f5ef;
  --ivory-dark: #eee9de;
  --warm-white: #fdfaf5;
  --charcoal: #1c1c1c;
  --text-body: #4a4a4a;
  --text-muted: #7a7a7a;
  --border-light: rgba(74, 124, 89, 0.15);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300; letter-spacing: 0.3em; line-height: 1.3; margin-bottom: 2rem;
}
.pre-logo span { display: block; font-size: 0.55em; letter-spacing: 0.5em; color: var(--copper); font-style: italic; }
.pre-bar { width: 180px; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto; overflow: hidden; }
.pre-fill { height: 100%; background: linear-gradient(90deg, var(--sage-light), var(--copper)); width: 0%; animation: preLoad 2s ease forwards; }
@keyframes preLoad { to { width: 100%; } }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-enquire {
  position: fixed; bottom: 24px; right: 20px; z-index: 500;
  background: var(--sage); color: white;
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(74,124,89,0.4); transition: var(--transition); display: none; border: none;
}
.float-enquire:hover { background: var(--sage-dark); transform: translateY(-2px); }

.float-wa {
  position: fixed; bottom: 24px; left: 20px; z-index: 500;
  width: 50px; height: 50px; background: #25d366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35); transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0; transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 0; box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1320px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-brand { flex-shrink: 0; display: flex; align-items: center; }
.brand-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: white;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.brand-logo span { color: var(--copper-light); font-style: italic; }

.nav-links {
  display: flex; align-items: center; gap: 24px; flex: 1; justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,0.75); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--copper-light); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: white; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--sage); color: white !important; font-size: 0.78rem; letter-spacing: 0.06em;
  padding: 9px 18px; border-radius: 100px; transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--copper); }
.broker-logo {
  height: 18px;   
  width: auto;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;   /* 🔥 MOST IMPORTANT */
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  flex-shrink: 0; cursor: pointer; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; height: 100svh; min-height: 580px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,28,28,0.78) 0%, rgba(28,28,28,0.45) 50%, rgba(45,92,63,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; max-width: 800px; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px;
}
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--copper-light); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300; color: white; line-height: 1.1; margin-bottom: 20px;
}
.hero-headline em { font-style: italic; color: var(--copper-light); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: clamp(0.88rem, 2vw, 1.05rem); font-weight: 300; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HERO STATS ── */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  flex-wrap: wrap;
}
.hero-stats::-webkit-scrollbar { display: none; }
.hstat { display: flex; flex-direction: column; align-items: center; padding: 18px 28px; text-align: center; flex-shrink: 0; }
.hstat-num { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 400; color: white; line-height: 1; }
.hstat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; white-space: nowrap; }
.hstat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute; right: 28px; bottom: 90px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-cta {
  display: inline-block; background: var(--sage); color: white;
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 100px; border: none; transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary-cta:hover { background: var(--copper); color: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,115,51,0.35); }

.btn-ghost-cta {
  display: inline-block; background: transparent; color: white;
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.5); transition: var(--transition); white-space: nowrap;
}
.btn-ghost-cta:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; transform: translateY(-2px); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { background: var(--sage-dark); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; animation: tickerMove 35s linear infinite; }
.ticker-track span { color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 22px; }
.ticker-sep { color: var(--copper-light) !important; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-overview,
.section-why,
.section-amenities,
.section-gallery,
.section-pricing,
.section-floorplan,
.section-location,
.section-specs,
.section-about,
.section-contact { padding: clamp(50px, 8vw, 110px) 0; }

.section-overview  { background: var(--warm-white); }
.section-why       { background: var(--charcoal); }
.section-amenities { background: var(--ivory); }
.section-gallery   { background: var(--warm-white); }
.section-pricing   { background: var(--charcoal); }
.section-floorplan { background: var(--ivory); }
.section-location  { background: var(--warm-white); }
.section-specs     { background: var(--sage-dark); }
.section-about     { background: var(--ivory); }
.section-contact   { background: var(--charcoal); }

.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 20px; width: 100%; }

.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); font-weight: 500; margin-bottom: 10px; display: block; }
.section-eyebrow.center { text-align: center; }
.section-headline { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300; color: var(--charcoal); line-height: 1.15; margin-bottom: 18px; }
.section-headline em { font-style: italic; color: var(--sage); }
.section-headline.center { text-align: center; }

.section-why .section-headline,
.section-pricing .section-headline,
.section-contact .section-headline,
.section-specs .section-headline { color: white; }
.section-why .section-headline em { color: var(--copper-light); }
.section-pricing .section-headline em { color: var(--copper-light); }
.section-contact .section-headline em { color: var(--copper-light); }
.section-specs .section-headline em { color: var(--copper-light); }
.section-why .section-eyebrow,
.section-pricing .section-eyebrow,
.section-contact .section-eyebrow,
.section-specs .section-eyebrow { color: var(--copper-light); }

.section-body { color: var(--text-body); font-size: 0.97rem; font-weight: 300; line-height: 1.8; margin-bottom: 24px; max-width: 540px; }
.section-sub { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; max-width: 560px; margin: 8px auto 0; display: block; text-align: center; }
.section-why .section-sub, .section-pricing .section-sub, .section-contact .section-sub { color: rgba(255,255,255,0.5); }

/* ============================================================
   OVERVIEW
   ============================================================ */
.overview-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.ofact { padding: 14px 16px; background: var(--sage-pale); border-left: 3px solid var(--sage); border-radius: var(--radius); }
.ofact-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ofact-val { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.overview-img-wrap { position: relative; padding: 24px 0 24px 24px; }
.ov-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.ov-img-accent { position: absolute; bottom: -10px; left: 0; width: 170px; height: 210px; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid white; box-shadow: var(--shadow-md); }
.ov-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.ov-badge { position: absolute; top: 0; right: 0; width: 96px; height: 96px; background: var(--sage); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; }
.ob-year { font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.ob-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; line-height: 1; }
.ob-label { font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ============================================================
   WHY INVEST
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--sage), var(--copper)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-card:hover::before { transform: scaleX(1); }
.wc-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(255,255,255,0.06); line-height: 1; position: absolute; top: 14px; right: 18px; }
.wc-icon { width: 48px; height: 48px; background: rgba(74,124,89,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--sage-light); margin-bottom: 18px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: white; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.52); font-size: 0.86rem; line-height: 1.7; }
.why-cta-card { background: linear-gradient(135deg, var(--sage-dark), var(--sage)); padding: 36px 28px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; }
.why-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.amenity-card { border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: var(--shadow-sm); transition: var(--transition); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-card.large { grid-column: span 2; }
.am-img-wrap { overflow: hidden; height: 200px; }
.amenity-card.large .am-img-wrap { height: 250px; }
.am-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.amenity-card:hover .am-img-wrap img { transform: scale(1.05); }
.am-info { padding: 18px; }
.am-tag { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 5px; }
.am-info h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 5px; }
.am-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.gf-btn { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 9px 20px; border-radius: 100px; border: 1px solid var(--border-light); background: transparent; transition: var(--transition); cursor: pointer; }
.gf-btn.active, .gf-btn:hover { background: var(--sage); color: white; border-color: var(--sage); }
.gallery-masonry { display: grid; grid-template-columns: repeat(5, 1fr); grid-auto-rows: 200px; gap: 10px; grid-auto-flow: dense; }
.gm-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; min-height: 180px; }
.gm-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gm-item:nth-child(5) { grid-column: span 2; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gm-hover { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,0.6), transparent); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 18px; }
.gm-hover span { color: white; font-family: var(--font-display); font-size: 1.05rem; font-style: italic; }
.gm-item:hover img { transform: scale(1.06); }
.gm-item:hover .gm-hover { opacity: 1; }
.gm-item.hidden { display: none; }

/* ============================================================
   PRICING
   ============================================================ */
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.price-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: linear-gradient(135deg, rgba(74,124,89,0.2), rgba(74,124,89,0.1)); border-color: var(--sage); }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--copper); color: white; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.pc-type { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 7px; }
.pc-config { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: white; line-height: 1; margin-bottom: 5px; }
.pc-area { font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-bottom: 20px; }
.pc-features { list-style: none; flex: 1; margin-bottom: 20px; }
.pc-features li { font-size: 0.83rem; color: rgba(255,255,255,0.62); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.pc-features li::before { content: '✓'; color: var(--sage-light); font-size: 0.72rem; flex-shrink: 0; }
.pc-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: white; margin-bottom: 18px; }
.btn-price-cta { display: block; width: 100%; background: transparent; color: var(--sage-light); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 22px; border-radius: 100px; border: 1px solid var(--sage); transition: var(--transition); cursor: pointer; }
.btn-price-cta:hover { background: var(--sage); color: white; }
.price-card.featured .btn-price-cta { background: var(--sage); color: white; }
.price-card.featured .btn-price-cta:hover { background: var(--copper); border-color: var(--copper); }

/* ============================================================
   FLOOR PLANS
   ============================================================ */
.fp-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; border-bottom: 1px solid var(--border-light); padding-bottom: 0; }
.fp-tab { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--text-muted); padding: 11px 22px; border-radius: 8px 8px 0 0; border: 1px solid transparent; border-bottom: none; transition: var(--transition); background: transparent; cursor: pointer; position: relative; bottom: -1px; }
.fp-tab.active { color: var(--sage); background: var(--ivory); border-color: var(--border-light); }
.fp-tab:hover:not(.active) { color: var(--sage); }
.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fp-img-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--ivory-dark); }
.fp-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.fp-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.fp-desc { color: var(--text-body); font-size: 0.9rem; font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
.fp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; }
.fp-spec { padding: 13px 16px; border-bottom: 1px solid var(--border-light); border-right: 1px solid var(--border-light); }
.fp-spec:nth-child(even) { border-right: none; }
.fp-spec:nth-last-child(-n+2) { border-bottom: none; }
.fp-spec span { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.fp-spec strong { font-size: 0.88rem; font-weight: 500; color: var(--charcoal); }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-distances { display: flex; flex-direction: column; margin-top: 24px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.loc-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--border-light); transition: background 0.2s; }
.loc-item:last-child { border-bottom: none; }
.loc-item:hover { background: var(--sage-pale); }
.loc-icon { font-size: 1.2rem; width: 34px; text-align: center; flex-shrink: 0; }
.loc-info { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.loc-name { font-size: 0.86rem; color: var(--charcoal); flex: 1; min-width: 0; }
.loc-time { font-size: 0.75rem; font-weight: 500; color: var(--sage); background: var(--sage-pale); padding: 4px 11px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.loc-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ============================================================
   SPECIFICATIONS
   ============================================================ */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.spec-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); overflow: hidden; transition: var(--transition); }
.spec-card:hover { background: rgba(255,255,255,0.08); }
.spec-img { height: 180px; overflow: hidden;  border-radius: 12px;}
.spec-img img { width: 100%; height: 100%; object-fit: cover;border-radius: 12px; transition: transform 0.5s ease; filter: brightness(0.7) saturate(0.5); }
.spec-card:hover .spec-img img { transform: scale(1.05); filter: brightness(0.8) saturate(0.7); }
.spec-body { padding: 22px; }
.spec-num { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--copper-light); margin-bottom: 8px; }
.spec-body h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: white; margin-bottom: 8px; }
.spec-body p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.spec-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.spec-img {
  height: 100%;
}

.spec-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.spec-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.spec-body h4 {
  margin-bottom: 6px;
}

.spec-body p {
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge-group { position: absolute; bottom: -18px; right: -18px; }
.ab-badge { background: var(--sage); color: white; padding: 18px 22px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); }
.ab-badge span { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.ab-badge small { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; margin-top: 3px; display: block; }
.about-list { list-style: none; margin: 0 0 24px; }
.about-list li { font-size: 0.86rem; color: var(--text-body); padding: 8px 0 8px 20px; border-bottom: 1px solid var(--border-light); position: relative; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-size: 0.78rem; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.as-stat { text-align: center; padding: 14px; background: var(--sage-pale); border-radius: var(--radius); }
.as-stat span { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--sage-dark); line-height: 1; }
.as-stat small { display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-divider { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.contact-divider::before, .contact-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.contact-divider span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); white-space: nowrap; }
.contact-form { max-width: 580px; margin: 0 auto; width: 100%; }

.cf-input { display: block; width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: white; font-family: var(--font-body); font-size: 0.86rem; padding: 13px 16px; border-radius: var(--radius); outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.cf-input::placeholder { color: rgba(255,255,255,0.28); }
.cf-input:focus { border-color: var(--sage-light); }
.cf-input option { background: var(--charcoal); color: white; }
.cf-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.cf-check input[type="checkbox"] { width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; accent-color: var(--sage); }
.cf-check span { font-size: 0.76rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
.cf-check a { color: var(--sage-light); }
.cf-secure { text-align: center; margin-top: 14px; font-size: 0.72rem; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #111111; padding: 70px 0 0; }
.footer-top { padding-bottom: 50px; }
.footer-brand { font-family: var(--font-display); font-size: 1.7rem; font-weight: 300; color: white; margin-bottom: 14px; }
.footer-brand em { font-style: italic; color: var(--copper-light); }
.footer-about { font-size: 0.83rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 18px; }
.footer-rera { font-size: 0.7rem; color: rgba(255,255,255,0.28); line-height: 1.7; }
.footer-heading { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: #c9a14a; font-weight: 600; margin-bottom: 18px; display: block; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a, .footer-contact span { font-size: 0.86rem; color: rgba(255,255,255,0.48); }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom div { font-size: 0.73rem; color: rgba(255,255,255,0.28); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 800; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%); z-index: 900; width: min(480px, 94vw); background: var(--charcoal); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 44px 36px 36px; opacity: 0; visibility: hidden; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, visibility 0.3s; max-height: 92vh; overflow-y: auto; }
.modal-box.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.modal-close { position: absolute; top: 14px; right: 14px; color: rgba(255,255,255,0.4); font-size: 1rem; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer; background: none; border: none; }
.modal-close:hover { background: rgba(255,255,255,0.08); color: white; }
.modal-header { margin-bottom: 24px; }
.modal-box h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: white; margin-bottom: 6px; }
.modal-box p { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.6; }
.modal-form-fields { display: flex; flex-direction: column; gap: 13px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-success { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 1000; background: var(--sage); color: white; padding: 13px 26px; border-radius: 100px; font-size: 0.83rem; letter-spacing: 0.04em; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap; max-width: 90vw; text-align: center; }
.toast-success.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card.large { grid-column: span 1; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
  .ov-img-main { height: 380px; }
  .overview-img-wrap { padding: 0; }
  .ov-img-accent, .ov-badge { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll-hint { display: none; }
  .fp-tab { font-size: 0.74rem; padding: 10px 14px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 0.75rem; }

}

/* ============================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,20,20,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 150;
    padding: 0 24px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.05rem; letter-spacing: 0.12em; }
  .call-text { display: none; }
  .nav-cta { width: 36px; height: 36px; font-size: 14px;border-radius: 50%; padding: 0; justify-content: center; }
  .broker-logo {height: 18px;}
  .nav-right {gap: 8px; }


  /* Hero */
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: 0.86rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary-cta, .btn-ghost-cta { width: 100%; max-width: 280px; text-align: center; }

  /* Hero Stats */
  .hero-stats { justify-content: flex-start; flex-wrap: nowrap; }
  .hstat { padding: 14px 18px; }
  .hstat-divider { display: none; }
  .hstat-num { font-size: 1.3rem; }
  .hstat-label { font-size: 0.6rem; }

  /* Overview */
  .overview-facts { grid-template-columns: 1fr; }
  .ov-img-main { height: 260px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-cta-card { grid-column: 1; }
  .why-card { padding: 28px 22px; }

  /* Amenities */
  .amenity-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .amenity-card.large { grid-column: span 1 !important; }
  .am-img-wrap { height: 150px; }
  .amenity-card.large .am-img-wrap { height: 150px; }

  /* Gallery */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 150px; }
  .gm-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gm-item:nth-child(5) { grid-column: span 1; }

  /* Pricing */
  .price-card { padding: 28px 20px; }

  /* Floor Plans */
  .fp-tabs { flex-direction: column; border-bottom: none; gap: 4px; }
  .fp-tab { border-radius: var(--radius); border: 1px solid var(--border-light) !important; bottom: 0; text-align: center; padding: 12px 16px; }
  .fp-tab.active { border-color: var(--sage) !important; }
  .fp-img-wrap img { height: 200px !important; }
  .fp-specs { grid-template-columns: 1fr; }
  .fp-spec { border-right: none !important; }
  .fp-spec:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light) !important; }
  .fp-spec:last-child { border-bottom: none !important; }

  /* Location */
  .loc-name { font-size: 0.82rem; }
  .loc-time { font-size: 0.7rem; padding: 3px 9px; }

  /* Specs */
  .specs-grid { grid-template-columns: 1fr !important; }
  .spec-img {
    height: 160px;
  }


  /* About */
  .about-img-wrap img { height: 260px; }
  .about-badge-group { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-form { max-width: 100%; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-top .row > div { margin-bottom: 8px; }

  /* Floats */
  .float-enquire { right: 14px; bottom: 18px; padding: 11px 18px; font-size: 0.72rem; }
  .float-wa { left: 14px; bottom: 18px; width: 46px; height: 46px; }

  /* Modal */
  .modal-box { padding: 32px 18px 26px; }
  .modal-box h3 { font-size: 1.6rem; }
}

/* ============================================================
   RESPONSIVE — 480px (Small Mobile)
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem !important; }
  .hero-tag { font-size: 0.62rem; letter-spacing: 0.12em; }
  .hero-sub { font-size: 0.83rem; }
  .hstat { padding: 12px 14px; }
  .hstat-num { font-size: 1.1rem; }
  .section-headline { font-size: 1.65rem !important; }
  .amenity-grid { grid-template-columns: 1fr !important; }
  .amenity-card.large { grid-column: span 1 !important; }
  .gallery-masonry { grid-template-columns: 1fr !important; grid-auto-rows: 190px; }
  .gm-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-facts { grid-template-columns: 1fr; }
  .why-card { padding: 24px 18px; }
  .footer-top .row > div { text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact { align-items: center; }
  .modal-box { padding: 28px 14px 22px; }
  .btn-primary-cta, .btn-ghost-cta { max-width: 100%; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { background: var(--charcoal); padding: 150px 0 70px; text-align: center; }
.legal-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: white; margin-bottom: 10px; }
.legal-hero h1 em { font-style: italic; color: var(--copper-light); }
.legal-hero p { font-size: 0.83rem; color: rgba(255,255,255,0.38); }
.legal-body { padding: 70px 0; }
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--sage-dark); margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.88rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 18px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.88rem; color: var(--text-body); line-height: 1.8; margin-bottom: 5px; }