/* ==========================================================================
   Rosewood by Trimont — Flat UI Minimalism (No Border Version)
   Primary:   linear-gradient(478deg, #a17766 → #e7bda6)
   Secondary: #2d3445
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── TOKENS ────────────────────────────────────────────────────────────── */
:root {
  --grad: linear-gradient(478deg, #a17766 0%, #cea48e 30%, #d6ac96 50%, #eac0a8 70%, #e7bda6 100%);
  --p1: #a17766;
  --p2: #cea48e;
  --p3: #d6ac96;
  --p4: #eac0a8;
  --sec: #2d3445;
  --sec-d: #1e2435;
  --sec-l: #3c4560;
  --white: #ffffff;
  --off: #f8f5f2;
  --off-dark: #242a38;
  --muted: #8c8680;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --t: 0.2s ease;
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 !important; outline: none; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--sec); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.15; color: var(--sec); }
.eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--p1);
  margin-bottom: 0.75rem;
}
.on-dark .eyebrow, .eyebrow.light { color: var(--p4); }

/* ─── LAYOUT & SECTIONS ─────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.sec  { padding: 5.5rem 0; }
.bg-off  { background: var(--off); }
.bg-sec  { background: var(--sec); }
.bg-secd { background: var(--sec-d); }
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4 { color: var(--white); }
.on-dark p, .on-dark li, .on-dark span { color: rgba(255,255,255,0.65); }
.tc { text-align: center; }
.sec-hd { font-size: clamp(1.75rem,2.8vw,2.5rem); margin-bottom: 0.75rem; }
.sec-sub { font-size: 0.9375rem; color: var(--muted); max-width: 580px; margin: 0 auto 3rem; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 0;
  transition: filter var(--t), transform var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: var(--sec-d); }
.btn-primary:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-sec { background: var(--sec); color: var(--white); }
.btn-sec:hover { background: var(--sec-l); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--sec-d); }
.btn-line { background: var(--sec); color: var(--white); }
.btn-line:hover { background: var(--grad); color: var(--sec-d); }
.btn-full { width: 100%; }

/* ─── SCROLL PROGRESS BAR ──────────────────────────────────────────────── */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad);
  z-index: 1000;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(234, 192, 168, 0.6);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1rem 0;
  background: rgba(10, 13, 20, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(234, 192, 168, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 13, 20, 0.97);
  border-bottom-color: rgba(234, 192, 168, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  padding: 0 2.5rem;
}

/* Nav Split Groups */
.nav-left-group,
.nav-right-group {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-left-group  { justify-content: flex-start; }
.nav-right-group { justify-content: flex-end; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-decoration: none;
}

/* Animated gold underline */
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(234, 192, 168, 0.5);
  transition: width 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--p4);
}
.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

/* Active dot indicator */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--p3);
  box-shadow: 0 0 5px rgba(214, 172, 150, 0.8);
}

/* ─── LOGO BOX ──────────────────────────────────────────────────────────── */
.logo-box {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem 1.1rem 0.45rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(234, 192, 168, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.04);
}
.logo-box:hover {
  background: rgba(234, 192, 168, 0.07);
  border-color: rgba(234, 192, 168, 0.4);
  box-shadow: 0 4px 20px rgba(161, 119, 102, 0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.logo-svg {
  height: 28px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .logo-svg { height: 24px; }

.logo-divider {
  width: 1px;
  height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(234, 192, 168, 0.4), transparent);
}

.logo-tag {
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--p4);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
}

.ft-logo-svg {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

/* ─── NAV RIGHT ACTIONS ─────────────────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--grad);
  color: var(--sec-d);
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(161, 119, 102, 0.32);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(161, 119, 102, 0.45);
}

.nav-tel {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.5px;
  transition: all 0.22s ease;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.48rem 0.9rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.nav-tel i { color: var(--p4); font-size: 0.85rem; }
.nav-tel:hover {
  color: var(--p4);
  border-color: rgba(234, 192, 168, 0.45);
  background: rgba(234, 192, 168, 0.09);
}

/* ─── HAMBURGER BUTTON — Animated Morph ────────────────────────────────── */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 192, 168, 0.22);
  width: 44px;
  height: 44px;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(234, 192, 168, 0.12);
  border-color: rgba(234, 192, 168, 0.4);
}

.burger-bar {
  display: block;
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  left: 50%;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity  0.25s ease,
              top      0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger-bar:nth-child(1) { top: calc(50% - 6px); transform: translateX(-50%); }
.burger-bar:nth-child(2) { top: calc(50% - 0.75px); transform: translateX(-50%); }
.burger-bar:nth-child(3) { top: calc(50% + 5px); transform: translateX(-50%); }

/* Open state — morphs to X */
.nav-toggle.is-open .burger-bar:nth-child(1) {
  top: calc(50% - 0.75px);
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.is-open .burger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.nav-toggle.is-open .burger-bar:nth-child(3) {
  top: calc(50% - 0.75px);
  transform: translateX(-50%) rotate(-45deg);
}

/* ─── MOBILE DRAWER ─────────────────────────────────────────────────────── */
/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: url('../assets/images/hero/hero_bg.jpg') center/cover no-repeat;
}
.hero-mask {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,18,26,0.5) 0%, rgba(14,18,26,0.92) 75%, var(--sec-d) 100%);
}
.hero-body { position: relative; z-index: 2; width: 100%; }
.hero-content { padding: 0 0 3.5rem; max-width: 640px; }
.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem); color: var(--white);
  margin-bottom: 1.25rem; line-height: 1.1;
}
.hero-sub { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* Stats Bar — Pure block contrast, no border */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--sec-d);
}
.stat {
  padding: 2rem 1.5rem; text-align: center;
  background: rgba(255,255,255,0.02);
}
.stat:nth-child(even) { background: rgba(0,0,0,0.15); }
.stat-n {
  font-family: var(--font-h); font-size: 2.25rem; font-weight: 700;
  color: var(--p4); line-height: 1; margin-bottom: 0.375rem;
}
.stat-l {
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: rgba(255,255,255,0.4);
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text > p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }

.pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.pillar {
  padding: 1.5rem;
  background: var(--off);
}
.pillar h4 {
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.75px;
  color: var(--sec); margin-bottom: 0.4rem;
}
.pillar p { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }

/* ─── HIGHLIGHTS (USP) — Seamless flat blocks ────────────────────────────── */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.usp-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  transition: background var(--t), transform var(--t);
}
.usp-card:hover { background: var(--sec); color: var(--white); }
.usp-card:hover .usp-ico { color: var(--p4); }
.usp-card:hover h3 { color: var(--white); }
.usp-card:hover p { color: rgba(255,255,255,0.7); }

.usp-ico {
  display: block;
  font-size: 32px;
  color: var(--p1);
  margin-bottom: 1.25rem;
  line-height: 1;
  transition: color var(--t);
}
svg.usp-ico {
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 1.25rem;
  overflow: visible;
}
svg.usp-ico path,
svg.usp-ico circle,
svg.usp-ico rect,
svg.usp-ico polyline,
svg.usp-ico line {
  stroke: var(--p1);
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--t);
}
.usp-card:hover svg.usp-ico path,
.usp-card:hover svg.usp-ico circle,
.usp-card:hover svg.usp-ico rect {
  stroke: var(--p4);
}
.usp-card h3 {
  font-family: var(--font-b); font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; color: var(--sec);
  transition: color var(--t);
}
.usp-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; transition: color var(--t); }

/* ─── RESIDENCES — Solid background blocks ───────────────────────────────── */
.utabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.utab {
  padding: 0.875rem 1.75rem; background: var(--off);
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.75px;
  color: var(--muted);
  transition: color var(--t), background var(--t);
}
.utab.active,.utab:hover { color: var(--sec-d); background: var(--grad); }

.unit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ucard { background: var(--off); display: flex; flex-direction: column; transition: background var(--t); }
.ucard:hover { background: #f0eae4; }
.ucard-hd { background: var(--sec); padding: 1.5rem; }
.ucard-hd h3 { font-family: var(--font-h); font-size: 1.25rem; color: var(--p4); margin-bottom: 0.25rem; }
.ucard-hd span { font-size: 0.8125rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.ucard-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.fp-img { width: 100%; height: 180px; object-fit: cover; }
.spec-list { list-style: none; }
.spec-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.625rem 0; font-size: 0.8125rem;
}
.spec-list .lbl { color: var(--muted); }
.spec-list .val { font-weight: 700; color: var(--sec); }

/* ─── AMENITIES — Flat tiles ─────────────────────────────────────────────── */
.amen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.amen-card {
  padding: 2.25rem 1.5rem; text-align: center;
  background: var(--white); transition: background var(--t);
}
.amen-card:hover { background: var(--sec); }
.amen-card:hover .amen-ico { color: var(--p4); }
.amen-card:hover h4 { color: var(--white); }
.amen-card:hover p { color: rgba(255,255,255,0.7); }

.amen-ico {
  display: block;
  font-size: 30px;
  width: 30px;
  height: 30px;
  color: var(--p1);
  margin: 0 auto 1rem;
  line-height: 1;
  transition: color var(--t);
}
svg.amen-ico {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 1rem;
  overflow: visible;
}
svg.amen-ico path,
svg.amen-ico circle,
svg.amen-ico rect,
svg.amen-ico polyline,
svg.amen-ico line {
  stroke: var(--p1);
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--t);
}
.amen-card:hover svg.amen-ico path,
.amen-card:hover svg.amen-ico circle,
.amen-card:hover svg.amen-ico rect {
  stroke: var(--p4);
}
.amen-card h4 {
  font-family: var(--font-b); font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--sec); margin-bottom: 0.35rem;
  transition: color var(--t);
}
.amen-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; transition: color var(--t); }

/* ─── GALLERY ───────────────────────────────────────────────────────────── */
/* ─── GALLERY ───────────────────────────────────────────────────────────── */
.g-tabs {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.g-tab {
  padding: 0.65rem 1.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all var(--t);
}
.g-tab.active, .g-tab:hover {
  color: var(--sec-d);
  background: var(--grad);
  border-color: var(--p1);
  box-shadow: 0 6px 18px rgba(195,164,109,0.25);
}

.g-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--sec-d);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.g-item.g-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
@media (max-width: 900px) {
  .g-grid { grid-template-columns: repeat(2,1fr); }
  .g-item.g-featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .g-grid { grid-template-columns: 1fr; }
  .g-item.g-featured { grid-column: span 1; aspect-ratio: 16/10; }
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}
.g-item:hover {
  border-color: rgba(195,164,109,0.5);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.g-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14,18,26,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(195,164,109,0.35);
  color: var(--p4);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
  transition: transform var(--t);
}
.g-item:hover .g-badge {
  transform: translateY(-2px);
}

.g-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(14,18,26,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--t), transform var(--t), background var(--t);
  z-index: 2;
}
.g-item:hover .g-zoom-btn {
  opacity: 1;
  transform: scale(1);
}
.g-zoom-btn:hover {
  background: var(--p1);
  color: var(--sec-d);
}

.g-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,26,0) 40%, rgba(14,18,26,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 1;
  opacity: 0.85;
  transition: opacity var(--t);
}
.g-item:hover .g-cap {
  opacity: 1;
}
.g-cap span {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.g-cap small {
  font-size: 0.75rem;
  color: var(--p3);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,10,15,0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lb-box {
  position: relative;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.lb-caption {
  margin-top: 1rem;
  font-family: var(--font-b);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-align: center;
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  z-index: 2001;
}
.lb-close:hover {
  background: var(--p1);
  color: var(--sec-d);
}

/* ─── LOCATION ──────────────────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
/* Google Place UI Card — Flat Minimalist Design */
.google-place-card {
  background: var(--sec-d);
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.google-place-card.reveal,
.google-place-card.reveal.active {
  box-shadow: none !important;
  border: none !important;
}
.gp-header {
  padding: 1.75rem;
  background: var(--off-dark);
  border-bottom: none !important;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gp-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.gp-ico-wrap {
  width: 48px;
  height: 48px;
  background: var(--grad);
  color: var(--sec-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: none !important;
}
.gp-info h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}
.gp-addr {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}
.gp-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}
.gp-score {
  font-weight: 700;
  color: var(--p4);
}
.gp-stars {
  color: var(--p4);
  letter-spacing: 2px;
}
.gp-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
.gp-tag {
  background: rgba(234, 192, 168, 0.12);
  color: var(--p4);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none !important;
}
.gp-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.gp-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
}
.gp-map-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
}
.gp-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none !important;
  filter: none;
}
.gp-pin-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(30, 36, 53, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: none !important;
  box-shadow: none !important;
}
.gp-pin-overlay i {
  color: var(--p4);
}
.loc-text > p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.loc-list { display: flex; flex-direction: column; gap: 0.75rem; }
.loc-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 1.5rem; background: var(--off);
  transition: background var(--t);
}
.loc-item:hover { background: #f0eae4; }
.loc-ico { color: var(--p1); flex-shrink: 0; margin-top: 2px; font-size: 22px; line-height: 1; }
.loc-item h4 { font-family: var(--font-b); font-size: 0.875rem; font-weight: 700; margin-bottom: 0.2rem; }
.loc-item p  { font-size: 0.8rem; color: var(--muted); }

/* ─── TRUST — Solid cards ───────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.trust-card {
  padding: 2.75rem 2rem;
  background: var(--off-dark);
  transition: background var(--t);
}
.trust-card:hover { background: rgba(255,255,255,0.06); }
.trust-tag {
  display: inline-block; padding: 0.35rem 0.85rem; margin-bottom: 1.25rem;
  background: var(--grad); color: var(--sec-d);
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}
.trust-card h3 { font-family: var(--font-b); font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 0.625rem; }
.trust-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── ENQUIRY FORM ──────────────────────────────────────────────────────── */
.form-card {
  max-width: 760px; margin: 0 auto;
  background: var(--white); padding: 3.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fg { display: flex; flex-direction: column; }
.fg.span2 { grid-column: span 2; }
.fg label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--sec); margin-bottom: 0.4rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.9375rem 1.125rem;
  font-family: var(--font-b); font-size: 0.9375rem;
  background: var(--off); color: var(--sec);
  border-radius: 0; appearance: none;
  transition: background var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { background: #f0eae4; }
.fg .err { font-size: 0.75rem; color: #c0392b; margin-top: 0.35rem; display: none; }
.fg.invalid input, .fg.invalid select { background: #fdf0ed; }
.fg.invalid .err { display: block; }

.form-ok { display: none; text-align: center; padding: 3rem 2rem; }
.form-ok.show { display: block; }
.ok-ico {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad); color: var(--sec-d); font-size: 1.75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.form-ok h3 { font-size: 1.625rem; margin-bottom: 0.75rem; }
.form-ok p  { font-size: 0.9375rem; color: var(--muted); max-width: 460px; margin: 0 auto 1.5rem; }

/* ─── FOOTER (Rich Feature-Packed) ────────────────────────────────────── */
footer {
  background: var(--sec-d); color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 2.5rem;
}

/* VIP Newsletter Banner */
.ft-newsletter {
  background: var(--off-dark);
  padding: 2.5rem 3rem;
  margin-bottom: 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.ft-news-text h3 {
  font-family: var(--font-h); font-size: 1.5rem; color: var(--white); margin-bottom: 0.35rem;
}
.ft-news-text p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.ft-news-form { display: flex; gap: 0.5rem; flex-shrink: 0; width: 100%; max-width: 440px; }
.ft-news-form input {
  flex-grow: 1; padding: 0.875rem 1.125rem; font-size: 0.875rem;
  background: rgba(255,255,255,0.08); color: var(--white);
}
.ft-news-form input::placeholder { color: rgba(255,255,255,0.4); }
.ft-news-form input:focus { background: rgba(255,255,255,0.14); }

/* Main 5-Column Footer Grid */
.ft-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr 1fr; gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.ft-logo-name { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.ft-logo-by { font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: var(--p3); margin-top: 3px; }
.ft-brand p { margin-top: 1rem; font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

.spv-badge {
  margin-top: 1.25rem; padding: 0.875rem;
  background: rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 0.2rem;
}
.spv-badge span { font-size: 0.75rem; font-weight: 700; color: var(--p4); }
.spv-badge small { font-size: 0.6875rem; color: rgba(255,255,255,0.4); font-family: monospace; }

.ft-h { color: var(--white); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }

.ft-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.ft-links a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color var(--t), transform var(--t);
}
.ft-links a i {
  font-size: 0.875rem; color: var(--p3); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; transition: transform var(--t);
}
.ft-links a:hover { color: var(--white); }
.ft-links a:hover i { transform: translateX(3px); }

.ft-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.8125rem; }
.ft-contact p {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.6rem; align-items: center;
  color: rgba(255,255,255,0.6); line-height: 1.4;
}
.ft-contact i {
  font-size: 1.05rem; color: var(--p3);
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; line-height: 1;
}
.ft-contact a { color: inherit; transition: color var(--t); }
.ft-contact a:hover { color: var(--p4); }

.ft-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.ft-hours-item {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.6rem; align-items: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.85); line-height: 1.4;
}
.ft-hours-item i {
  color: var(--p3); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; line-height: 1;
}
.ft-hours .h-note {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.6rem; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.35;
}
.ft-hours .h-note i {
  font-size: 0.875rem; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; line-height: 1;
}

.ft-socials { display: flex; gap: 0.625rem; }
.ft-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.125rem;
  transition: background var(--t), color var(--t);
}
.ft-socials a:hover { background: var(--grad); color: var(--sec-d); }

/* RERA Box */
.ft-rera-box {
  background: rgba(255,255,255,0.025);
  padding: 1.5rem 2rem; margin-bottom: 2.5rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.rera-pill {
  flex-shrink: 0; padding: 0.4rem 0.875rem; background: var(--grad); color: var(--sec-d);
  font-size: 0.625rem; font-weight: 700; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 0.4rem;
}
.rera-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* Bottom Bar */
.ft-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.ft-copy { text-align: left; }
.ft-bottom-links { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.ft-bottom-links a { color: rgba(255,255,255,0.45); transition: color var(--t); }
.ft-bottom-links a:hover { color: var(--p4); }
.ft-bottom-links span { color: rgba(255,255,255,0.2); }
.ft-dev-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.875rem 0.35rem 0.6rem;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
  transition: background var(--t), color var(--t), transform var(--t);
  box-shadow: inset 0 0 0 1px rgba(161,119,102,0.35);
  white-space: nowrap;
}
.ft-dev-badge i { font-size: 0.85rem; color: var(--p2); flex-shrink: 0; }
.ft-dev-badge strong { color: var(--p4); font-weight: 600; }
.ft-dev-badge:hover {
  background: rgba(161,119,102,0.12);
  color: rgba(255,255,255,0.75);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(161,119,102,0.6), 0 4px 14px rgba(161,119,102,0.18);
}

@media (max-width: 1100px) {
  .ft-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .ft-newsletter { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .ft-news-form { max-width: 100%; }
}
@media (max-width: 768px) {
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ft-rera-box { flex-direction: column; gap: 1rem; }
  .ft-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .ft-copy { text-align: center; }
}


/* ─── MOBILE BAR ────────────────────────────────────────────────────────── */
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 800; }
.mob-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mob-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.125rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none;
}
.mob-btn.call { background: var(--sec); color: var(--white); }
.mob-btn.enq  { background: var(--grad); color: var(--sec-d); }

/* ─── WA FLOAT ──────────────────────────────────────────────────────────── */
.wa {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  z-index: 799; transition: transform var(--t), background var(--t);
  color: #fff; font-size: 26px; line-height: 1;
}
.wa:hover { background: #1ebe5b; transform: translateY(-2px); }

/* ─── MASTER PLAN / SITE LAYOUT ─────────────────────────────────────────── */
.mp-banner {
  background: var(--sec-d);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mp-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mp-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(234, 192, 168, 0.12);
  color: var(--p4);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.mp-banner-info h3 {
  font-family: var(--font-h);
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.mp-banner-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  max-width: 680px;
  margin: 0;
}
.mp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mp-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mp-stat-val {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--p4);
  line-height: 1;
}
.mp-stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
}

.mp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.mp-tab {
  background: var(--off);
  color: var(--sec-d);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.65rem 1.4rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t);
}
.mp-tab:hover, .mp-tab.active {
  background: var(--grad);
  color: var(--sec-d);
  box-shadow: 0 6px 18px rgba(161, 119, 102, 0.25);
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.mp-card {
  background: var(--off);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform var(--t), background var(--t), box-shadow var(--t);
}
.mp-card:hover {
  transform: translateY(-4px);
  background: var(--sec-d);
  box-shadow: 0 12px 32px rgba(14, 18, 26, 0.15);
}
.mp-card:hover h4 {
  color: var(--white);
}
.mp-card:hover .mp-cat {
  color: var(--p4);
}
.mp-ico-box {
  width: 44px;
  height: 44px;
  background: rgba(161, 119, 102, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.mp-card:hover .mp-ico-box {
  background: var(--grad);
}
svg.mp-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
svg.mp-ico path,
svg.mp-ico circle,
svg.mp-ico rect,
svg.mp-ico polyline,
svg.mp-ico line,
svg.mp-ico polygon {
  stroke: var(--p1);
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--t);
}
.mp-card:hover svg.mp-ico path,
.mp-card:hover svg.mp-ico circle,
.mp-card:hover svg.mp-ico rect,
.mp-card:hover svg.mp-ico polyline,
.mp-card:hover svg.mp-ico line,
.mp-card:hover svg.mp-ico polygon {
  stroke: var(--sec-d);
}
.mp-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mp-card h4 {
  font-family: var(--font-b);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sec-d);
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: color var(--t);
}
.mp-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--t);
}

/* ─── MOBILE DRAWER ─────────────────────────────────────────────────────── */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(8, 10, 16, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 910; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 90vw); height: 100dvh;
  background: linear-gradient(160deg, #0e1220 0%, #121828 100%);
  z-index: 920;
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
/* Decorative side accent */
.drawer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--grad);
  opacity: 0.7;
}
.drawer.open { transform: translateX(0); }

/* Drawer Head */
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.drawer-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.drawer-logo { height: 30px; width: auto; }
.drawer-brand-text { display: flex; flex-direction: column; gap: 1px; }
.drawer-brand-name {
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: var(--white); line-height: 1; letter-spacing: 0.5px;
}
.drawer-brand-sub {
  font-family: var(--font-b); font-size: 0.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--p4);
}

.drawer-x {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.drawer-x:hover { background: var(--grad); color: var(--sec-d); border-color: transparent; }
.drawer-x svg line { stroke: currentColor; }

/* Drawer Nav */
.drawer-nav { flex: 1; overflow-y: auto; padding: 1rem 1rem 0.5rem; scrollbar-width: none; }
.drawer-nav::-webkit-scrollbar { display: none; }

.drawer-links { list-style: none; display: flex; flex-direction: column; gap: 3px; }

/* Staggered entry animation */
.drawer.open .drawer-links li {
  animation: drawerItemSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.06s + var(--i, 0) * 0.045s);
}
@keyframes drawerItemSlide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.drawer-links a {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,0.62); padding: 0.75rem 0.9rem; border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}
.drawer-links a i {
  font-size: 1rem; color: var(--p3); flex-shrink: 0;
  transition: color 0.2s ease;
}
.drawer-links a span { flex: 1; }
.drawer-links a:hover,
.drawer-links a.active {
  color: var(--white);
  background: rgba(234, 192, 168, 0.09);
  padding-left: 1.1rem;
}
.drawer-links a:hover i,
.drawer-links a.active i { color: var(--p4); }

/* Active pill indicator */
.drawer-links a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 50%;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
}
.drawer-links li { position: relative; }

/* Drawer Footer */
.drawer-footer {
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 0.85rem;
  flex-shrink: 0;
}

.drawer-call {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(234,192,168,0.15);
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.drawer-call:hover {
  background: rgba(234,192,168,0.09);
  border-color: rgba(234,192,168,0.35);
}
.drawer-call-icon {
  width: 38px; height: 38px; border-radius: 0;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.drawer-call-icon i { color: var(--sec-d); font-size: 1rem; }
.drawer-call-label {
  display: block;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--p4); margin-bottom: 2px;
}
.drawer-call-num {
  display: block;
  font-size: 0.85rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
}

.btn-full { width: 100%; text-align: center; justify-content: center; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.active { opacity: 1; transform: none; }

/* ─── COMPREHENSIVE RESPONSIVE DESIGN ───────────────────────────────────── */
@media (max-width: 1180px) {
  .nav-left-group, .nav-right-group { display: none !important; }
  .nav-toggle { display: flex !important; align-items: center; justify-content: center; }
  .nav-wrap { justify-content: space-between; }
  .logo-box { order: 1; }
  .nav-right { order: 2; margin-left: auto; margin-right: 0.65rem; }
  .nav-toggle { order: 3; }
}

@media (max-width: 1100px) {
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .amen-grid { grid-template-columns: repeat(3,1fr); }
  .mp-grid { grid-template-columns: repeat(3,1fr); }
  .ft-grid { grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
  .mp-stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .unit-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:first-child { grid-column: auto; grid-row: auto; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-right .nav-tel { display: none !important; }
  .nav {
    padding: 0.65rem 0;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  .logo-svg { height: 26px; }
  .logo-box { padding: 0.38rem 0.8rem; }
  .nav-cta { padding: 0.42rem 0.95rem; font-size: 0.65rem; }
  .nav-wrap { padding: 0 1.25rem; }
  .sec { padding: 3.5rem 0; }
  .wrap { padding: 0 1.25rem; }

  
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero p { font-size: 0.95rem; }
  
  .amen-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .mp-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  
  .mp-banner { padding: 1.75rem 1.25rem; }
  .mp-banner-info h3 { font-size: 1.35rem; }
  .mp-pdf-btn { width: 100%; justify-content: center; text-align: center; }
  .mp-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .mp-tabs::-webkit-scrollbar { display: none; }
  .mp-tab { flex-shrink: 0; }

  .utabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 0.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .utabs::-webkit-scrollbar { display: none; }
  .utab { flex-shrink: 0; }

  .gtabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 0.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .gtabs::-webkit-scrollbar { display: none; }
  .gtab { flex-shrink: 0; }

  .form-card { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .fg.span2 { grid-column: 1; }
  
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ft-newsletter { padding: 1.75rem 1.25rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .ft-news-form { width: 100%; max-width: 100%; flex-direction: column; }
  
  .mob-bar { display: block; }
  .wa { bottom: 4.5rem; right: 1.25rem; width: 46px; height: 46px; font-size: 22px; }
  body { padding-bottom: 3.5rem; }
  
  .ft-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .ft-copy { text-align: center; }
  .ft-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1.25rem; }
  .stat-item h3 { font-size: 1.5rem; }
  
  .pillars { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .mp-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: 1fr; }
  .mp-stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mp-stat-val { font-size: 1.65rem; }
  
  .gp-header { padding: 1.25rem; }
  .gp-actions { flex-direction: column; }
  .gp-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
