/* ============================================================
   FloorPlansIndia — Premium Architect & Interior Design
   Design System: Warm Ivory + Slate + Gold
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: #FAFAF8; color: #1C1C1E; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --gold:    #B8964E;
  --gold-l:  #D4AF70;
  --gold-d:  #8B6E35;
  --gold-t:  rgba(184,150,78,.12);
  --gold-t2: rgba(184,150,78,.06);
  --ivory:   #FAFAF8;
  --ivory-d: #F3F1EC;
  --slate:   #1C1C1E;
  --slate-m: #2D2D30;
  --mid:     #4A4A52;
  --muted:   #8E8E96;
  --border:  #E8E4DC;
  --border-d:#D4CEBF;
  --white:   #FFFFFF;
  --red:     #C0392B;
  --green:   #27AE60;
  --blue:    #2563EB;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  --r:    6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl:32px;

  --sh:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 20px rgba(0,0,0,.08);
  --sh-lg: 0 12px 40px rgba(0,0,0,.12);
  --sh-xl: 0 24px 64px rgba(0,0,0,.16);

  --nav-h: 70px;
  --max:   1280px;
  --gutter:1.5rem;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory-d); }
::-webkit-scrollbar-thumb { background: var(--gold-l); border-radius: 99px; }

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--font-serif); }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content:''; width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--slate); }
.display-1 {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em; color: var(--ivory);
}
.display-2 {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.01em;
}
.display-3 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
}
.lead { font-size: 1.05rem; color: var(--mid); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 99px;
  font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; transition: all .22s; border: none; font-family: var(--font-sans);
}
.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 16px rgba(184,150,78,.35);
}
.btn-gold:hover {
  background: var(--gold-d); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,78,.4);
}
.btn-outline {
  background: transparent; color: var(--ivory);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--gold-l); color: var(--gold-l); }
.btn-outline-dark {
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--border-d);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: .95rem 2.25rem; font-size: .95rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .78rem; }
.btn-icon { width: 44px; height: 44px; border-radius: 50%; padding: 0; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  transition: all .3s ease;
}
#navbar .nav-inner {
  max-width: var(--max); width: 100%; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
#navbar.scrolled {
  background: rgba(28,28,30,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400;
  color: #fff; white-space: nowrap; letter-spacing: -.01em;
}
.nav-logo em { color: var(--gold-l); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: .4rem .85rem; border-radius: 99px; transition: all .18s; letter-spacing: .01em;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-wa {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85);
  padding: .4rem .9rem; border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; transition: all .18s;
}
.nav-wa:hover { border-color: var(--gold-l); color: var(--gold-l); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 99px; transition: .2s; }
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: var(--slate-m); padding: calc(var(--nav-h) + 1.5rem) 1.5rem 1.5rem;
  flex-direction: column; gap: .5rem;
}
#mobile-menu.open { display: flex; }
.mob-link { font-size: 1.1rem; color: rgba(255,255,255,.7); padding: .75rem 1rem; border-radius: var(--r-md); }
.mob-link:hover { color: #fff; background: rgba(255,255,255,.07); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: var(--slate);
  background-image: linear-gradient(135deg, #0d0d0f 0%, #1c1c1e 50%, #242428 100%);
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/hero-bg.png') center/cover no-repeat;
  opacity: .22; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,13,15,.95) 0%,
    rgba(28,28,30,.75) 55%,
    rgba(36,36,40,.55) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max); margin: 0 auto; padding: 4rem var(--gutter) 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(184,150,78,.35); background: rgba(184,150,78,.08);
  padding: .35rem 1rem; border-radius: 99px; margin-bottom: 1.5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-l);
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold-l); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.55); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; }
.trust-item { text-align: center; }
.trust-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold-l); line-height: 1; }
.trust-lbl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .2rem; }
.trust-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* hero right — bento cards */
.hero-right { position: relative; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.h-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl); padding: 1.25rem;
  backdrop-filter: blur(12px); transition: all .3s;
}
.h-card:hover { background: rgba(255,255,255,.07); border-color: rgba(184,150,78,.25); transform: translateY(-4px); }
.h-card-ico { font-size: 1.6rem; margin-bottom: .75rem; }
.h-card-ttl { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.h-card-sub { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.h-card-price { font-family: var(--font-mono); font-size: .75rem; color: var(--gold-l); font-weight: 600; margin-top: .5rem; }
.h-card.span2 { grid-column: 1/-1; }
.h-card-lg { display: flex; align-items: center; gap: 1rem; }
.h-card-lg .h-card-ico { font-size: 2rem; margin-bottom: 0; flex-shrink: 0; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.3); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); transform: rotate(45deg); margin: 0 auto; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 1.75rem;
  transition: all .3s; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: var(--sh);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--gold-t); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--gold-t2); border: 1px solid var(--gold-t);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.svc-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--slate); }
.svc-sub { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.svc-price { font-family: var(--font-mono); font-size: .8rem; color: var(--gold); font-weight: 600; }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--gold); margin-top: .75rem;
  opacity: 0; transform: translateY(4px); transition: all .22s;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }

/* ── PROCESS ── */
.process-bg { background: var(--slate); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.proc-step { text-align: center; position: relative; }
.proc-step::after {
  content: ''; position: absolute; top: 28px; left: calc(50% + 36px); right: calc(-50% + 36px);
  height: 1px; background: rgba(255,255,255,.1);
}
.proc-step:last-child::after { display: none; }
.proc-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(184,150,78,.4); background: rgba(184,150,78,.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; color: var(--gold-l);
}
.proc-ttl { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.proc-sub { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── PLANS ── */
.plans-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.plans-chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.chip {
  padding: .4rem 1.1rem; border-radius: 99px; font-size: .78rem; font-weight: 600;
  border: 1.5px solid var(--border-d); color: var(--mid);
  cursor: pointer; transition: all .18s; background: transparent;
  font-family: var(--font-sans);
}
.chip.active, .chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-t); }
.plan-search-wrap { position: relative; }
.plan-search-wrap svg { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); width: 16px; color: var(--muted); }
#plan-search {
  padding: .55rem 1rem .55rem 2.5rem; border: 1.5px solid var(--border-d);
  border-radius: 99px; font-size: .82rem; background: var(--white);
  outline: none; transition: .2s; width: 220px; font-family: var(--font-sans);
}
#plan-search:focus { border-color: var(--gold); width: 260px; box-shadow: 0 0 0 3px var(--gold-t); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.plan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh); transition: all .3s;
}
.plan-card:hover { box-shadow: var(--sh-xl); transform: translateY(-6px); border-color: var(--gold-t); }
.plan-img-box { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ivory-d); }
.plan-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.plan-card:hover .plan-img-box img { transform: scale(1.05); }
.plan-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #fff;
  padding: .25rem .75rem; border-radius: 99px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
}
.plan-wishlist-btn {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: .2s;
}
.plan-wishlist-btn svg { width: 16px; color: var(--muted); transition: .2s; }
.plan-wishlist-btn:hover svg, .plan-wishlist-btn.active svg { color: #E74C3C; fill: #E74C3C; }
.plan-body { padding: 1.25rem; }
.plan-title { font-size: .95rem; font-weight: 700; color: var(--slate); margin-bottom: .75rem; line-height: 1.35; }
.plan-specs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.spec-item {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; color: var(--muted); font-weight: 500;
  background: var(--ivory-d); padding: .22rem .6rem; border-radius: 99px;
}
.spec-item svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }
.plan-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.plan-price-label { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.plan-price { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.plan-btns { display: flex; gap: .5rem; }
.plan-btn-enq {
  padding: .4rem .9rem; border-radius: 99px;
  border: 1.5px solid var(--border-d); font-size: .72rem; font-weight: 600;
  color: var(--mid); transition: all .18s; cursor: pointer; background: transparent;
  font-family: var(--font-sans);
}
.plan-btn-enq:hover { border-color: var(--gold); color: var(--gold); }
.plan-btn-buy {
  padding: .4rem .9rem; border-radius: 99px;
  background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700;
  cursor: pointer; transition: all .18s; border: none; font-family: var(--font-sans);
}
.plan-btn-buy:hover { background: var(--gold-d); }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--muted); grid-column: 1/-1; }
.empty-state .e-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.empty-state h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--slate); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.why-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; position: relative; box-shadow: var(--sh-xl); }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
}
.why-badge-stack { display: flex; flex-direction: column; gap: .5rem; }
.why-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  padding: .5rem .9rem; border-radius: 99px;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.why-feats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.75rem; }
.why-feat { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-feat-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r);
  background: var(--gold-t2); border: 1px solid var(--gold-t);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.why-feat-ttl { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.why-feat-sub { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── CALCULATOR ── */
.calc-wrap {
  background: var(--ivory-d); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 2.5rem; box-shadow: var(--sh-md);
}
.calc-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
.calc-l, .calc-r {}
.calc-section-ttl { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.calc-input-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.calc-field { flex: 1; }
.calc-field label { display: block; font-size: .72rem; font-weight: 600; color: var(--mid); margin-bottom: .4rem; }
.calc-input {
  width: 100%; padding: .65rem .9rem; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: .9rem; font-family: var(--font-sans); transition: .2s; outline: none;
}
.calc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-t); }
.calc-area-display {
  background: var(--slate); color: var(--gold-l);
  padding: .65rem .9rem; border-radius: var(--r-md);
  font-family: var(--font-mono); font-size: .88rem; font-weight: 600; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.chip-sel {
  padding: .35rem .9rem; border-radius: 99px; font-size: .75rem; font-weight: 600;
  border: 1.5px solid var(--border-d); color: var(--mid); cursor: pointer;
  transition: all .18s; background: transparent; font-family: var(--font-sans);
}
.chip-sel.active { border-color: var(--gold); color: var(--gold); background: var(--gold-t); }
.chip-row-tight { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.quick-chips .chip-sm {
  padding: .28rem .65rem; border-radius: 99px; font-size: .68rem; font-weight: 600;
  border: 1px solid var(--border-d); color: var(--muted); cursor: pointer;
  transition: all .18s; background: transparent; font-family: var(--font-sans);
}
.quick-chips .chip-sm.active { border-color: var(--gold); color: var(--gold); background: var(--gold-t); }
.addon-row { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; border-top: 1px solid var(--border); }
.addon-label { font-size: .82rem; font-weight: 500; }
.addon-price { font-size: .72rem; color: var(--muted); font-family: var(--font-mono); }
.addon-toggle { display: flex; align-items: center; gap: .5rem; }
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
.pkg-card {
  border: 1.5px solid var(--border); border-radius: var(--r-md); padding: .9rem;
  cursor: pointer; transition: all .2s; text-align: center; background: var(--white);
}
.pkg-card:hover, .pkg-card.active { border-color: var(--gold); background: var(--gold-t); }
.pkg-name { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .25rem; }
.pkg-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--slate); }
.pkg-card.active .pkg-name { color: var(--gold-d); }
.pkg-card.active .pkg-price { color: var(--gold); }
.price-box {
  background: var(--slate); border-radius: var(--r-lg); padding: 1.5rem;
  margin-top: 1.25rem;
}
.price-box-ttl { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .5rem; }
.final-price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300; color: var(--gold-l); line-height: 1; }
.saved-badge {
  display: none; margin-top: .5rem;
  font-size: .72rem; font-weight: 600; color: #27AE60;
  background: rgba(39,174,96,.1); padding: .25rem .65rem; border-radius: 99px;
  width: fit-content;
}
.breakdown-row { display: flex; justify-content: space-between; padding: .35rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.breakdown-row span { font-size: .78rem; color: rgba(255,255,255,.5); }
.breakdown-val { color: rgba(255,255,255,.85) !important; font-family: var(--font-mono); }
.breakdown-discount .breakdown-val { color: #27AE60 !important; }
.coupon-row { display: flex; gap: .5rem; margin-bottom: .75rem; }
.coupon-input {
  flex: 1; padding: .6rem .9rem; border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: .82rem; background: var(--white);
  outline: none; transition: .2s; font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: .08em;
}
.coupon-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-t); }
.coupon-msg { font-size: .75rem; margin-top: .35rem; font-weight: 500; }
.coupon-msg.success { color: var(--green); }
.coupon-msg.error { color: var(--red); }
.pay-btn {
  width: 100%; padding: .9rem; border-radius: var(--r-lg);
  background: var(--gold); color: #fff; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all .2s; border: none; font-family: var(--font-sans);
  margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.pay-btn:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,78,.4); }

/* tabs */
.tabs { display: flex; gap: .5rem; background: var(--ivory-d); border-radius: 99px; padding: .3rem; width: fit-content; }
.tab {
  padding: .4rem 1.1rem; border-radius: 99px; font-size: .78rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: all .18s; font-family: var(--font-sans);
}
.tab.active { background: var(--white); color: var(--slate); box-shadow: var(--sh); }
.tab-pane { display: none; margin-top: 1.5rem; }
.tab-pane.active { display: block; }

/* ── VASTU SECTION ── */
.vastu-compass { display: flex; justify-content: center; margin-bottom: 2rem; }
.compass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; width: 280px; }
.compass-btn {
  aspect-ratio: 1; border-radius: var(--r-md);
  border: 1.5px solid var(--border-d); background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  cursor: pointer; transition: all .2s; padding: .5rem; font-family: var(--font-sans);
}
.compass-btn:hover, .compass-btn.active { border-color: var(--gold); background: var(--gold-t); }
.compass-btn .dir-letter { font-weight: 800; font-size: .9rem; color: var(--slate); }
.compass-btn .dir-name { font-size: .55rem; color: var(--muted); text-align: center; line-height: 1.3; }
.vastu-center { background: var(--gold); color: #fff; border: none; cursor: default; }
.vastu-center:hover { transform: none; }
.vastu-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 1.75rem; box-shadow: var(--sh);
}
.vastu-icon { font-size: 2rem; margin-bottom: .75rem; }
.vastu-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; color: var(--slate); }
.vastu-body { font-size: .85rem; color: var(--mid); line-height: 1.75; }
.est-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.est-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.25rem; text-align: center; box-shadow: var(--sh);
}
.est-val { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); }
.est-lbl { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

/* ── WIZARD ── */
#wizard-overlay, #enquiry-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
#wizard-overlay.open, #enquiry-overlay.open { display: flex; }
.wizard-modal, .enquiry-modal {
  background: var(--white); border-radius: var(--r-2xl);
  width: 100%; max-width: 560px; max-height: 85vh;
  overflow-y: auto; box-shadow: var(--sh-xl);
}
.wiz-hd, .enq-hd {
  padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--white); z-index: 1;
}
.wiz-hd h3, .enq-hd h3 { font-size: 1.1rem; font-weight: 700; }
.close-btn {
  width: 30px; height: 30px; border-radius: 50%; background: var(--ivory-d);
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
  color: var(--muted); cursor: pointer; transition: .15s; border: none;
}
.close-btn:hover { background: rgba(192,57,43,.1); color: var(--red); }
.wiz-progress { padding: .75rem 1.75rem; border-bottom: 1px solid var(--border); }
.wiz-bar { height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; }
#wiz-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-l)); transition: width .4s; border-radius: 99px; }
.wiz-step-info { font-size: .7rem; color: var(--muted); margin-top: .4rem; }
#wizard-title { font-size: 1rem; font-weight: 700; }
.wiz-body { padding: 1.5rem 1.75rem; }
.wiz-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.wiz-option {
  border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1rem;
  cursor: pointer; transition: all .2s; text-align: center;
}
.wiz-option:hover, .wiz-option.selected { border-color: var(--gold); background: var(--gold-t); }
.opt-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.opt-label { font-size: .85rem; font-weight: 700; color: var(--slate); }
.opt-sub { font-size: .72rem; color: var(--muted); margin-top: .2rem; }
.wiz-compass { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.wiz-dir { border: 1.5px solid var(--border); border-radius: var(--r-md); padding: .75rem; cursor: pointer; transition: all .2s; text-align: center; }
.wiz-dir:hover, .wiz-dir.selected { border-color: var(--gold); background: var(--gold-t); }
.dir-letter { font-weight: 800; font-size: .85rem; color: var(--slate); }
.dir-name { font-size: .6rem; color: var(--muted); margin-top: .1rem; }
.wiz-results { display: flex; flex-direction: column; gap: .75rem; }
.wiz-result-card {
  display: flex; gap: 1rem; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: .9rem; cursor: pointer; transition: all .2s;
}
.wiz-result-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); }
.wiz-result-card img { width: 72px; height: 72px; border-radius: var(--r); object-fit: cover; flex-shrink: 0; }
.wiz-result-info h5 { font-size: .88rem; font-weight: 700; margin-bottom: .25rem; }
.wiz-result-info p { font-size: .75rem; color: var(--muted); }
.wiz-result-info .price { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--gold); margin-top: .25rem; }
.wiz-ft {
  padding: 1rem 1.75rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; position: sticky; bottom: 0; background: var(--white);
}

/* ── ENQUIRY MODAL ── */
.enq-body { padding: 1.5rem 1.75rem; }
.enq-preview {
  display: none; align-items: center; gap: 1rem;
  background: var(--ivory-d); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: .9rem; margin-bottom: 1.25rem;
}
.enq-preview img { width: 64px; height: 64px; border-radius: var(--r); object-fit: cover; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: .88rem; background: var(--white);
  outline: none; transition: .2s; font-family: var(--font-sans);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-t); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.75rem; box-shadow: var(--sh); position: relative;
  transition: all .3s;
}
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testi-quote {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 300; font-style: italic;
  color: var(--slate); line-height: 1.6; margin-bottom: 1.25rem;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-t);
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--gold-d); flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 700; }
.testi-city { font-size: .72rem; color: var(--muted); }

/* ── BLOG SECTION ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh); transition: all .3s;
}
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--ivory-d); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem; }
.blog-cat {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-d); background: var(--gold-t);
  padding: .2rem .6rem; border-radius: 99px; margin-bottom: .6rem;
}
.blog-title { font-size: .92rem; font-weight: 700; line-height: 1.4; margin-bottom: .5rem; color: var(--slate); }
.blog-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: .75rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: .72rem; color: var(--muted); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--slate); position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,150,78,.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { color: #fff; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #0d0d0f; color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.footer-sub { font-size: .8rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .5rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: .2s; color: rgba(255,255,255,.5);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold-l); }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .82rem; transition: .2s; }
.footer-links a:hover { color: var(--gold-l); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: .75rem; flex-wrap: wrap; gap: .5rem; }

/* ── STATS ── */
.stats-bg { background: var(--ivory-d); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 2.5rem 1rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; color: var(--gold); }
.stat-lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .65s .1s, transform .65s .1s; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .65s .1s, transform .65s .1s; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }
[class*="reveal"]:nth-child(2) { transition-delay: .1s; }
[class*="reveal"]:nth-child(3) { transition-delay: .2s; }
[class*="reveal"]:nth-child(4) { transition-delay: .3s; }
[class*="reveal"]:nth-child(5) { transition-delay: .4s; }

/* ── TOAST ── */
#fpi-toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--slate-m); color: #fff; padding: .7rem 1.5rem; border-radius: 99px;
  font-size: .82rem; font-weight: 500; box-shadow: var(--sh-xl); z-index: 9999;
  opacity: 0; transition: opacity .25s; white-space: nowrap; pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { aspect-ratio: 16/9; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .proc-step::after { display: none; }
}
@media (max-width: 680px) {
  :root { --gutter: 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .wiz-option-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
