/* ================================================================
   EASTERN BAY — MAIN STYLESHEET
   SAI ELITE | Vikhroli, Mumbai
   File: css/style.css
   Excludes: navbar (components/navbar.css) & footer (components/footer.css)

   INDEX
   1.  CSS Variables
   2.  Reset & Base
   3.  Typography Utilities
   4.  Buttons
   5.  Reveal Animations
   6.  Scrollbar
   7.  Global Responsive
   ── PAGE SECTIONS ──
   8.  Hero (index.html)
   9.  Intro Strip (index.html)
   10. About Section (index.html)
   11. Overview Strip (index.html)
   12. Configurations (index.html)
   13. CTA Band (index.html)
   14. Page Hero (all inner pages)
   15. Overview Page
   16. Amenities Page
   17. Floor Plans Page
   18. Location Page
   ── GLOBAL UI ──
   19. Popup / Enquiry Form
   20. Sticky Bar (mobile)
   21. WhatsApp Float
   22. Page-specific Responsive
================================================================ */


/* ================================================================
   1. CSS VARIABLES
================================================================ */

:root {

  /* Palette — Light Theme */
  --black:      #FFFFFF;
  --dark:       #FAF8F5;
  --dark-2:     #F2EDE6;
  --dark-3:     #E8E0D6;
  --mid:        #C8BFB5;
  --border:     rgba(138, 52, 37, 0.12);
  --white:      #1A1008;
  --off-white:  #2C1A0A;
  --muted:      rgba(44, 26, 10, 0.5);

  /* Brand — Sai Elite Orange */
  --gold:       #E0762C;
  --gold-light: #F0A060;
  --gold-dark:  #8A3425;
  --gold-rgb:   224, 118, 44;

  /* Typography */
  --font-serif: 'New York', 'Iowan Old Style', 'Apple Garamond', 'Baskerville', Georgia, serif;
  --font-sans:  -apple-system, 'SF Pro Display', 'SF Pro Text', BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-w:  1280px;
  --pad-x:  80px;
  --nav-h:  80px;

}


/* ================================================================
   2. RESET & BASE
================================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* ================================================================
   3. TYPOGRAPHY UTILITIES
================================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); }


/* ================================================================
   4. BUTTONS
================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(26, 16, 8, 0.3);
}
.btn-outline-white:hover {
  background: rgba(26, 16, 8, 0.05);
  border-color: rgba(26, 16, 8, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #FFFFFF;
}

.btn-dark {
  background: #1A1008;
  color: #FAF8F5;
  border: none;
}
.btn-dark:hover { background: #2C1A0A; }


/* ================================================================
   5. REVEAL ANIMATIONS
================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ================================================================
   6. SCROLLBAR
================================================================ */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }


/* ================================================================
   7. GLOBAL RESPONSIVE
================================================================ */

@media (max-width: 1024px) { :root { --pad-x: 48px; } }
@media (max-width: 640px)  { :root { --pad-x: 24px; --nav-h: 64px; } }


/* ================================================================
   8. HERO — index.html
================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 40%, rgba(224,118,44,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(138,52,37,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #F0EBE3 0%, #FAF8F5 100%);
}

.hero-grid {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; z-index: 0; overflow: hidden;
}
.hero-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(224,118,44,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,118,44,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 80% 50%, black 30%, transparent 80%);
}
.hero-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,248,245,0.3) 0%, transparent 40%, rgba(250,248,245,0.1) 100%);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(170deg, rgba(10,5,0,0) 30%, rgba(10,5,0,0.06) 70%, rgba(10,5,0,0) 100%),
    linear-gradient(90deg, rgba(10,5,0,0.08) 0%, transparent 55%);
}

.hero-building {
  position: absolute; right: 4%; bottom: 0; z-index: 1;
  width: 44%; max-width: 560px;
  opacity: 0.18;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) 100px;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400; line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); display: block; }

.hero-desc {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  font-weight: 300; max-width: 460px; margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; right: var(--pad-x); bottom: 100px;
  z-index: 2; display: flex; flex-direction: column;
  gap: 32px; align-items: flex-end;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 44px; font-weight: 400; color: var(--gold);
  line-height: 1; text-align: right;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(44,26,10,0.55); text-align: right; margin-top: 4px;
}
.hero-stat-divider { width: 40px; height: 1px; background: var(--border); margin-left: auto; }


/* ================================================================
   9. INTRO STRIP — index.html
================================================================ */

.intro-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.intro-strip .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 16px; }
.strip-num { font-family: var(--font-serif); font-size: 28px; color: var(--gold); font-weight: 400; }
.strip-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.strip-divider { width: 1px; height: 40px; background: var(--border); }


/* ================================================================
   10. ABOUT SECTION — index.html
================================================================ */

.about-section { padding: 120px 0; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--dark-2); border: 1px solid var(--border); overflow: hidden;
}
.about-visual-inner {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(224,118,44,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #EDE7DD 0%, #E0D8CC 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-text { text-align: center; }
.about-visual-text .big-num {
  font-family: var(--font-serif); font-size: 120px;
  font-weight: 400; color: rgba(224,118,44,0.12); line-height: 1;
}
.about-visual-text p {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: -20px;
}

.about-corner-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--gold); padding: 20px 24px; text-align: center;
}
.about-corner-badge .badge-num {
  font-family: var(--font-serif); font-size: 32px; color: #FFFFFF; line-height: 1;
}
.about-corner-badge .badge-label {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 4px;
}

.about-text .section-body { margin: 20px 0 36px; }

.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.feature-item { padding: 20px 0; border-top: 1px solid var(--border); }
.feature-item h4 { font-size: 13px; color: var(--white); margin-bottom: 6px; font-weight: 500; }
.feature-item p { font-size: 12px; color: var(--muted); line-height: 1.5; }


/* ================================================================
   11. OVERVIEW STRIP — index.html
================================================================ */

.overview-strip {
  padding: 100px 0; background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.overview-strip .container {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.overview-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.ov-card {
  background: var(--dark-3); padding: 36px 28px;
  transition: background 0.3s; border-top: 2px solid transparent;
}
.ov-card:hover { background: rgba(224,118,44,0.06); border-top-color: var(--gold); }
.ov-icon {
  width: 40px; height: 40px; margin-bottom: 18px;
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(224,118,44,0.25);
}
.ov-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.ov-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }


/* ================================================================
   12. CONFIGURATIONS — index.html
================================================================ */

.configs-section { padding: 120px 0; }
.configs-header { margin-bottom: 64px; }
.configs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.config-card {
  background: var(--dark-2); padding: 48px 40px;
  border: 1px solid var(--border); position: relative;
  overflow: hidden; transition: border-color 0.3s;
}
.config-card:hover { border-color: rgba(224,118,44,0.4); }
.config-card.featured {
  background: linear-gradient(160deg, #2C1A0A 0%, #1A1008 100%);
  border-color: rgba(224,118,44,0.3);
}

.config-badge {
  display: inline-block; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(224,118,44,0.3); padding: 5px 12px; margin-bottom: 20px;
}
.config-type {
  font-family: var(--font-serif); font-size: 52px;
  font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.config-area { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.config-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.config-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(44,26,10,0.65);
}
.config-card.featured .config-features li { color: rgba(255,255,255,0.6); }
.config-features li::before { content: '—'; color: var(--gold); font-size: 10px; }

.config-ghost {
  position: absolute; bottom: -10px; right: -10px;
  font-family: var(--font-serif); font-size: 100px; font-weight: 700;
  color: rgba(44,26,10,0.06); line-height: 1; pointer-events: none;
}
.config-card.featured .config-ghost { color: rgba(255,255,255,0.04); }

.config-cta {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; transition: gap 0.25s;
}
.config-cta:hover { gap: 14px; }


/* ================================================================
   13. CTA BAND — index.html
================================================================ */

.cta-band { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; color: #FFFFFF; margin-bottom: 8px;
}
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }


/* ================================================================
   14. PAGE HERO — all inner pages
================================================================ */

.page-hero {
  min-height: 46vh; display: flex; align-items: flex-end;
  padding: 0 var(--pad-x) 80px; padding-top: var(--nav-h);
  background: linear-gradient(180deg, #EDE5D8 0%, #E4D9C8 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(224,118,44,0.10) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400; line-height: 1.08; color: #1A1008;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero p {
  font-size: 15px; color: rgba(44,26,10,0.6);
  margin-top: 16px; max-width: 500px; line-height: 1.7; font-weight: 300;
}


/* ================================================================
   15. OVERVIEW PAGE
================================================================ */

.facts-section { padding: 100px 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.fact-card {
  background: var(--dark-2); padding: 44px 36px;
  border-top: 2px solid transparent; transition: all 0.3s;
}
.fact-card:hover { border-top-color: var(--gold); }
.fact-num { font-family: var(--font-serif); font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 8px; font-weight: 400; }
.fact-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fact-desc { font-size: 12px; color: rgba(44,26,10,0.4); margin-top: 8px; line-height: 1.5; }

.developer-section { padding: 100px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.developer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.developer-text .section-body { margin-top: 16px; }
.developer-detail-list { margin-top: 36px; display: flex; flex-direction: column; }
.dd-item { display: grid; grid-template-columns: 160px 1fr; padding: 16px 0; border-bottom: 1px solid var(--border); }
.dd-key { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.dd-val { font-size: 13px; color: var(--white); line-height: 1.5; }

.developer-visual {
  background: var(--dark-3); border: 1px solid var(--border);
  padding: 56px 48px; display: flex; flex-direction: column; gap: 32px;
}
.dv-stat { display: flex; align-items: baseline; gap: 12px; }
.dv-num { font-family: var(--font-serif); font-size: 64px; color: var(--white); line-height: 1; font-weight: 400; }
.dv-unit { font-size: 14px; color: var(--muted); }
.dv-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.dv-divider { width: 100%; height: 1px; background: var(--border); }

.rdev-section { padding: 100px 0; }
.rdev-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.rdev-steps { display: flex; flex-direction: column; margin-top: 40px; }
.rdev-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.rdev-step:first-child { padding-top: 0; }
.step-num { font-family: var(--font-serif); font-size: 32px; color: var(--gold); font-weight: 400; line-height: 1; }
.step-content h4 { font-size: 14px; color: var(--white); margin-bottom: 6px; font-weight: 500; }
.step-content p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.rdev-objectives { display: flex; flex-direction: column; }
.obj-item { padding: 20px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.obj-bullet { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.obj-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

.site-section { padding: 80px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.site-card { background: var(--dark-3); padding: 36px 28px; }
.site-card .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.site-card .val { font-family: var(--font-serif); font-size: 32px; color: var(--white); font-weight: 400; }
.site-card .desc { font-size: 12px; color: var(--muted); margin-top: 6px; }


/* ================================================================
   16. AMENITIES PAGE
================================================================ */

.lifestyle-section { padding: 100px 0; }
.lifestyle-intro { max-width: 600px; margin-bottom: 72px; }
.lifestyle-intro .section-body { margin-top: 16px; }

.amenity-categories { display: flex; flex-direction: column; gap: 80px; }
.amenity-cat-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.cat-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid rgba(224,118,44,0.25); flex-shrink: 0;
}
.cat-name { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--white); }
.cat-count { margin-left: auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

.amenity-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px;
}
.amenity-item {
  background: var(--dark-2); padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 2px solid transparent; transition: all 0.25s;
}
.amenity-item:hover { border-left-color: var(--gold); background: var(--dark-3); }
.amenity-check {
  width: 20px; height: 20px; border: 1px solid rgba(224,118,44,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.amenity-check svg { width: 10px; height: 10px; color: var(--gold); }
.amenity-name { font-size: 13px; color: var(--white); font-weight: 500; margin-bottom: 4px; }
.amenity-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

.specs-section { padding: 100px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.specs-intro { margin-bottom: 64px; }
.specs-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.spec-cat h3 {
  font-family: var(--font-serif); font-size: 22px; color: var(--white);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); font-weight: 400;
}
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spec-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.spec-list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }

.amenities-cta { padding: 100px 0; text-align: center; }
.amenities-cta h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 400; margin-bottom: 20px; }
.amenities-cta h2 em { font-style: italic; color: var(--gold); }


/* ================================================================
   17. FLOOR PLANS PAGE
================================================================ */

.fp-section { padding: 80px 0 120px; }
.fp-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 2px; margin-top: 56px; border: 1px solid var(--border);
}

.fp-sidebar {
  background: var(--dark-2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.fp-sidebar-header {
  padding: 20px 24px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--border);
}
.fp-tab {
  padding: 18px 24px; background: none; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--muted); text-align: left; cursor: pointer;
  font-family: var(--font-sans); font-size: 12px; line-height: 1.5;
  transition: all 0.25s; display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.02em;
}
.fp-tab:hover { background: var(--dark-3); color: var(--gold); }
.fp-tab.active { background: var(--dark-3); color: var(--gold); border-left: 2px solid var(--gold); }
.fp-tab-num {
  width: 24px; height: 24px; border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}

.fp-viewer { background: var(--dark-3); position: relative; overflow: hidden; }
.fp-panel { display: none; flex-direction: column; }
.fp-panel.active { display: flex; }
.fp-panel img { width: 100%; height: auto; }
.fp-panel-footer {
  padding: 20px 28px; background: var(--dark-2);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.fp-panel-name { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fp-dl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); cursor: pointer; background: none; border: none;
  font-family: var(--font-sans); transition: color 0.2s;
}
.fp-dl:hover { color: var(--gold-light); }

.configs-strip { padding: 80px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.config-table { width: 100%; border-collapse: collapse; }
.config-table th {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 12px 20px; text-align: left;
  border-bottom: 1px solid var(--border); font-weight: 500;
}
.config-table td {
  font-size: 13px; color: var(--muted);
  padding: 16px 20px; border-bottom: 1px solid rgba(138,52,37,0.06);
}
.config-table td:first-child { color: var(--white); font-weight: 500; }
.config-table tr:hover td { background: var(--dark-3); }
.config-table .badge {
  display: inline-block; font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(224,118,44,0.3); padding: 3px 8px;
}
.enquire-row button {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: none; border: none; cursor: pointer; font-family: var(--font-sans);
}
.enquire-row button:hover { text-decoration: underline; }


/* ================================================================
   18. LOCATION PAGE
================================================================ */

.address-section { padding: 80px 0; }
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.address-block p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-top: 12px; }
.address-block address {
  font-style: normal; font-family: var(--font-serif);
  font-size: 20px; color: var(--white); line-height: 1.5;
  margin: 24px 0; border-left: 2px solid var(--gold); padding-left: 20px;
}
.address-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.map-box {
  aspect-ratio: 1; background: var(--dark-2); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(224,118,44,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,118,44,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.map-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(224,118,44,0.15);
  animation: ripple 3s ease-in-out infinite;
}
.map-ring:nth-child(1) { width: 60px;  height: 60px;  }
.map-ring:nth-child(2) { width: 130px; height: 130px; animation-delay: 0.5s; }
.map-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 1s; }
.map-ring:nth-child(4) { width: 280px; height: 280px; animation-delay: 1.5s; }
@keyframes ripple { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.7; } }

.map-pin {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.map-pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(224,118,44,0.25); }
.map-pin p { font-family: var(--font-serif); font-size: 16px; color: var(--white); font-style: italic; margin-top: 8px; }
.map-pin span { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.connectivity-section { padding: 100px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.conn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
.conn-cat-title {
  padding: 20px 28px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); background: var(--dark-3); border-bottom: 1px solid var(--border);
}
.conn-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; border-bottom: 1px solid rgba(138,52,37,0.06); transition: background 0.2s;
}
.conn-item:hover { background: rgba(224,118,44,0.04); }
.conn-name { font-size: 13px; color: var(--white); }
.conn-dist { font-size: 12px; color: var(--gold); font-family: var(--font-serif); letter-spacing: 0.04em; }
.conn-mode { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; text-align: right; }

.neighbourhood-section { padding: 100px 0; }
.nb-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.nb-card { background: var(--dark-2); padding: 36px 28px; border-top: 2px solid transparent; transition: all 0.3s; }
.nb-card:hover { border-top-color: var(--gold); background: var(--dark-3); }
.nb-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid rgba(224,118,44,0.25); margin-bottom: 20px; }
.nb-card h3 { font-family: var(--font-serif); font-size: 18px; color: var(--white); font-weight: 400; margin-bottom: 10px; }
.nb-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }


/* ================================================================
   19. POPUP / ENQUIRY FORM
================================================================ */

.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,5,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }

.popup-modal {
  background: var(--dark-2); display: grid; grid-template-columns: 1fr 1fr;
  max-width: 820px; width: 100%; position: relative;
  border: 1px solid var(--border);
  transform: translateY(24px); transition: transform 0.35s;
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.open .popup-modal { transform: none; }

.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px;
  color: var(--muted); line-height: 1; transition: color 0.2s; z-index: 2;
}
.popup-close:hover { color: var(--gold); }

.popup-left {
  background: linear-gradient(160deg, #2C1A0A 0%, #1A1008 100%);
  padding: 48px 40px; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
}
.popup-left::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,118,44,0.15) 0%, transparent 70%);
}

.popup-badge {
  display: inline-block; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(224,118,44,0.4); padding: 5px 12px;
  margin-bottom: 20px; width: fit-content;
}
.popup-title {
  font-family: var(--font-serif); font-size: 44px;
  font-weight: 400; line-height: 1.1; color: #FFFFFF; margin-bottom: 12px;
}
.popup-title em { font-style: italic; color: var(--gold); }
.popup-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }

.popup-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.popup-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.popup-bullets li::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

.popup-right { padding: 48px 40px; }
.popup-form-title { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }

.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select {
  width: 100%; padding: 14px 0;
  background: none; border: none; border-bottom: 1px solid var(--border);
  color: var(--white); font-family: var(--font-sans); font-size: 14px;
  outline: none; transition: border-color 0.25s; -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(44,26,10,0.4); }
.form-group select { color: rgba(44,26,10,0.5); cursor: pointer; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group input:focus,
.form-group select:focus { border-bottom-color: var(--gold); }

.popup-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; }
.popup-privacy { font-size: 10px; color: rgba(44,26,10,0.3); text-align: center; margin-top: 12px; line-height: 1.5; }


/* ================================================================
   20. STICKY BAR — mobile only
================================================================ */

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  display: none; grid-template-columns: 1fr 2fr;
  height: 56px; border-top: 1px solid var(--border);
}
.sticky-call {
  background: var(--dark-3); display: flex; align-items: center;
  justify-content: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border-right: 1px solid var(--border);
  text-decoration: none;
}
.sticky-enquire {
  background: var(--gold); color: #FFFFFF; border: none;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; font-family: var(--font-sans);
}


/* ================================================================
   21. WHATSAPP FLOAT
================================================================ */

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }


/* ================================================================
   22. PAGE-SPECIFIC RESPONSIVE
================================================================ */

@media (max-width: 1024px) {
  .about-grid                { grid-template-columns: 1fr; gap: 48px; }
  .about-visual              { display: none; }
  .configs-grid              { grid-template-columns: 1fr 1fr; }
  .hero-stats                { display: none; }
  .overview-strip .container { grid-template-columns: 1fr; gap: 48px; }
  .facts-grid                { grid-template-columns: 1fr 1fr; }
  .developer-grid            { grid-template-columns: 1fr; }
  .rdev-grid                 { grid-template-columns: 1fr; }
  .site-cards                { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .specs-categories { grid-template-columns: 1fr; }
  .address-grid     { grid-template-columns: 1fr; }
  .conn-grid        { grid-template-columns: 1fr; }
  .nb-cards         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fp-layout     { grid-template-columns: 1fr; }
  .fp-sidebar    { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--border); overflow-x: auto; }
  .fp-tab        { border-bottom: none; border-right: 1px solid var(--border); white-space: nowrap; }
  .fp-sidebar-header { display: none; }
}

@media (max-width: 640px) {
  .configs-grid   { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-content   { padding-bottom: 80px; }
  .popup-modal    { grid-template-columns: 1fr; }
  .popup-left     { display: none; }
  .popup-right    { padding: 40px 28px; }
  .sticky-bar     { display: grid; }
  .whatsapp-float { bottom: 72px; right: 20px; width: 48px; height: 48px; }
  .site-cards     { grid-template-columns: 1fr; }
  .nb-cards       { grid-template-columns: 1fr; }
}