/* ══════════════════════════════════════════════════════════
   LALMUNI RAMESHWAR — Main Stylesheet
   Loaded after hero.css. Overrides font stack, adds all
   site-wide design tokens and section styles.
   ══════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg:          #020b1a;
  --surface:     #080f1e;
  --surface-2:   #0d1829;
  --gold:        #c4a050;
  --gold-light:  #d8b760;
  --cyan:        #58bcec;
  --cyan-dim:    rgba(88, 188, 236, 0.18);
  --platinum:    #c8d8f0;
  --white:       #f0f0f5;
  --muted:       rgba(200, 216, 240, 0.78);
  --border:      rgba(255, 255, 255, 0.09);
  --border-gold: rgba(196, 160, 80, 0.28);
  --glass-bg:    rgba(255, 255, 255, 0.038);
  --glass-bg2:   rgba(255, 255, 255, 0.06);
  --shadow:      0 8px 48px rgba(0, 0, 0, 0.52);
  --shadow-sm:   0 4px 20px rgba(0, 0, 0, 0.36);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Global additions (hero.css already did the full reset) */
html {
  scroll-behavior: smooth;
  background: #020b1a;
  /*
   * overflow-x: clip — clips horizontal overflow at the document level
   * WITHOUT creating a scroll container (unlike overflow-x: hidden).
   * This means window.scrollY still updates correctly and position:sticky
   * on #hero still scrolls relative to the window → animation unaffected.
   */
  overflow-x: clip;
}

body {
  font-family: var(--font);
  overflow-x: clip;  /* belt-and-suspenders: clip at body level too */
  background: #020b1a;
  width: 100%;
  max-width: 100%;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Utilities ─────────────────────────────────────────── */
.hidden  { display: none !important; }
.text-center { text-align: center; }

.container {
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
}

/* Glassmorphism surface */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

/* ── Reveal animation initial states ───────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up    { transform: translateY(44px); }
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }

/* ── Section base ──────────────────────────────────────── */
.section {
  padding-block: clamp(36px, 5vw, 72px);
  position: relative;
  z-index: 2;
  background: var(--bg);
  scroll-margin-top: 74px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;  /* each section clips its own overflow — no section can widen the page */
}

.section-dark {
  background: var(--surface);
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes sectionShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-heading {
  font-family: var(--font);
  font-size: clamp(22px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  /* Animated gradient: white → gold → white → light-green → white */
  background: linear-gradient(
    105deg,
    #ffffff   0%,
    #ffffff  18%,
    #c4a050  32%,
    #f0d070  44%,
    #ffffff  54%,
    #a8ecd0  66%,
    #d4f5e8  76%,
    #ffffff  86%,
    #c4a050 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sectionShimmer 6s ease-in-out infinite;
}

/* Narrower container (max-width 800px) — must cap lower to stay one line */
#heading-vr { font-size: clamp(14px, 2.8vw, 30px); }

.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.72;
  color: var(--muted);
  max-width: 680px;
  margin-inline: auto;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #050a10;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 4px 28px rgba(196, 160, 80, 0.38);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(196, 160, 80, 0.54);
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8c870 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(240, 240, 245, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.22s ease, transform 0.22s var(--ease);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(240, 240, 245, 0.10);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.32);
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.48);
}

/* ── Filter buttons (projects, gallery) ────────────────── */
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition: all 0.22s ease;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  color: #050a10;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(196, 160, 80, 0.4);
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Bar ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  /* 0.78 opacity — clearly visible on dark 3D background, still glassy */
  background: rgba(4, 10, 24, 0.78);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  border-bottom: 1px solid rgba(196, 160, 80, 0.22);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05),
              0 4px 24px rgba(0,0,0,0.45);
  transition: background 0.45s ease, box-shadow 0.45s ease,
              border-color 0.45s ease;
}
#navbar.scrolled {
  background: rgba(2, 7, 18, 0.96);
  border-bottom-color: rgba(196, 160, 80, 0.32);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06),
              0 8px 40px rgba(0, 0, 0, 0.7);
}

/* ── Row — 40px left, 32px right ────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 32px 0 36px;
  box-sizing: border-box;
  height: 74px;
}

/* ── Logo — left ────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 1;   /* can shrink so it never pushes hamburger off screen */
  min-width: 0;
  overflow: hidden; /* clips text if viewport is extremely narrow */
}
/* Specificity 0,1,1 beats global img reset 0,0,1 */
img.nav-logo-img {
  display: block;
  width: 60px;
  height: 60px;
  min-width: 60px;
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 50%;          /* ROUND logo */
  flex-shrink: 0;
  border: 2px solid rgba(196,160,80,0.4);
  box-shadow: 0 0 18px rgba(196,160,80,0.25),
              0 2px 8px rgba(0,0,0,0.4);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.22;  /* small natural gap between name and subtitle */
  min-width: 0;
  overflow: hidden;
}
.nav-logo-primary {
  font-size: 22px;             /* 18 × 1.2 = ~22 */
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: 13px;             /* 11 × 1.2 = ~13 */
  font-weight: 500;
  color: rgba(196, 160, 80, 0.88);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Links — right side (margin-left:auto pushes them right) */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0px;                    /* 5% tighter */
  margin-left: auto;
  margin-right: 19px;          /* 5% tighter before Quick Call */
}
.nav-links a {
  position: relative;
  display: block;
  padding: 8px 12px;           /* 5% tighter horizontal */
  font-size: 15.5px;           /* 14px × 1.1 = 15.4 → 15.5 */
  font-weight: 500;
  color: rgba(215, 228, 250, 0.80);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.22s ease, background 0.22s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, #c4a050, #f0d070);
  border-radius: 2px;
  transition: left 0.28s ease, right 0.28s ease;
}
.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-links a:hover::after { left: 11px; right: 11px; }

/* Active nav link — current section highlight */
.nav-links a.active {
  color: #ffffff;
}
.nav-links a.active::after {
  left: 11px;
  right: 11px;
}

/* ── Quick Call — far right ─────────────────────────────── */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 3px 18px rgba(196,160,80,0.40),
                0 1px 0 rgba(255,255,255,0.22) inset;
  }
  50% {
    box-shadow: 0 4px 28px rgba(196,160,80,0.72),
                0 0 18px rgba(196,160,80,0.32),
                0 1px 0 rgba(255,255,255,0.22) inset;
  }
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #06090f;
  background: linear-gradient(135deg, #c4a050 0%, #f0d070 100%);
  box-shadow: 0 3px 18px rgba(196, 160, 80, 0.4),
              0 1px 0 rgba(255,255,255,0.22) inset;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ctaPulse 2.8s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nav-cta:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 160, 80, 0.62),
              0 1px 0 rgba(255,255,255,0.22) inset;
}

/* ── Mobile backdrop overlay ────────────────────────────── */
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8998;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
}
.nav-backdrop.open {
  display: block;
  animation: backdropIn 0.26s ease forwards;
}

/* ── Hamburger — desktop: hidden, mobile: flex ──────────── */
.nav-hamburger {
  display: none;           /* shown via media query */
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 44px;             /* large touch target */
  height: 44px;
  padding: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 2px;
  transition: background 0.2s ease;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.18); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: right center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger.open span:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
  transform-origin: center;
}

/* ── Mobile menu ────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(3, 8, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 160, 80, 0.15);
  padding: 0.8rem 5% 1.4rem;
  z-index: 9001;               /* above all page content */
}
.nav-mobile.open {
  display: block;
  animation: navSlideDown 0.28s ease forwards;
}
.nav-mobile-links {
  list-style: none;
  margin-bottom: 1rem;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(200, 215, 240, 0.07);
}
.nav-mobile-links li:last-child { border-bottom: none; }
.nav-mobile-links a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(215, 228, 250, 0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-links a:hover {
  color: #ffffff;
  padding-left: 14px;
}
.nav-mobile-ctas {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(196, 160, 80, 0.15);
}
/* Mobile Quick Call — separate class so it's never hidden by nav-cta rules */
.nav-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #06090f;
  background: linear-gradient(135deg, #c4a050 0%, #f0d070 100%);
  box-shadow: 0 3px 18px rgba(196, 160, 80, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-mobile-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 160, 80, 0.55);
}


/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-desc {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.78;
  color: var(--muted);
  margin-top: 1.1rem;
}
.about-desc + .about-desc { margin-top: 0.9rem; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(196, 160, 80, 0.10);
  border: 1px solid var(--border-gold);
}

.about-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.counter-card {
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.counter-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 0.9rem;
  opacity: 0.85;
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--platinum) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.stat-card {
  border-radius: var(--radius);
  padding: clamp(22px, 2.5vw, 36px) clamp(16px, 2vw, 28px);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation-delay: var(--delay, 0s);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.stat-icon {
  font-size: 26px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}


/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 30px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease,
              border-color 0.35s ease;
  animation-delay: var(--delay, 0s);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(196, 160, 80, 0.06) 0%,
    rgba(88, 188, 236, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(196, 160, 80, 0.28);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  margin-bottom: 1rem;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg,
    rgba(196, 160, 80, 0.15) 0%,
    rgba(88, 188, 236, 0.10) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(196,160,80,0.25) 0%, rgba(88,188,236,0.15) 100%);
}

.service-title {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}


/* ══════════════════════════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════════════════════════ */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease,
              opacity 0.35s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.project-card.hidden-card {
  display: none;
}

.project-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(2,11,26,0.9) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}
.project-status {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.project-status.completed { background: rgba(37,211,102,0.18); color: #25d366; border: 1px solid rgba(37,211,102,0.35); }
.project-status.ongoing   { background: rgba(88,188,236,0.18); color: #58bcec; border: 1px solid rgba(88,188,236,0.35); }
.project-status.upcoming  { background: rgba(196,160,80,0.18); color: var(--gold); border: 1px solid var(--border-gold); }

.project-info {
  padding: 1.4rem 1.6rem 1.6rem;
}
.project-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.project-loc {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.project-loc i { color: var(--gold); }
.project-detail {
  font-size: 12px;
  color: rgba(200,216,240,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s ease;
}
.project-cta:hover { gap: 0.6rem; }


/* ══════════════════════════════════════════════════════════
   PLOT SEARCH
   ══════════════════════════════════════════════════════════ */
.plot-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  padding: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 18px;
  position: relative;
}
.search-field-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.search-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.search-select option {
  background: var(--surface-2);
  color: var(--white);
}

.search-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #050a10;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,160,80,0.48);
}

.plot-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.plot-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.plot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}
.plot-card-img {
  height: 140px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.plot-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plot-card-status.available { background: rgba(37,211,102,0.2); color: #25d366; border:1px solid rgba(37,211,102,0.4); }
.plot-card-status.reserved  { background: rgba(196,160,80,0.2); color: var(--gold); border:1px solid var(--border-gold); }
.plot-card-status.sold      { background: rgba(255,80,80,0.15); color: #ff5050; border:1px solid rgba(255,80,80,0.3); }

.plot-card-body {
  padding: 1.1rem 1.3rem 1.3rem;
}
.plot-card-id {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.plot-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.plot-card-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.plot-card-loc i { color: var(--gold); }
.plot-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.plot-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.plot-meta-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plot-meta-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.plot-card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}
.plot-enquire-btn {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #050a10;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease;
}
.plot-enquire-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,160,80,0.4);
}
.plot-enquire-btn.disabled {
  background: var(--glass-bg);
  color: var(--muted);
  cursor: not-allowed;
}

.plot-no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.plot-no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.plot-no-results a {
  color: var(--gold);
  text-decoration: underline;
}


/* ══════════════════════════════════════════════════════════
   VISUALIZATION SECTION
   ══════════════════════════════════════════════════════════ */
.viz-section {
  overflow: hidden;
}
.viz-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%,
      rgba(88,188,236,0.07) 0%,
      transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%,
      rgba(196,160,80,0.06) 0%,
      transparent 60%);
  pointer-events: none;
}
.viz-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.viz-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.viz-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--platinum);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.viz-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--glass-bg2);
  border: 1px solid rgba(88,188,236,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.viz-feature:hover .viz-feature-icon {
  transform: translateY(-4px);
  background: rgba(88,188,236,0.12);
}


/* ══════════════════════════════════════════════════════════
   WHY INVEST
   ══════════════════════════════════════════════════════════ */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.invest-card {
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 36px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation-delay: var(--delay, 0s);
}
.invest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.invest-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1.2rem;
}
.invest-icon.gold {
  background: rgba(196,160,80,0.14);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.invest-icon.cyan {
  background: rgba(88,188,236,0.12);
  border: 1px solid rgba(88,188,236,0.25);
  color: var(--cyan);
}
.invest-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.invest-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   MASTER PLAN
   ══════════════════════════════════════════════════════════ */
.master-plan-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: stretch;
  overflow-x: clip;
}
.master-plan-visual {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-height: 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ld-available { background: #25d366; }
.ld-reserved  { background: var(--gold); }
.ld-sold      { background: #ff5050; }
.ld-green     { background: #2d8a3e; }
.ld-road      { background: #6b8fa8; }

.plan-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  color: var(--muted);
}
.plan-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(196,160,80,0.10);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.plan-placeholder p {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.plan-placeholder span {
  font-size: 14px;
  line-height: 1.65;
  max-width: 380px;
}

.master-plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  min-width: 0;
}
.mp-stat {
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.mp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.mp-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}


/* ══════════════════════════════════════════════════════════
   AMENITIES
   ══════════════════════════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: clamp(18px, 2vw, 28px) 1rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
  animation-delay: var(--delay, 0s);
  cursor: default;
}
.amenity-card:hover {
  transform: translateY(-5px);
  background: var(--glass-bg2);
  border-color: rgba(196,160,80,0.22);
}
.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196,160,80,0.14) 0%, rgba(88,188,236,0.10) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.amenity-card:hover .amenity-icon { transform: scale(1.12) rotate(-5deg); }
.amenity-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--platinum);
  text-align: center;
  line-height: 1.35;
}


/* ══════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  height: 270px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
/* Force uniform 1×1 — no complex spans so every row is perfectly balanced */
.gallery-item.tall,
.gallery-item.wide {
  grid-row: span 1;
  grid-column: span 1;
}
.gallery-item:hover { transform: scale(0.98); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,11,26,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem;
  gap: 0.35rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 18px;
  color: var(--white);
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.gallery-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(2,11,26,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  transition: background 0.2s ease;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.25s ease;
}
.lightbox-caption {
  font-size: 16px;
  font-weight: 600;
  color: var(--platinum);
  text-align: center;
}


/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-wrapper { position: relative; }

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-stars { color: var(--gold); font-size: 14px; display: flex; gap: 3px; }
.test-text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--platinum);
  flex: 1;
  font-style: italic;
}
.test-text::before { content: '"'; }
.test-text::after  { content: '"'; }
.test-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #050a10;
  flex-shrink: 0;
}
.test-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.test-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.15rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.test-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.test-btn:hover {
  background: var(--glass-bg2);
  border-color: var(--gold);
}
.test-dots {
  display: flex;
  gap: 0.5rem;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.test-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}


/* ══════════════════════════════════════════════════════════
   GOOGLE RATING
   ══════════════════════════════════════════════════════════ */
.rating-wrap {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  flex-wrap: wrap;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.rating-logo svg {
  width: 60px;
  height: 60px;
}
.rating-info { text-align: center; }
.rating-score {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.rating-stars {
  color: #FBBC05;
  font-size: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 0.35rem;
}
.rating-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}
.rating-cta { text-align: center; }
.rating-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--platinum);
  line-height: 1.5;
  margin-bottom: 1rem;
}


/* ══════════════════════════════════════════════════════════
   MAP
   ══════════════════════════════════════════════════════════ */
.map-embed-wrap {
  width: 90%;
  max-width: 1340px;
  margin: 2.5rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.map-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.map-embed-wrap iframe {
  display: block;
  filter: invert(92%) hue-rotate(180deg) saturate(0.75) brightness(0.88);
  pointer-events: none;
}

.map-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.map-info-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s var(--ease);
}
.map-info-card:hover { transform: translateY(-3px); }
.map-info-card > i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}
.map-info-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.map-info-card p,
.map-info-card a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  transition: color 0.2s ease;
}
.map-info-card a:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(196,160,80,0.30);
  background: var(--glass-bg2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196,160,80,0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(196,160,80,0.22);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}
.faq-answer:not([hidden]) {
  max-height: 300px;
  display: block;
}
.faq-answer p {
  padding: 0 1.6rem 1.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation-delay: var(--delay, 0s);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.blog-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-body {
  padding: 1.6rem 1.8rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.blog-cat {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,160,80,0.12);
  border: 1px solid var(--border-gold);
}
.blog-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.blog-excerpt {
  font-size: 14px;
  line-height: 1.70;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s ease;
}
.blog-link:hover { gap: 0.6rem; }


/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  overflow-x: clip;
}

.contact-form-wrap {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 44px);
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.22s ease, background 0.22s ease;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,216,240,0.30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(196,160,80,0.50);
  background: rgba(255,255,255,0.06);
}
.form-group select option {
  background: var(--surface-2);
  color: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: rgba(255,80,80,0.55);
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 0.5rem;
}
.form-actions > button,
.form-actions > a {
  flex: 1 1 180px;
  justify-content: center;
  font-size: 12px;
  padding: 12px 26px;
  gap: 0.45rem;
}
@keyframes formSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes formSuccessOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  color: #25d366;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 0 28px rgba(37,211,102,0.12);
  animation: formSuccessIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
.form-success i {
  font-size: 20px;
  flex-shrink: 0;
}
.form-success.fading-out {
  animation: formSuccessOut 0.5s ease forwards;
  pointer-events: none;
}
.form-error {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,80,80,0.10);
  border: 1px solid rgba(255,80,80,0.30);
  color: #ff6060;
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.contact-info-card {
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s var(--ease);
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-card > i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-info-card strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.contact-info-card > div {
  min-width: 0;   /* allow flex child to shrink below content width */
}
.contact-info-card a,
.contact-info-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.2s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-info-card a:hover { color: var(--gold); }

.contact-hours {
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.ch-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-hours p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  overflow-wrap: break-word;
}


/* ══════════════════════════════════════════════════════════
   SOCIAL MEDIA
   ══════════════════════════════════════════════════════════ */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  min-width: 130px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.social-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.social-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s var(--ease);
}
.social-link:hover .social-icon-wrap { transform: scale(1.12); }
.social-link span {
  font-size: 13px;
  font-weight: 600;
  color: var(--platinum);
  letter-spacing: 0.04em;
}

.social-facebook .social-icon-wrap { background: rgba(24,119,242,0.18); color: #1877f2; border:1px solid rgba(24,119,242,0.3); }
.social-facebook:hover { border-color: rgba(24,119,242,0.4); }

.social-instagram .social-icon-wrap { background: rgba(225,48,108,0.15); color: #e1306c; border:1px solid rgba(225,48,108,0.3); }
.social-instagram:hover { border-color: rgba(225,48,108,0.4); }

.social-linkedin .social-icon-wrap { background: rgba(10,102,194,0.18); color: #0a66c2; border:1px solid rgba(10,102,194,0.3); }
.social-linkedin:hover { border-color: rgba(10,102,194,0.4); }

.social-youtube .social-icon-wrap { background: rgba(255,0,0,0.14); color: #ff0000; border:1px solid rgba(255,0,0,0.25); }
.social-youtube:hover { border-color: rgba(255,0,0,0.4); }

.social-twitter .social-icon-wrap { background: rgba(200,216,240,0.10); color: var(--platinum); border:1px solid var(--border); }
.social-twitter:hover { border-color: rgba(200,216,240,0.3); }


/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════ */
.newsletter-wrap {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.newsletter-text .section-label { display: flex; }
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0.7rem 0;
}
.newsletter-text p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}
.newsletter-field-wrap {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter-field-wrap input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.22s ease;
}
.newsletter-field-wrap input::placeholder { color: rgba(200,216,240,0.30); }
.newsletter-field-wrap input:focus { border-color: rgba(196,160,80,0.50); }
.newsletter-note {
  font-size: 12px;
  color: rgba(200,216,240,0.38);
  margin-top: 0.75rem;
}
.newsletter-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 14px;
  color: #25d366;
}


/* ══════════════════════════════════════════════════════════
   AWARDS
   ══════════════════════════════════════════════════════════ */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
}
.award-card {
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  text-align: center;
  min-width: 180px;
  flex: 0 1 200px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}
.award-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.award-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.award-org {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.footer-top {
  padding-block: clamp(60px, 7vw, 100px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
img.footer-logo-img {
  display: block;
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-about {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.footer-social a:hover {
  background: rgba(196,160,80,0.14);
  color: var(--gold);
  border-color: var(--border-gold);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.footer-contact-row i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-row p,
.footer-contact-row a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  transition: color 0.2s ease;
}
.footer-contact-row a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.4rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(220,232,248,0.92);
}
.footer-credit {
  font-size: 12px;
  color: rgba(220,232,248,0.88);
}
.footer-credit a {
  color: rgba(220,232,248,0.95);
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════════════════ */
.float-btn {
  position: fixed;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, right 0.3s ease;
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.float-btn .float-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.35s var(--ease);
  white-space: nowrap;
}
.float-btn:hover .float-label { max-width: 120px; }
.float-btn:hover { transform: translateX(-4px); }

.float-call {
  bottom: 160px;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  box-shadow: 0 4px 24px rgba(196,160,80,0.45);
}
.float-call:hover { box-shadow: 0 8px 36px rgba(196,160,80,0.6); }

.float-wa {
  bottom: 92px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 24px rgba(37,211,102,0.38);
}
.float-wa:hover { box-shadow: 0 8px 36px rgba(37,211,102,0.52); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.38); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}
.float-wa { animation: float-pulse 2.8s ease-in-out infinite; }
.float-wa:hover { animation: none; }


/* ══════════════════════════════════════════════════════════
   CHATBOT WIDGET
   ══════════════════════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.chatbot-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: #050a10;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(196,160,80,0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 36px rgba(196,160,80,0.65);
}

.chatbot-icon-close { color: #050a10; }

.chatbot-panel {
  width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(196,160,80,0.18);
  animation: slideUp 0.35s var(--ease);
  max-height: 520px;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
  background: linear-gradient(135deg, rgba(196,160,80,0.18) 0%, rgba(88,188,236,0.08) 100%);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #050a10;
  flex-shrink: 0;
}
.chatbot-info { flex: 1; }
.chatbot-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.chatbot-status {
  font-size: 11px;
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.chatbot-status i { font-size: 7px; }
.chatbot-header-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  background: var(--glass-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.chatbot-header-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 160px;
  max-height: 240px;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chatbot-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  animation: msgIn 0.25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chatbot-msg.bot {
  background: var(--glass-bg2);
  border: 1px solid var(--border);
  color: var(--platinum);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chatbot-msg.user {
  background: linear-gradient(135deg, rgba(196,160,80,0.22) 0%, rgba(196,160,80,0.12) 100%);
  border: 1px solid var(--border-gold);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-quick-replies {
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
}
.qr-btn {
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(196,160,80,0.10);
  border: 1px solid var(--border-gold);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.qr-btn:hover {
  background: rgba(196,160,80,0.20);
  transform: translateY(-1px);
}

.chatbot-input-row {
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.chatbot-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.22s ease;
}
.chatbot-input-row input::placeholder { color: rgba(200,216,240,0.30); }
.chatbot-input-row input:focus { border-color: rgba(196,160,80,0.45); }
.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #050a10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.chatbot-send:hover { transform: scale(1.06); }


/* ══════════════════════════════════════════════════════════
   3D TILT CARD (JS-driven via inline CSS variables)
   ══════════════════════════════════════════════════════════ */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}


/* ══════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   ══════════════════════════════════════════════════════════ */
#scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg2);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scroll-top:hover { background: rgba(196,160,80,0.18); }


/* ══════════════════════════════════════════════════════════
   FOCUS STYLES (accessibility)
   ══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ══════════════════════════════════════════════════════════
   CARD MESH GLOW — vivid animated multi-colour gradient
   ══════════════════════════════════════════════════════════ */

@keyframes cardMeshGlow {
  0%   { background-position: 0%   0%;   box-shadow: 0 6px 32px rgba(0,0,0,0.50), 0 0 0 1px rgba(196,160,80,0.55), 0 0 32px rgba(196,160,80,0.26); }
  25%  { background-position: 100% 0%;   box-shadow: 0 6px 32px rgba(0,0,0,0.50), 0 0 0 1px rgba(88,188,236,0.55), 0 0 32px rgba(88,188,236,0.26); }
  50%  { background-position: 100% 100%; box-shadow: 0 6px 32px rgba(0,0,0,0.50), 0 0 0 1px rgba(155,89,182,0.55), 0 0 32px rgba(155,89,182,0.26); }
  75%  { background-position: 0%   100%; box-shadow: 0 6px 32px rgba(0,0,0,0.50), 0 0 0 1px rgba(88,188,236,0.55), 0 0 32px rgba(88,188,236,0.26); }
  100% { background-position: 0%   0%;   box-shadow: 0 6px 32px rgba(0,0,0,0.50), 0 0 0 1px rgba(196,160,80,0.55), 0 0 32px rgba(196,160,80,0.26); }
}

/* Apply animation to every card */
.service-card, .stat-card, .counter-card, .project-card,
.plot-card, .invest-card, .amenity-card, .testimonial-card,
.blog-card, .contact-info-card, .faq-item, .rating-wrap,
.mp-stat, .map-info-card, .contact-hours, .social-link, .award-card {
  animation: cardMeshGlow 8s ease infinite;
  animation-delay: calc(var(--delay, 0s) * -16);
}

/* ── Theme 1: Gold → Dark → Cyan  (positions 1, 4, 7 …) ── */
.service-card:nth-child(3n+1), .stat-card:nth-child(3n+1),
.counter-card:nth-child(3n+1), .project-card:nth-child(3n+1),
.plot-card:nth-child(3n+1),    .invest-card:nth-child(3n+1),
.amenity-card:nth-child(3n+1), .testimonial-card:nth-child(3n+1),
.blog-card:nth-child(3n+1),    .contact-info-card:nth-child(3n+1),
.faq-item:nth-child(3n+1),     .mp-stat:nth-child(3n+1),
.map-info-card:nth-child(3n+1),.social-link:nth-child(3n+1),
.award-card:nth-child(3n+1) {
  background: linear-gradient(135deg,
    rgba(196,160,80,0.60)  0%,
    rgba(230,145,55,0.38)  28%,
    rgba(8,15,30,0.82)     55%,
    rgba(88,188,236,0.54)  100%);
  background-size: 320% 320%;
}

/* ── Theme 2: Cyan → Dark → Purple (positions 2, 5, 8 …) ── */
.service-card:nth-child(3n+2), .stat-card:nth-child(3n+2),
.counter-card:nth-child(3n+2), .project-card:nth-child(3n+2),
.plot-card:nth-child(3n+2),    .invest-card:nth-child(3n+2),
.amenity-card:nth-child(3n+2), .testimonial-card:nth-child(3n+2),
.blog-card:nth-child(3n+2),    .contact-info-card:nth-child(3n+2),
.faq-item:nth-child(3n+2),     .mp-stat:nth-child(3n+2),
.map-info-card:nth-child(3n+2),.social-link:nth-child(3n+2),
.award-card:nth-child(3n+2) {
  background: linear-gradient(135deg,
    rgba(88,188,236,0.60)  0%,
    rgba(52,152,219,0.38)  28%,
    rgba(8,15,30,0.82)     55%,
    rgba(155,89,182,0.54)  100%);
  background-size: 320% 320%;
}

/* ── Theme 3: Purple → Dark → Gold (positions 3, 6, 9 …) ── */
.service-card:nth-child(3n),   .stat-card:nth-child(3n),
.counter-card:nth-child(3n),   .project-card:nth-child(3n),
.plot-card:nth-child(3n),      .invest-card:nth-child(3n),
.amenity-card:nth-child(3n),   .testimonial-card:nth-child(3n),
.blog-card:nth-child(3n),      .contact-info-card:nth-child(3n),
.faq-item:nth-child(3n),       .mp-stat:nth-child(3n),
.map-info-card:nth-child(3n),  .social-link:nth-child(3n),
.award-card:nth-child(3n) {
  background: linear-gradient(135deg,
    rgba(155,89,182,0.60)  0%,
    rgba(88,60,220,0.38)   28%,
    rgba(8,15,30,0.82)     55%,
    rgba(196,160,80,0.54)  100%);
  background-size: 320% 320%;
}

/* rating-wrap & contact-hours — gold/cyan two-tone (single elements) */
.rating-wrap,
.contact-hours {
  background: linear-gradient(135deg,
    rgba(196,160,80,0.52)  0%,
    rgba(8,15,30,0.82)     50%,
    rgba(88,188,236,0.48)  100%);
  background-size: 320% 320%;
}

/* Hover: freeze animation, bright gold border + deep lift */
.service-card:hover, .stat-card:hover, .counter-card:hover,
.project-card:hover, .plot-card:hover, .invest-card:hover,
.amenity-card:hover, .testimonial-card:hover, .blog-card:hover,
.contact-info-card:hover, .faq-item:hover, .rating-wrap:hover,
.mp-stat:hover, .map-info-card:hover, .contact-hours:hover,
.social-link:hover, .award-card:hover {
  animation: none;
  box-shadow:
    0 22px 60px rgba(0,0,0,0.58),
    0 0 0 1px rgba(196,160,80,0.82),
    0 0 50px rgba(196,160,80,0.38),
    0 0 90px rgba(196,160,80,0.12);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Grids */
  .stats-grid        { grid-template-columns: repeat(3, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .projects-grid     { grid-template-columns: repeat(2, 1fr); }
  .plot-results      { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid    { grid-template-columns: repeat(4, 1fr); }
  .invest-grid       { grid-template-columns: repeat(2, 1fr); }
  .map-info-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .master-plan-wrap  { grid-template-columns: 1fr; align-items: start; }
  .master-plan-stats { grid-template-columns: repeat(3, 1fr); grid-template-rows: unset; grid-auto-rows: auto; min-height: 0; }
  .contact-grid      { grid-template-columns: 1fr; }

  /* Nav: collapse to hamburger at tablet/laptop */
  .nav-links              { display: none !important; }
  .nav-cta                { display: none !important; }
  .nav-hamburger          { display: flex !important; }
  /* Lock right padding so hamburger gap stays consistent as screen narrows */
  .nav-inner              { padding-right: 20px; padding-left: 28px; }
  /* Show subtitle at tablet — visible, stays on one line */
  .nav-logo-sub           { font-size: 12.5px; white-space: nowrap; }
  .nav-logo-primary       { font-size: 21px; }

  /* Testimonials: 2 visible */
  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  /* Gallery: stays 3 cols on tablet, uniform height */
  .gallery-item { height: 240px; }

  /* Float buttons: slightly left to not crowd nav */
  .float-btn   { right: 18px; }
  .float-call  { bottom: 162px; }
  .float-wa    { bottom: 106px; }
  .chatbot-widget { right: 18px; bottom: 22px; }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero tablet — smooth continuation from phone sizes, no cliff at 481px */
  .hero-content  { width: 92vw; }
  .hero-headline { font-size: clamp(28px, 9.5vw, 54px); line-height: 1.06; }
  .hero-company  { font-size: clamp(15px, 4.5vw, 30px); }
  .hero-stats    { font-size: clamp(12px, 3.0vw, 17px); }
  .hero-tagline  { font-size: clamp(14px, 3.5vw, 20px); }
  .hero-eyebrow  { white-space: nowrap; }

  /* Grids */
  .about-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-counters  { order: -1; }
  /* About — centre label/heading/badges/CTA on stacked layout */
  .about-text      { text-align: center; }
  .about-desc      { text-align: left; }   /* keep paragraphs left — long centred text hurts readability */
  .about-badges    { justify-content: center; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid   { grid-template-columns: 1fr; }
  .plot-results    { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid  { grid-template-columns: repeat(3, 1fr); }
  .invest-grid     { grid-template-columns: 1fr; }
  .blog-grid       { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .map-info-grid      { grid-template-columns: repeat(2, 1fr); }
  .master-plan-stats  { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .newsletter-wrap { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Nav logo: subtitle one line on phone */
  .nav-logo-sub {
    display: block !important;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
  .nav-logo-primary { font-size: 18px; }
  .nav-inner        { height: 66px; }

  /* Testimonials: 1 visible, full width */
  .testimonial-card { flex: 0 0 100%; }

  /* Gallery: 2 cols — last item spans full width so final row is never orphaned */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .gallery-grid .gallery-item:last-child { grid-column: 1 / -1; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Plot search: vertical stack */
  .plot-search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    gap: 0.25rem;
  }
  .search-field { padding: 10px 14px; min-width: 0; }
  .search-divider { width: 100%; height: 1px; margin-block: 2px; }
  .search-btn { border-radius: 8px; width: 100%; justify-content: center; }

  /* Float buttons — space above chatbot toggle (58px at bottom 22px = top 80px) */
  .float-btn  { right: 16px; padding: 11px 16px; }
  .float-call { bottom: 164px; }
  .float-wa   { bottom: 110px; }
  .chatbot-widget { right: 16px; bottom: 20px; }
  .chatbot-panel  { width: min(320px, calc(100vw - 32px)); }

  /* Ratings */
  .rating-wrap { gap: 1.5rem; }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 480px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* ── Hero phone overrides — large 4-line headline, 70-80% screen coverage ── */
  #hero-overlay  { align-items: flex-start; padding-top: 84px; padding-bottom: 20px; }
  .hero-content  { width: 93vw; gap: clamp(14px, 2.6vh, 20px); }
  .hero-headline { font-size: clamp(34px, 11.2vw, 52px); line-height: 1.06; }
  .hero-company  { font-size: clamp(15px, 5.0vw, 25px); }
  .hero-stats    { font-size: clamp(12px, 3.4vw, 16px); }
  .hero-tagline  { font-size: clamp(14px, 4.2vw, 18px); }
  .cta           { padding: 15px 22px; font-size: 11px; }
  /* eyebrow — one line, narrower letter-spacing so text fits within 93vw */
  .hero-eyebrow  { white-space: nowrap; letter-spacing: 0.12em; }

  /* Grids */
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .plot-results   { grid-template-columns: 1fr; }
  .map-info-grid  { grid-template-columns: 1fr; }
  /* Section headings — scale with vw so long headings stay one line */
  .section-heading { font-size: clamp(14px, 4.5vw, 22px); }

  /* About section phone */
  .about-counters { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .counter-card   { padding: 22px 14px; }
  .counter-num    { font-size: clamp(26px, 6.8vw, 34px); }
  .counter-label  { font-size: 11px; }

  /* Social: 2 per row */
  .social-links { gap: 0.7rem; }
  .social-link  { flex: 1 1 calc(50% - 0.35rem); min-width: 0; padding: 1.2rem 0.9rem; }

  /* Awards: 2 per row */
  .awards-grid  { gap: 0.75rem; }
  .award-card   { flex: 1 1 calc(50% - 0.375rem); min-width: 0; padding: 1.5rem 1.2rem; }

  /* Gallery: 1 col on small phone */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .gallery-grid .gallery-item:last-child { grid-column: span 1; }

  /* Nav: compact on small phones */
  .nav-logo-primary { font-size: 16px; }
  .nav-logo-sub     { font-size: 11.5px; letter-spacing: 0; }
  .nav-inner        { padding: 0 20px 0 12px; height: 62px; }
  img.nav-logo-img  { width: 42px; height: 42px; min-width: 42px; max-width: 42px; max-height: 42px; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Rating section */
  .rating-wrap  { flex-direction: column; gap: 1.2rem; text-align: center; padding: 28px 24px; }
  .rating-stars { justify-content: center; }
  .rating-logo svg { width: 52px; height: 52px; }
  .rating-cta .btn-primary { width: 100%; justify-content: center; }

  /* Lightbox */
  .lightbox     { padding: 0.75rem; }
  .lightbox-img { height: 260px; }
  .lightbox-nav { display: none; }

  /* Chatbot */
  .chatbot-panel { width: calc(100vw - 36px); }

  /* Newsletter */
  .newsletter-field-wrap { flex-direction: column; }
  .newsletter-field-wrap input { min-width: 0; }

  /* Float buttons: icon-only on small screens */
  .float-btn { padding: 13px 14px; }
  .float-btn .float-label { display: none; }
  .float-call { bottom: 148px; }
  .float-wa   { bottom: 96px; }
  .chatbot-widget { right: 14px; bottom: 18px; }
  .chatbot-panel  { width: calc(100vw - 28px); }

  .master-plan-stats { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 90px; }

  /* Reduce section vertical padding on small phones */
  .section { padding-block: clamp(28px, 6vw, 52px); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (≤ 360px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  /* Hero very small phone */
  .hero-headline { font-size: clamp(30px, 10vw, 40px); line-height: 1.06; }
  .hero-company  { font-size: clamp(13px, 4.5vw, 20px); }
  .hero-tagline  { font-size: 13px; line-height: 1.68; }

  .nav-logo-primary { font-size: 15px; }
  .nav-logo-sub     { font-size: 11px; letter-spacing: 0; }
  .nav-inner        { padding: 0 20px 0 10px; }
  img.nav-logo-img  { width: 36px; height: 36px; min-width: 36px; max-width: 36px; max-height: 36px; }
  .section-heading  { font-size: clamp(13px, 4.5vw, 18px); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .amenities-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .counter-card     { padding: 18px 14px; }
  .counter-num      { font-size: 30px; }
  .stat-num         { font-size: 26px; }
  .plot-results     { grid-template-columns: 1fr; }
  .social-link      { flex: 1 1 100%; }
  .award-card       { flex: 1 1 100%; }
  .contact-grid     { gap: 1.5rem; }

  /* Slow mesh glow on mobile — easier on battery/GPU */
  .service-card, .stat-card, .counter-card, .project-card,
  .plot-card, .invest-card, .amenity-card, .testimonial-card,
  .blog-card, .contact-info-card, .faq-item, .rating-wrap,
  .mp-stat, .map-info-card, .contact-hours, .social-link, .award-card {
    animation-duration: 13s;
  }
}


/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .float-wa { animation: none; }
}


/* ══════════════════════════════════════════════════════════
   HERO VERTICAL BALANCE — compensates for navbar so the
   content is centred in the VISIBLE hero area, not the
   full 100svh.  Overrides hero.css padding-bottom bias
   that was pushing text too close to the navbar.
   Only applies above 480 px (phone handled separately).
   ══════════════════════════════════════════════════════════ */
@media (min-width: 481px) {
  #hero-overlay {
    /* justify-content: flex-start anchors content to padding-top so the
       eyebrow can never overflow above the navbar on any screen height.
       padding-top ≈ navbar height so the eyebrow always starts just below it. */
    padding-top:    clamp(74px, 9vh, 112px);
    padding-bottom: clamp(10px, 2vh,  30px);
  }
}


/* ══════════════════════════════════════════════════════════
   HERO READABILITY — stats + tagline contrast boost
   The canvas background shifts between dark sky and bright
   clouds.  Without a shadow/halo the light-coloured stats
   and gradient tagline wash out on bright frames.
   ══════════════════════════════════════════════════════════ */

/* Stats: solid text — text-shadow works directly */
.hero-stats {
  font-weight: 700;
  color: rgba(235, 243, 255, 1);
  text-shadow:
    0 1px 14px rgba(2, 11, 26, 0.95),
    0 0  28px rgba(2, 11, 26, 0.65);
}

/* Tagline: gradient background-clip text — use filter: drop-shadow
   so the shadow wraps the painted gradient pixels, not transparent fill */
.hero-tagline {
  font-weight: 500;
  filter:
    drop-shadow(0 1px 18px rgba(2, 11, 26, 0.95))
    drop-shadow(0 0   8px rgba(2, 11, 26, 0.75));
}
