/* ============================================================
   SRN Ventures — Design System
   ============================================================ */

:root {
  --navy-950: #052e28;
  --navy-900: #0b4f45;
  --navy-800: #13695a;
  --navy-700: #1d8571;
  --gold-500: #c9a24b;
  --gold-600: #b38b34;
  --gold-100: #f6ecd6;
  --cream-50: #faf8f4;
  --cream-100: #f2ede2;
  --slate-900: #1c2530;
  --slate-700: #3d4a5c;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #eef1f5;
  --white: #ffffff;
  --success-600: #1f8a5f;

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(11, 79, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 79, 69, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 79, 69, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-950);
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--slate-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 40px 0; }

.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.75); }
.bg-cream { background: var(--cream-100); }
.bg-white { background: var(--white); }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.bg-navy .eyebrow { color: var(--gold-500); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-950); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 79, 69, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy-950); }
.brand-mark {
  width: 42px; height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a { font-weight: 500; font-size: 0.95rem; color: var(--slate-700); transition: color 0.15s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-950); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -20px; height: 2px; background: var(--gold-500);
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--navy-950); }
.header-phone svg { color: var(--gold-600); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-950); margin: 5px 0; transition: 0.2s; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed; inset: 72px 0 0 0; background: var(--cream-50);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 12px 24px; transform: translateX(100%); transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--slate-100); }
  .main-nav a.active::after { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: block; }
  .main-nav .btn { margin-top: 16px; width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,46,40,0.55) 0%, rgba(5,46,40,0.78) 55%, rgba(5,46,40,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-content .eyebrow { color: var(--gold-500); }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--gold-500); }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.page-hero {
  position: relative;
  padding: 180px 0 90px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,46,40,0.72), rgba(5,46,40,0.88));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin-top: 16px; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-500); }

/* ============================================================
   USP / FEATURE CARDS
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,69,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.usp-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--navy-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.usp-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.usp-card p { font-size: 0.93rem; }

/* Split panel (savings illustration) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media { position: relative; }
.split-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.split-badge strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--navy-950); }
.split-badge span { font-size: 0.78rem; color: var(--slate-500); }
.split-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; }
.split-list .check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-badge { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.filter-bar select, .filter-bar input {
  font-family: var(--font-body);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-300);
  background: var(--cream-50);
  font-size: 0.9rem;
  color: var(--slate-900);
  min-width: 160px;
}
.filter-bar input[type="text"] { flex: 1; min-width: 200px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,69,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-media { position: relative; height: 230px; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold-500); color: var(--navy-950);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.project-tag.ready { background: var(--success-600); color: var(--white); }
.project-price-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(5,46,40,0.85); color: var(--white); backdrop-filter: blur(4px);
  padding: 8px 14px; border-radius: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
}
.project-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-loc { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gold-600); font-weight: 600; margin-bottom: 8px; }
.project-body h3 { margin-bottom: 4px; }
.project-builder { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 16px; }
.project-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--slate-100); }
.project-meta div { display: flex; flex-direction: column; }
.project-meta span:first-child { font-size: 0.72rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.04em; }
.project-meta span:last-child { font-weight: 600; font-size: 0.9rem; color: var(--navy-950); }
.project-body .btn { margin-top: auto; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item strong { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--gold-500); }
.stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; counter-reset: step; }
.step { position: relative; padding-left: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-950); color: var(--gold-500);
  font-family: var(--font-head); font-weight: 700; margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(11,79,69,0.06);
}
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p.quote { font-style: italic; color: var(--slate-700); margin-bottom: 20px; font-size: 0.96rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--navy-950); }
.testimonial-person span { font-size: 0.78rem; color: var(--slate-500); }

/* ============================================================
   LOGOS STRIP (builder partners)
   ============================================================ */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.logo-pill {
  padding: 14px 28px; background: var(--white); border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; color: var(--slate-700);
  border: 1px solid var(--slate-300); font-size: 0.92rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-card.highlight-card { position: relative; border: 2px solid var(--gold-500); box-shadow: 0 0 0 8px rgba(201,162,75,0.14), var(--shadow-lg); }
.form-card.highlight-card .card-ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-950); font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; box-shadow: var(--shadow-md); white-space: nowrap;
}
@media (max-width: 480px) {
  .form-card.highlight-card .card-ribbon { font-size: 0.62rem; padding: 6px 12px; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate-700); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1px solid var(--slate-300);
  font-family: var(--font-body); font-size: 0.94rem; background: var(--cream-50); color: var(--slate-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--gold-500); outline-offset: 1px; }
.form-note { font-size: 0.78rem; color: var(--slate-500); margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .icon-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact svg { flex-shrink: 0; color: var(--gold-500); margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.rera-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); padding-bottom: 24px; line-height: 1.7; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOAT + BACK TO TOP
   ============================================================ */
.float-stack { position: fixed; right: 24px; bottom: 24px; z-index: 600; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; transition: transform 0.15s;
}
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25d366; color: var(--white); }
.fab-top { background: var(--white); color: var(--navy-950); width: 44px; height: 44px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.15s; border: 1px solid var(--slate-300); }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   MISC — badges, dividers, generic grids
   ============================================================ */
.badge { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em; }
.badge-gold { background: var(--gold-100); color: var(--gold-600); }
.badge-navy { background: var(--navy-950); color: var(--gold-500); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.gallery-grid a:first-child img { }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.amenity-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.amenity-item .usp-icon { margin-bottom: 0; width: 48px; height: 48px; }

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table tr td { padding: 16px 20px; border-bottom: 1px solid var(--slate-100); font-size: 0.92rem; }
.spec-table tr td:first-child { color: var(--slate-500); width: 40%; }
.spec-table tr td:last-child { font-weight: 600; color: var(--navy-950); }
.spec-table tr:last-child td { border-bottom: none; }

.faq-item { border-bottom: 1px solid var(--slate-100); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy-950); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-600); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 14px; font-size: 0.92rem; }

/* ============================================================
   RERA TRUST BADGES
   ============================================================ */
.project-meta-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.rera-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--navy-950); color: var(--gold-500);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 100px; white-space: nowrap;
}
.rera-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gold-100); border: 1px solid rgba(201,162,75,0.35);
  border-radius: var(--radius-md); padding: 18px 20px; margin-top: 20px;
}
.rera-callout svg { flex-shrink: 0; color: var(--gold-600); margin-top: 2px; }
.rera-callout strong { display: block; color: var(--navy-950); font-family: var(--font-head); font-size: 0.95rem; }
.rera-callout p { margin: 4px 0 0; font-size: 0.85rem; }
.rera-callout a { color: var(--navy-900); font-weight: 600; text-decoration: underline; }

/* ============================================================
   TABS (project detail)
   ============================================================ */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 2px solid var(--slate-100); margin-bottom: 32px; }
.tab-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  padding: 12px 18px; border: none; background: none; color: var(--slate-500);
  cursor: pointer; position: relative; top: 2px; border-bottom: 2px solid transparent; transition: color 0.15s;
}
.tab-btn:hover { color: var(--navy-900); }
.tab-btn.active { color: var(--navy-950); border-bottom-color: var(--gold-500); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFadeIn 0.25s ease; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 640px) { .tabs-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; } .tab-btn { white-space: nowrap; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transition: opacity 0.7s ease; }
[data-reveal].in-view { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transition: none; }
}

/* ============================================================
   SAVINGS CALCULATOR
   ============================================================ */
.calculator-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg); padding: 48px; color: var(--white);
  box-shadow: var(--shadow-lg);
}
.calculator-input label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.calculator-value { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold-500); margin-bottom: 18px; }
.calculator-input input[type="range"] {
  width: 100%; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.2);
  -webkit-appearance: none; appearance: none; cursor: pointer; outline: none;
}
.calculator-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid var(--white); box-shadow: var(--shadow-md); cursor: pointer;
}
.calculator-input input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); border: 3px solid var(--white); cursor: pointer;
}
.calculator-result { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.calc-result-item { background: rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.calc-result-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.calc-result-item strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); }
.calc-result-item.highlight { background: var(--gold-500); }
.calc-result-item.highlight span { color: rgba(5,46,40,0.7); }
.calc-result-item.highlight strong { color: var(--navy-950); }
.calc-disclaimer { text-align: center; font-size: 0.8rem; color: var(--slate-500); max-width: 560px; margin: 24px auto 0; }
@media (max-width: 560px) { .calculator-card { padding: 32px 24px; } .calculator-result { grid-template-columns: 1fr; } }

/* ============================================================
   DEAL-MATCHING QUIZ
   ============================================================ */
.quiz-card { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); }
.quiz-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.quiz-progress-dot { flex: 1; height: 4px; border-radius: 100px; background: var(--slate-100); transition: background 0.3s ease; }
.quiz-progress-dot.done { background: var(--gold-500); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: tabFadeIn 0.3s ease; }
.quiz-step h3 { margin-bottom: 24px; }
.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.quiz-option {
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 600; text-align: left;
  padding: 16px 18px; border-radius: var(--radius-sm); border: 2px solid var(--slate-100);
  background: var(--cream-50); color: var(--slate-900); cursor: pointer; transition: all 0.15s ease;
}
.quiz-option:hover { border-color: var(--gold-500); }
.quiz-option.selected { border-color: var(--gold-500); background: var(--gold-100); color: var(--navy-950); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; min-height: 20px; }
.quiz-back-btn { background: none; border: none; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--slate-500); cursor: pointer; padding: 6px 0; }
.quiz-back-btn:hover { color: var(--navy-900); }
.quiz-back-btn[hidden] { visibility: hidden; }
.quiz-step-count { font-size: 0.8rem; color: var(--slate-500); }

/* ============================================================
   URGENCY / SOCIAL PROOF
   ============================================================ */
.urgency-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 600; color: var(--gold-600);
  margin-bottom: 14px;
}
.urgency-tag .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #e0574c; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(224,87,76,0.6); animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(224,87,76,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(224,87,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,87,76,0); }
}

/* ============================================================
   INVENTORY VELOCITY CHART (for-builders.html)
   ============================================================ */
.velocity-chart { display: flex; align-items: flex-end; gap: 32px; padding: 12px 4px 0; overflow-x: auto; }
.velocity-group { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.velocity-bars { display: flex; align-items: flex-end; gap: 8px; height: 200px; }
.velocity-bar-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; width: 38px; }
.velocity-bar { width: 100%; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--slate-300), var(--slate-500)); height: 0%; transition: height 1.1s cubic-bezier(0.22,1,0.36,1); }
.velocity-bar-col.is-partner .velocity-bar { background: linear-gradient(180deg, var(--gold-500), var(--gold-600)); }
.velocity-bar-value { font-family: var(--font-head); font-weight: 700; font-size: 0.76rem; color: var(--navy-950); margin-bottom: 6px; }
.velocity-group-label { font-size: 0.8rem; color: var(--slate-500); font-weight: 600; text-align: center; }
.velocity-legend { display: flex; justify-content: center; gap: 28px; margin-top: 24px; font-size: 0.88rem; flex-wrap: wrap; }
.velocity-legend-item { display: flex; align-items: center; gap: 8px; color: var(--slate-700); }
.velocity-legend-swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }

/* ============================================================
   TRUST / WIN-WIN BANNER
   ============================================================ */
.trust-banner {
  display: flex; align-items: center; gap: 24px;
  background: var(--gold-100); border: 1px solid rgba(201,162,75,0.35);
  border-radius: var(--radius-lg); padding: 30px 36px;
}
.trust-banner-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}
.trust-banner h3 { margin-bottom: 6px; }
.trust-banner p { margin: 0; font-size: 0.95rem; }
@media (max-width: 640px) { .trust-banner { flex-direction: column; text-align: center; padding: 28px; } }

.trust-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gold-100); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 0.85rem; font-weight: 600; color: var(--navy-950); margin-bottom: 20px;
}
.trust-note svg { flex-shrink: 0; color: var(--gold-600); margin-top: 2px; }

/* ============================================================
   SAVE / SHORTLIST
   ============================================================ */
.save-heart {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(5,46,40,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; transition: transform 0.15s ease, background 0.15s ease;
  border: none; padding: 0;
}
.save-heart:hover { transform: scale(1.1); }
.save-heart.saved { background: #e0574c; }
.save-heart.saved svg { fill: currentColor; }

.saved-counter-fab {
  position: relative; background: var(--white); color: var(--navy-950);
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; border: 1px solid var(--slate-300); transition: transform 0.15s;
}
.saved-counter-fab:hover { transform: scale(1.08); }
.saved-counter-fab .count-badge {
  position: absolute; top: -4px; right: -4px; background: #e0574c; color: var(--white);
  font-size: 0.68rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.saved-counter-fab[hidden] { display: none; }
.fab-callback { background: var(--navy-950); color: var(--gold-500); }

/* ============================================================
   GENERIC OVERLAY / MODAL (save list, compare, exit-intent, callback)
   ============================================================ */
.srn-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,46,40,0.75); align-items: center; justify-content: center; padding: 24px;
}
.srn-overlay.show { display: flex; }
.srn-modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow-lg);
}
.srn-modal-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-100); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--slate-700); font-size: 1.2rem; line-height: 1;
}
.srn-modal-close:hover { background: var(--slate-100); }

.saved-list-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--slate-100); }
.saved-list-item img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.saved-list-item-body { flex: 1; }
.saved-list-item-body strong { display: block; font-size: 0.95rem; color: var(--navy-950); }
.saved-list-item-body span { font-size: 0.8rem; color: var(--slate-500); }
.saved-list-remove { background: none; border: none; color: var(--slate-500); cursor: pointer; font-size: 0.8rem; text-decoration: underline; }
.saved-empty { text-align: center; padding: 30px 0; color: var(--slate-500); }

/* ============================================================
   COMPARE
   ============================================================ */
.compare-toggle {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--slate-700); cursor: pointer; user-select: none;
}
.compare-toggle input { width: 16px; height: 16px; accent-color: var(--gold-500); cursor: pointer; }
.compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: var(--navy-950); color: var(--white);
  padding: 16px 24px; display: none; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2); flex-wrap: wrap;
}
.compare-bar.show { display: flex; }
.compare-bar-items { display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.88rem; }
.compare-bar-chip { background: rgba(255,255,255,0.12); padding: 6px 12px; border-radius: 100px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--slate-100); font-size: 0.85rem; text-align: left; vertical-align: top; }
.compare-table th { color: var(--slate-500); font-weight: 600; width: 26%; }
.compare-table td strong { display: block; color: var(--navy-950); margin-bottom: 4px; }
.compare-table img { width: 100%; height: 90px; object-fit: cover; border-radius: var(--radius-sm); }

/* ============================================================
   RECENTLY VIEWED
   ============================================================ */
.recent-strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.recent-card { flex-shrink: 0; width: 220px; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,79,69,0.06); }
.recent-card img { width: 100%; height: 110px; object-fit: cover; }
.recent-card-body { padding: 14px; }
.recent-card-body strong { display: block; font-size: 0.9rem; color: var(--navy-950); }
.recent-card-body span { font-size: 0.78rem; color: var(--slate-500); }

/* ============================================================
   COUNTDOWN / UNITS-LEFT BADGE
   ============================================================ */
.countdown-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92); color: var(--navy-950);
  padding: 6px 12px; border-radius: 8px; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.countdown-badge svg { color: #e0574c; flex-shrink: 0; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-action-bar { display: none; }
@media (max-width: 720px) {
  .mobile-action-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
    background: var(--white); border-top: 1px solid var(--slate-100); box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .mobile-action-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 0 12px; font-size: 0.68rem; font-weight: 600; color: var(--slate-700);
  }
  .mobile-action-bar .primary { color: var(--navy-950); background: var(--gold-100); }
  body { padding-bottom: 62px; }
  .float-stack { bottom: 78px; }
  .compare-bar { bottom: 62px; }
}

/* ============================================================
   PRICE REVEAL CTA
   ============================================================ */
.price-reveal-btn {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  background: var(--gold-500); color: var(--navy-950); border: none;
  padding: 9px 16px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s;
}
.price-reveal-btn:hover { background: var(--gold-600); }
.form-card.pulse { animation: pulseCard 1.2s ease 2; }
@keyframes pulseCard { 0%, 100% { box-shadow: var(--shadow-lg); } 50% { box-shadow: 0 0 0 10px rgba(201,162,75,0.25), var(--shadow-lg); } }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 100px 40px 1fr; gap: 4px; padding-bottom: 36px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date { font-weight: 700; color: var(--gold-600); font-family: var(--font-head); font-size: 0.9rem; }
.timeline-dot-col { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--navy-950); border: 3px solid var(--gold-100); }
.timeline-line { flex: 1; width: 2px; background: var(--slate-300); margin-top: 4px; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content h4 { margin-bottom: 6px; font-size: 1rem; }
.timeline-content p { font-size: 0.9rem; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 0; width: 100%; height: 380px; }

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

@media (max-width: 860px) {
  .usp-grid, .steps, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .usp-grid, .steps, .amenity-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .form-card { padding: 24px; }
}
