/* =============================================
   KRISALA AVENTIS — ATELIER GENESIS DESIGN SYSTEM
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

/* =============================================
   CRITICAL HERO CSS (Core Web Vitals Optimization)
   ============================================= */
.hero { min-height: 100vh; background: var(--clr-obsidian); opacity: 1 !important; visibility: visible !important; }
.hero-content { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.pill-navbar { transform: translateX(-50%) translateY(0); opacity: 1 !important; visibility: visible !important; }
body { opacity: 1 !important; visibility: visible !important; }

:root {
  --clr-obsidian:   hsl(222, 18%, 7%);
  --clr-onyx:       hsl(222, 14%, 11%);
  --clr-onyx-light: hsl(222, 12%, 15%);
  --clr-gold:       hsl(42, 72%, 56%);
  --clr-gold-light: hsl(42, 72%, 72%);
  --clr-gold-dim:   hsl(42, 40%, 30%);
  --clr-silk:       hsl(0, 0%, 96%);
  --clr-silver:     hsl(0, 0%, 65%);
  --clr-muted:      hsl(0, 0%, 42%);
  --clr-glass:      rgba(255,255,255,0.04);
  --clr-glass-border: rgba(255,255,255,0.08);
  --clr-wa:         #25D366;

  --font-body:   'Outfit', sans-serif;
  --font-serif:  'Playfair Display', serif;

  --max-w: 1380px;
  --gap:   clamp(24px, 4vw, 60px);
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background:  var(--clr-obsidian);
  color:       var(--clr-silk);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.gold { color: var(--clr-gold); }
.white { color: #ffffff; }
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clr-gold);
  border: 1px solid var(--clr-gold-dim);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.section-header p { color: var(--clr-silver); margin-top: 12px; font-size: 1.05rem; }
.section-header.center { text-align: center; }
.lead-text { font-size: 1.15rem; color: var(--clr-silver); margin-bottom: 20px; }
.body-text  { font-size: 1rem; color: var(--clr-muted); margin-bottom: 36px; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   STICKY RIBBON
   ============================================= */
.sticky-ribbon {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  background: var(--clr-gold);
  color: hsl(222, 18%, 7%);
  font-size: 0.8rem; font-weight: 600;
  text-align: center;
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: center;
}
.ribbon-content { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.ribbon-cta {
  background: var(--clr-obsidian); color: var(--clr-gold);
  padding: 5px 16px; border-radius: 100px;
  font-size: 0.78rem; transition: 0.3s;
}
.ribbon-cta:hover { background: hsl(222,18%,3%); }

/* =============================================
   NAVBAR
   ============================================= */
.pill-navbar {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  background: rgba(5, 6, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  z-index: 1000;
  padding: 10px 10px 10px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-navbar.scrolled {
  top: 15px;
  background: rgba(5, 6, 8, 0.95);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  color: var(--clr-gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  opacity: 0.8;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--clr-gold);
}

.cta-pill {
  background: var(--clr-gold);
  color: #000 !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding-top: 120px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,10,16,0.5) 0%,
    rgba(8,10,16,0.3) 40%,
    rgba(8,10,16,0.8) 85%,
    var(--clr-obsidian) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 860px; padding: 0 20px;
  animation: revealUp 1s var(--ease) both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--clr-gold); color: var(--clr-gold);
  padding: 6px 18px; border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clr-gold); animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 25px;
}
.hero h1 strong {
  display: block; font-weight: 700; color: #fff;
}
.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--clr-silver);
  margin: 0 auto 35px; line-height: 1.8;
  max-width: 700px; opacity: 0.8;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.hero-chips span {
  background: rgba(255,255,255,0.06); border: 1px solid var(--clr-glass-border);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; color: var(--clr-silver);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--clr-gold); color: var(--clr-obsidian);
  padding: 16px 36px; border-radius: 8px; font-weight: 700;
  transition: 0.3s var(--ease); font-size: 0.95rem;
}
.btn-primary:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(202,163,80,0.3); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25); color: var(--clr-silk);
  padding: 16px 36px; border-radius: 8px; font-weight: 500;
  transition: 0.3s var(--ease); font-size: 0.95rem;
}
.btn-secondary:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.btn-primary.mt, .btn-secondary.mt { margin-top: 28px; display: inline-block; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--clr-muted); font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 20px; height: 30px; border: 2px solid var(--clr-muted);
  border-radius: 20px; position: relative;
}
.scroll-arrow::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--clr-gold); border-radius: 2px;
  animation: scrollPulse 2s infinite;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--clr-onyx);
  border-top: 1px solid var(--clr-glass-border);
  border-bottom: 1px solid var(--clr-glass-border);
  overflow: hidden; padding: 20px 0;
}
.stats-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap; animation: marquee 30s linear infinite;
  width: max-content;
}
.stat-item { display: flex; align-items: center; gap: 10px; }
.stat-item strong { color: var(--clr-gold); font-size: 1.1rem; font-weight: 700; }
.stat-item span { font-size: 0.82rem; color: var(--clr-silver); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { color: var(--clr-gold-dim); font-size: 1.2rem; }

/* =============================================
   OVERVIEW
   ============================================= */
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); align-items: center;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.feature-item {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 16px; padding: 24px 20px;
}
.feature-icon { font-size: 1.6rem; margin-bottom: 10px; }
.feature-item strong { display: block; color: var(--clr-gold); margin-bottom: 6px; font-size: 0.95rem; }
.feature-item span { font-size: 0.83rem; color: var(--clr-muted); line-height: 1.6; }
.interior-img {
  width: 100%; border-radius: 24px; object-fit: cover;
  aspect-ratio: 4/5; filter: brightness(0.92);
}
.img-caption {
  text-align: right; font-size: 0.75rem; color: var(--clr-muted);
  margin-top: 10px; font-style: italic;
}

/* =============================================
   FLOOR PLANS
   ============================================= */
.floorplan-section { background: var(--clr-onyx); }
.floorplan-tabs {
  display: flex; gap: 8px; margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 36px; border-radius: 100px; border: 1px solid var(--clr-glass-border);
  background: transparent; color: var(--clr-silver); font-size: 0.9rem; font-weight: 600;
  transition: 0.3s var(--ease);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--clr-gold); border-color: var(--clr-gold);
  color: var(--clr-obsidian);
}
.fp-tab { display: none; }
.fp-tab.active { display: block; }
.fp-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--gap); align-items: center;
}
.fp-image img { 
  border-radius: 20px; 
  width: 100%; 
  filter: invert(0.85) hue-rotate(180deg) contrast(1.2);
  mix-blend-mode: screen;
}
.fp-details h3 { font-size: 1.6rem; margin-bottom: 16px; }
.fp-details p { color: var(--clr-silver); margin-bottom: 28px; font-size: 1rem; }
.fp-specs { display: grid; gap: 10px; }
.fp-specs li {
  display: flex; align-items: center; gap: 10px;
  background: var(--clr-obsidian); border: 1px solid var(--clr-glass-border);
  border-radius: 10px; padding: 10px 16px; font-size: 0.9rem; color: var(--clr-silver);
}
.fp-specs li span { font-size: 1rem; }

/* =============================================
   AMENITIES
   ============================================= */
.amenities-infographic { margin-bottom: 60px; }
.amenities-infographic img { border-radius: 24px; width: 100%; max-width: 900px; margin: 0 auto; }
.amenity-category-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.amenity-cat {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; padding: 28px 24px;
}
.cat-header {
  font-size: 0.9rem; font-weight: 700; color: var(--clr-gold);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding-bottom: 16px; border-bottom: 1px solid var(--clr-glass-border);
  margin-bottom: 16px;
}
.amenity-cat ul { display: grid; gap: 8px; }
.amenity-cat li {
  font-size: 0.85rem; color: var(--clr-silver); padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 6px;
}
.amenity-cat li::before { content: '→'; color: var(--clr-gold-dim); font-size: 0.8rem; }

/* =============================================
   LOCATION
   ============================================= */
.location-infographic { margin-bottom: 60px; }
.location-infographic img { border-radius: 24px; width: 100%; max-width: 800px; margin: 0 auto; }
.location-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px;
}
.loc-category {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; padding: 28px 24px;
}
.loc-category h4 {
  font-size: 0.9rem; color: var(--clr-gold); text-transform: uppercase;
  letter-spacing: 0.06em; padding-bottom: 14px;
  border-bottom: 1px solid var(--clr-glass-border); margin-bottom: 14px;
}
.loc-items { display: grid; gap: 8px; }
.loc-item {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.84rem; color: var(--clr-silver);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.loc-item span { color: var(--clr-gold); font-weight: 600; min-width: 42px; font-size: 0.78rem; }
.metro-callout {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, var(--clr-gold-dim), rgba(202,163,80,0.05));
  border: 1px solid var(--clr-gold-dim); border-radius: 20px;
  padding: 28px 36px;
}
.metro-icon { font-size: 2.5rem; }
.metro-text strong { display: block; color: var(--clr-gold); font-size: 1.1rem; margin-bottom: 6px; }
.metro-text span { color: var(--clr-silver); font-size: 0.9rem; }

/* =============================================
   LEGACY
   ============================================= */
.legacy-section { background: var(--clr-onyx); }
.legacy-philosophy {
  max-width: 700px; margin: 0 auto 60px; text-align: center;
}
.legacy-philosophy blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem); line-height: 1.6;
  color: var(--clr-silk);
}
.legacy-philosophy cite { color: var(--clr-gold); font-size: 0.85rem; margin-top: 16px; display: block; }
.legacy-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px;
}
.l-stat {
  background: var(--clr-obsidian); border: 1px solid var(--clr-glass-border);
  border-radius: 16px; padding: 30px; text-align: center;
}
.l-stat strong { display: block; font-size: 2.2rem; color: var(--clr-gold); font-weight: 800; }
.l-stat span { font-size: 0.82rem; color: var(--clr-silver); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; display: block; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.portfolio-card {
  background: var(--clr-obsidian); border: 1px solid var(--clr-glass-border);
  border-radius: 16px; padding: 28px 24px; position: relative;
  transition: 0.3s var(--ease);
}
.portfolio-card:hover { border-color: var(--clr-gold-dim); transform: translateY(-4px); }
.portfolio-tag {
  display: inline-block; padding: 3px 12px; border-radius: 100px;
  background: rgba(202,163,80,0.15); color: var(--clr-gold);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.portfolio-card h4 { font-size: 1rem; margin-bottom: 6px; }
.portfolio-card p { font-size: 0.82rem; color: var(--clr-muted); }

/* =============================================
   SPECIFICATIONS
   ============================================= */
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.spec-card {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; padding: 30px;
  transition: 0.3s var(--ease);
}
.spec-card:hover { border-color: var(--clr-gold-dim); }
.spec-icon { font-size: 2rem; margin-bottom: 14px; }
.spec-card h4 { font-size: 1rem; color: var(--clr-gold); margin-bottom: 14px; }
.spec-card ul { display: grid; gap: 8px; }
.spec-card li {
  font-size: 0.83rem; color: var(--clr-silver);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.spec-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--clr-gold);
}

/* =============================================
   BLOG
   ============================================= */
.blog-section { background: var(--clr-onyx); }
.blog-grid {
  display: grid; grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 24px; align-items: start;
}
.blog-card {
  background: var(--clr-obsidian); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 16px;
  transition: 0.3s var(--ease);
}
.blog-card:hover { border-color: var(--clr-gold-dim); transform: translateY(-4px); }
.blog-card.featured { border-color: var(--clr-gold-dim); background: var(--clr-onyx); }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-tag {
  background: rgba(202,163,80,0.15); color: var(--clr-gold);
  padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
}
.blog-date { font-size: 0.75rem; color: var(--clr-muted); }
.blog-card h3 { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.4; }
.blog-excerpt { display: flex; flex-direction: column; gap: 12px; }
.blog-excerpt p, .blog-excerpt li { font-size: 0.9rem; color: var(--clr-silver); }
.blog-excerpt ul { padding-left: 0; display: grid; gap: 8px; }
.blog-excerpt li {
  padding-left: 16px; position: relative; line-height: 1.6;
}
.blog-excerpt li::before {
  content: '→'; position: absolute; left: 0; color: var(--clr-gold); font-size: 0.75rem;
}
.blog-excerpt h5 { color: var(--clr-silk); font-size: 0.9rem; margin-top: 8px; }
.blog-cta {
  color: var(--clr-gold); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; margin-top: auto;
  transition: 0.2s;
}
.blog-cta:hover { color: var(--clr-gold-light); letter-spacing: 0.1em; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 14px; overflow: hidden; transition: 0.3s;
}
.faq-item[open] { border-color: var(--clr-gold-dim); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-size: 0.95rem;
  font-weight: 600; color: var(--clr-silk); 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: '+'; color: var(--clr-gold); font-size: 1.3rem; transition: 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px; color: var(--clr-silver); font-size: 0.9rem; line-height: 1.7;
}

/* =============================================
   ENQUIRY
   ============================================= */
.enquiry-section { position: relative; overflow: hidden; }
.enquiry-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top,
    rgba(202,163,80,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.enquiry-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start;
}
.enquiry-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; line-height: 1.2; }
.enquiry-left p { color: var(--clr-silver); font-size: 1rem; margin-bottom: 32px; }
.enquiry-perks { display: grid; gap: 10px; margin-bottom: 36px; }
.perk {
  font-size: 0.9rem; color: var(--clr-silver);
  padding: 10px 16px; background: var(--clr-onyx);
  border: 1px solid var(--clr-glass-border); border-radius: 10px;
  transition: 0.2s;
}
.perk:hover { border-color: var(--clr-gold-dim); color: var(--clr-gold); }
.contact-details { display: flex; flex-direction: column; gap: 10px; }
.contact-link { color: var(--clr-silver); font-size: 0.9rem; transition: 0.2s; }
.contact-link:hover { color: var(--clr-gold); }
.contact-addr { font-size: 0.83rem; color: var(--clr-muted); line-height: 1.5; }
.glass-form-container {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 28px; padding: clamp(28px, 4vw, 50px);
}
.glass-form-container h3 { font-size: 1.4rem; margin-bottom: 28px; }
.enquiry-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; color: var(--clr-silver); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--clr-glass-border);
  border-radius: 10px; padding: 14px 18px;
  color: var(--clr-silk); font-family: var(--font-body); font-size: 0.95rem;
  transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--clr-gold);
  background: rgba(202,163,80,0.05);
}
.form-group select option { background: var(--clr-onyx); }
.form-group input.error,
.form-group select.error { border-color: hsl(0, 70%, 55%); }
.submit-btn {
  background: var(--clr-gold); color: var(--clr-obsidian);
  padding: 18px; border-radius: 12px; border: none;
  font-weight: 700; font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.08em; transition: 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.submit-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: 0.6s;
}
.submit-btn:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(202,163,80,0.35); }
.submit-btn:hover::after { transform: translateX(100%); }
.submit-btn:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }
.disclaimer { font-size: 0.72rem; color: var(--clr-muted); line-height: 1.6; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--clr-onyx);
  border-top: 1px solid var(--clr-glass-border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--gap); padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-glass-border); margin-bottom: 28px;
}
.footer-brand h3 { font-size: 1.1rem; letter-spacing: 0.16em; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--clr-gold); font-weight: 300; }
.footer-brand p { font-size: 0.82rem; color: var(--clr-muted); line-height: 1.7; }
.footer-brand .rera { color: var(--clr-gold); font-size: 0.78rem; margin-top: 12px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5, .footer-contact h5 {
  font-size: 0.75rem; color: var(--clr-gold); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 6px;
}
.footer-links a, .footer-contact a {
  font-size: 0.84rem; color: var(--clr-muted); transition: 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--clr-gold); }
.wa-btn-container { margin-top: 8px; }
.wa-float {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-wa); color: white;
  padding: 10px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  transition: 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.wa-float:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.footer-bottom { text-align: center; color: var(--clr-muted); font-size: 0.75rem; }

/* =============================================
   FLOATING WHATSAPP FAB
   ============================================= */
.wa-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 1800;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--clr-wa); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: 0.3s var(--ease-spring);
  animation: waPop 0.6s 1.5s var(--ease-spring) both;
}
.wa-fab::before {
  content: 'Chat with Sales';
  position: absolute; right: 75px;
  background: var(--clr-obsidian);
  border: 1px solid var(--clr-gold);
  color: var(--clr-silk);
  padding: 8px 16px;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  opacity: 0; pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s var(--ease-spring);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.wa-fab:hover::before {
  opacity: 1; transform: translateX(0);
}
.wa-fab::after {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  border-radius: 50%;
  border: 2px solid var(--clr-wa);
  animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* =============================================
   MASTER LAYOUT
   ============================================= */
.master-layout-section { background: var(--clr-obsidian); }

.tower-stat-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 60px;
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; overflow: hidden;
}
.tower-stat {
  flex: 1; text-align: center; padding: 30px 20px;
  border-right: 1px solid var(--clr-glass-border);
  display: flex; flex-direction: column; gap: 6px;
  transition: 0.3s;
}
.tower-stat:last-of-type { border-right: none; }
.tower-stat:hover { background: rgba(202,163,80,0.06); }
.ts-label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--clr-muted);
}
.ts-val   { font-size: 1.4rem; font-weight: 800; color: var(--clr-gold); }
.ts-sub   { font-size: 0.78rem; color: var(--clr-silver); }
.ts-separator { color: var(--clr-gold-dim); font-size: 1.5rem; font-weight: 300; padding: 0 4px; }

.master-layout-wrapper {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--clr-glass-border);
  margin-bottom: 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.master-layout-img {
  width: 100%; display: block;
  transition: transform 8s ease;
  filter: invert(0.85) hue-rotate(180deg) contrast(1.2);
  mix-blend-mode: screen;
}
.master-layout-wrapper:hover .master-layout-img { transform: scale(1.02); }

.layout-legend {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(10,12,17,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--clr-glass-border);
  border-radius: 14px; padding: 18px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.legend-title {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--clr-gold); margin-bottom: 4px;
}
.legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--clr-silver);
}
.l-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.l-dot.green  { background: #4ade80; }
.l-dot.blue   { background: #38bdf8; }
.l-dot.orange { background: #fb923c; }
.l-dot.gold   { background: var(--clr-gold); }
.l-dot.grey   { background: var(--clr-muted); }

.zone-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px;
}
.zone-card {
  background: var(--clr-onyx); border: 1px solid var(--clr-glass-border);
  border-radius: 20px; padding: 30px;
  transition: 0.3s var(--ease);
}
.zone-card:hover {
  border-color: var(--clr-gold-dim);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.zone-icon { font-size: 2rem; margin-bottom: 14px; }
.zone-card h4 { color: var(--clr-gold); font-size: 1rem; margin-bottom: 10px; }
.zone-card p  { font-size: 0.87rem; color: var(--clr-silver); line-height: 1.65; }

.layout-cta {
  text-align: center;
  padding: 48px 0 0;
}
.layout-cta p {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.3rem;
  color: var(--clr-silver); margin-bottom: 24px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; }
  .amenity-category-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    z-index: 5000; gap: 24px;
    animation: fadeIn 0.3s ease forwards;
  }
  .nav-links.open a { font-size: 1.4rem; font-weight: 600; color: #fff; width: 100%; text-align: center; }
  .hamburger { display: flex; z-index: 5100; position: relative; }
  .pill-navbar { border-radius: 16px; width: calc(100vw - 32px); padding: 10px 12px 10px 20px; }
  .nav-container { width: 100%; justify-content: space-between; }
  .overview-grid,
  .fp-layout,
  .enquiry-layout { grid-template-columns: 1fr; }
  .overview-right { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .legacy-stats { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Master Layout responsive */
  .tower-stat-row { flex-wrap: wrap; }
  .tower-stat { min-width: 45%; border-bottom: 1px solid var(--clr-glass-border); }
  .ts-separator { display: none; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .layout-legend { position: static; margin-top: 16px; flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions, .map-actions, .oracle-nav { display: flex; flex-direction: column !important; gap: 12px !important; }
  .btn-primary, .btn-secondary { width: 100% !important; text-align: center; margin: 0 !important; }
  .amenity-category-grid,
  .location-grid { grid-template-columns: 1fr; }
  .legacy-stats,
  .spec-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .tower-stat { min-width: 100%; }
  .layout-legend { position: static; }
}

/* --- Phase 4 Authority & UI Scaling --- */
.connectivity-h3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.conn-h3 h3 {
  font-size: 1.25rem;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
  font-family: var(--ff-heading);
}

.conn-h3 p {
  font-size: 0.95rem;
  color: var(--clr-light-alt);
  line-height: 1.6;
}

.maps-cta {
  margin-top: 1.5rem;
}

.btn-secondary.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .connectivity-h3-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
}

/* =============================================
   ENQUIRY MODAL (SOVEREIGN GLASS)
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(8, 10, 16, 0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--clr-onyx);
  border: 1px solid var(--clr-glass-border);
  padding: clamp(30px, 5vw, 60px);
  border-radius: 24px;
  max-width: 700px; width: 100%;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.5s var(--ease-spring), opacity 0.5s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--clr-glass); border: 1px solid var(--clr-glass-border);
  color: var(--clr-silver); width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.2rem;
  transition: 0.3s;
}
.modal-close:hover { color: var(--clr-gold); background: var(--clr-onyx-light); transform: rotate(90deg); }

.modal-header { margin-bottom: 32px; text-align: center; }
.modal-header h3 { font-size: 2rem; margin-bottom: 12px; font-family: var(--font-serif); }
.modal-header p { color: var(--clr-muted); font-size: 0.95rem; line-height: 1.5; }

.sovereign-form-logic .form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
@media (max-width: 600px) {
  .sovereign-form-logic .form-grid { grid-template-columns: 1fr; }
}

.form-group label { display: block; font-size: 0.75rem; color: var(--clr-silver); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%; background: var(--clr-glass); border: 1px solid var(--clr-glass-border);
  padding: 14px 18px; border-radius: 8px; color: var(--clr-silk); font-size: 0.95rem;
  transition: 0.3s var(--ease);
}
.form-group input:focus { border-color: var(--clr-gold); outline: none; background: rgba(255,255,255,0.06); }

.phone-input { display: flex; align-items: center; gap: 10px; }
.phone-input span { font-size: 0.9rem; color: var(--clr-muted); font-weight: 600; }

.submit-btn {
  width: 100%; background: var(--clr-gold); color: var(--clr-obsidian);
  padding: 18px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  transition: 0.3s var(--ease); border: none; margin-bottom: 16px;
}
.submit-btn:hover { background: var(--clr-gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(202,163,80,0.35); }

.disclaimer { font-size: 0.65rem; color: var(--clr-muted); text-align: center; line-height: 1.4; }

.keyword-cluster { margin-bottom: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.keyword-cluster strong { color: var(--clr-gold); margin-right: 8px; }
.keyword-cluster span { transition: 0.3s; cursor: default; }
.keyword-cluster span:hover { color: var(--clr-gold); }

.cluster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.cluster-card { background: var(--clr-onyx-light); border: 1px solid var(--clr-glass-border); padding: 30px; border-radius: 16px; transition: 0.4s var(--ease); }
.cluster-card:hover { transform: translateY(-10px); border-color: var(--clr-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.cluster-card h4 { color: var(--clr-gold); margin-bottom: 15px; font-size: 1.1rem; }
.cluster-card p { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.6; }

/* --- Progress Intelligence --- */
.progress-wrapper { margin-top: 2rem; }
.progress-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.progress-header strong { color: var(--clr-gold); font-size: 0.95rem; }
.progress-header span { font-size: 0.8rem; color: var(--clr-muted); }
.progress-track { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); height: 8px; border-radius: 100px; position: relative; overflow: hidden; }
.progress-fill { background: linear-gradient(90deg, var(--clr-gold-dim), var(--clr-gold)); height: 100%; border-radius: 100px; width: 0; transition: width 2s cubic-bezier(0.4, 0, 0.2, 1); }
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.status-pill.completed { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.status-pill.active { background: rgba(202, 163, 80, 0.1); color: var(--clr-gold); }

/* --- Priority Pass Experience --- */
.priority-pass-container { display: none; margin-top: 2rem; perspective: 1000px; }
.priority-pass {
  background: linear-gradient(135deg, #0a0c10 0%, #16191f 100%);
  border: 1px solid var(--clr-gold);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  border-top: 4px solid var(--clr-gold);
}
.priority-pass::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(202,163,80,0.05) 0%, transparent 70%);
}
.pass-header { color: var(--clr-gold); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 800; }
.pass-name { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 0.5rem; color: #fff; }
.pass-id { font-family: monospace; color: var(--clr-gold); font-size: 0.9rem; opacity: 0.8; margin-bottom: 1.5rem; display: block; }
.pass-qr { background: #fff; padding: 12px; width: 130px; height: 130px; margin: 0 auto 1.5rem; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.pass-qr img { width: 100%; height: 100%; }
.pass-benefit { font-size: 0.85rem; color: var(--clr-silver); margin-bottom: 1.5rem; line-height: 1.5; }
.pass-benefit strong { color: #fff; }
.pass-footer { border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.7rem; color: var(--clr-muted); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Landmark Hyper-Saturation --- */
.landmark-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 3rem; }
.landmark-card {
  background: var(--clr-onyx);
  border: 1px solid var(--clr-glass-border);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.4s var(--ease);
}
.landmark-card:hover { border-color: var(--clr-gold); transform: translateY(-5px); background: var(--clr-onyx-light); }
.landmark-icon { font-size: 2rem; opacity: 0.8; }
.landmark-info h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.landmark-info p { font-size: 0.8rem; color: var(--clr-muted); margin-bottom: 8px; }
.landmark-meta { display: flex; gap: 12px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--clr-gold); }
.landmark-meta span { background: rgba(202,163,80,0.1); padding: 2px 8px; border-radius: 4px; }
.landmark-link { margin-top: 10px; font-size: 0.75rem; color: var(--clr-silver); display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; transition: 0.3s; }
.landmark-link:hover { color: var(--clr-gold); }

/* --- AI Oracle Wizard --- */
.oracle-section { background: linear-gradient(180deg, #050608 0%, #0a0c10 100%); }
.oracle-container { max-width: 800px; margin: 0 auto; background: var(--clr-onyx); border: 1px solid var(--clr-glass-border); border-radius: 30px; padding: 40px; position: relative; overflow: hidden; }
.oracle-step { display: none; animation: fadeIn 0.5s ease forwards; }
.oracle-step.active { display: block; }
.oracle-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 2rem; }
.oracle-opt { 
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); 
  padding: 20px; border-radius: 15px; cursor: pointer; transition: 0.3s; text-align: center;
}
.oracle-opt:hover { background: rgba(202,163,80,0.05); border-color: var(--clr-gold); }
.oracle-opt.selected { background: var(--clr-gold); color: #000; border-color: var(--clr-gold); }
.oracle-opt h5 { margin-bottom: 5px; font-size: 1rem; }
.oracle-opt p { font-size: 0.75rem; opacity: 0.7; }
.oracle-nav { display: flex; justify-content: space-between; margin-top: 3rem; }
.oracle-result { text-align: center; display: none; }
.oracle-result h3 { color: var(--clr-gold); font-size: 2rem; margin-bottom: 1rem; }
.oracle-result p { margin-bottom: 2rem; color: var(--clr-silver); }

/* --- Krisala Project Hardening (Table & Oracle) --- */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; border-radius: 12px; border: 1px solid var(--clr-glass-border); }
.sge-table { width: 100%; border-collapse: collapse; min-width: 600px; background: rgba(255,255,255,0.02); }
.sge-table th, .sge-table td { padding: 16px 20px; border-bottom: 1px solid var(--clr-glass-border); text-align: left; font-size: 0.9rem; }
.sge-table th { color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; background: rgba(0,0,0,0.2); }

@media (max-width: 640px) {
  .oracle-container { padding: 24px; border-radius: 20px; overflow: visible; }
  .oracle-result h3 { font-size: 1.5rem; }
  .oracle-result { padding-bottom: 20px; }
}

/* --- Priority Pass Gold Shimmer --- */
.priority-pass::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 20%,
    rgba(202, 163, 80, 0.15) 50%,
    transparent 80%
  );
  animation: shimmerPass 4s infinite linear;
  pointer-events: none;
}

@keyframes shimmerPass {
  0% { transform: translate(-30%, -30%) rotate(0deg); }
  100% { transform: translate(30%, 30%) rotate(0deg); }
}

/* --- Mobile Navigation Overhaul --- */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(5,6,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    padding: 20px;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; opacity: 1; }
  .cta-pill { width: 100%; text-align: center; font-size: 1rem !important; }
}
.no-scroll { overflow: hidden; }

/* --- Master Navigation & Breadcrumb Reset --- */
.pill-navbar {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  background: rgba(5, 6, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  z-index: 2000;
  padding: 10px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill-navbar.scrolled { top: 15px; background: rgba(5, 6, 8, 0.98); }

.nav-container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; width: 100%; gap: 20px; }
.nav-links { display: flex; gap: 30px; align-items: center; justify-content: center; }
.nav-links a { color: #fff; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; white-space: nowrap; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--clr-gold); }

.breadcrumb-wrapper {
  padding-top: 150px; /* Strong separation from floating navbar */
  padding-bottom: 20px;
  background: transparent;
  z-index: 1000;
  position: relative;
}
.breadcrumb-list { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; }
.breadcrumb-list a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb-list .sep { color: rgba(255,255,255,0.15); }
.breadcrumb-list .active { color: var(--clr-gold); font-weight: 600; }

@media (max-width: 1024px) {
  .breadcrumb-wrapper { padding-top: 110px; padding-left: 20px; }
  .nav-container { display: flex; justify-content: space-between; }
}

/* --- WhatsApp Enquiry Button --- */
.wa-enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.wa-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* =============================================
   CONVERSION HARDENING: PULSE ANIMATIONS
   ============================================= */
.cta-pill, .btn-primary {
  animation: pulse-gold 3s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(202, 163, 80, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(202, 163, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(202, 163, 80, 0); }
}
