/* ============================================================
   NAMING GURUS: SHARED DESIGN SYSTEM
   Editorial / premium direction (ref: Gera Developers, confident
   serif display type, ghost buttons, hairline borders, restrained
   colour, no pastel-pill-template clutter).
   ============================================================ */

/* TOKENS */
:root {
  --ink:        #15130f;
  --ink-2:      #34302a;
  --ink-soft:   #2a2620;
  --muted:      #756f60;
  --line:       #ddd3bf;
  --line-soft:  #e8e1d2;
  --paper:      #f7f2e7;
  --paper-deep: #efe6d2;
  --cream:      #fffcf6;
  --white:      #ffffff;
  --gold:       #a8823f;
  --gold-lt:    #d4b378;
  --gold-deep:  #7c5e29;
  --on-dark:    rgba(255,255,255,.86);
  --on-dark-70: rgba(255,255,255,.68);
  --on-dark-40: rgba(255,255,255,.34);
  --line-dark:  rgba(255,255,255,.16);
  --radius-sm:  4px;
  --radius:     10px;
  --radius-lg:  14px;
}

/* PAGE ACCENT: each of the 4 standalone service pages picks up its matching
   wing colour across key touch-points (label, primary button, featured
   badge, checkmarks) so the site reads with more colour than a single
   gold accent, while staying muted and editorial, not pastel. */
body.page-baby     { --accent: #8aa67e; }
body.page-business { --accent: #6f93ad; }
body.page-personal { --accent: #c97b56; }
body.page-home     { --accent: #5f9e94; }

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
html { font-size: 17px; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; font-family: 'Inter', sans-serif; }
em { font-style: italic; color: var(--gold-deep); }
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.label::before { content: ''; width: 22px; height: 1px; background: var(--accent, var(--gold)); flex-shrink: 0; }
.label.on-dark { color: var(--accent, var(--gold-lt)); }
.body-lg { font-size: 1.1rem; color: var(--ink-2); line-height: 1.85; }

/* LAYOUT */
.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section-head { max-width: 660px; margin: 0 auto 52px; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.pad-section { padding: clamp(56px, 7.5vw, 96px) 0; }
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }
.bg-deep { background: var(--paper-deep); }
.bg-ink { background: var(--ink); color: var(--on-dark); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(247,242,231,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: clamp(130px, 16vw, 210px); height: auto; display: block; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  position: relative; font-size: .82rem; font-weight: 600; color: var(--ink-2);
  letter-spacing: .01em; white-space: nowrap; padding-bottom: 4px;
  border-bottom: 1px solid transparent; transition: border-color .2s, color .2s;
}
.nav-links a:hover { color: var(--ink); border-color: var(--gold); }
.header-cta {
  background: var(--ink); color: var(--cream);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  padding: 11px 22px; font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-deep); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  width: 40px; height: 40px; cursor: pointer; flex-shrink: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1px; background: var(--ink); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* BUTTONS */
.btn-primary, .pkg-btn-primary, .form-submit {
  background: var(--ink); color: var(--cream); border: 1px solid var(--ink);
  border-radius: var(--radius-sm); cursor: pointer;
  padding: 14px 28px; font-size: .86rem; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-primary:hover, .pkg-btn-primary:hover, .form-submit:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost, .btn-outline, .pkg-btn-outline {
  background: transparent; color: inherit; border: 1px solid var(--ink);
  border-radius: var(--radius-sm); cursor: pointer;
  padding: 13px 27px; font-size: .86rem; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-ghost:hover, .btn-outline:hover, .pkg-btn-outline:hover { background: var(--ink); color: var(--cream); }
.on-dark .btn-ghost, .on-dark.btn-ghost, .v-hero.on-dark .btn-outline { border-color: var(--line-dark); color: var(--on-dark); }
.on-dark .btn-ghost:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.pkg-btn { width: 100%; text-align: center; }

/* HOMEPAGE HERO */
.hero {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(90px, 14vh, 150px) clamp(20px, 5vw, 64px) clamp(70px, 9vw, 110px);
  position: relative; overflow: hidden;
}
.hero-texture, .v-hero-texture, .footer-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-repeat: no-repeat; background-position: 100% 50%;
  background-size: 640px; opacity: .14; z-index: 0;
}
.footer-texture { background-size: 360px; background-position: 100% 130%; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.hero h1 { color: var(--cream); margin-bottom: 22px; }
.hero h1 em { color: var(--gold-lt); }
.hero .lead { font-size: 1.18rem; color: var(--on-dark-70); max-width: 580px; margin: 0 auto 44px; line-height: 1.8; }
.hero-prompt { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-40); margin-bottom: 26px; }

/* SERVICE CARDS (homepage) */
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); max-width: 860px; margin: 0 auto; border: 1px solid var(--line-dark); }
.service-card {
  background: var(--ink); cursor: pointer; text-align: left;
  padding: 34px 28px; display: flex; flex-direction: column; gap: 10px;
  border-top: 3px solid var(--wing-color, var(--gold));
  transition: background .25s, transform .25s, box-shadow .25s;
}
.service-card:hover { background: #1d1a14; transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.4); }
.service-card:focus-visible { outline: 2px solid var(--wing-color, var(--gold-lt)); outline-offset: 3px; }
.sc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--wing-color, var(--gold)); color: var(--wing-color, var(--gold-lt));
  margin-bottom: 2px; flex-shrink: 0; transition: background .2s, color .2s;
}
.service-card:hover .sc-icon { background: var(--wing-color, var(--gold)); color: var(--ink); }
.sc-label { display: inline-flex; align-items: center; gap: 9px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wing-color, var(--gold-lt)); }
.sc-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--wing-color, var(--gold-lt)); flex-shrink: 0; }
.sc-title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 400; color: var(--cream); line-height: 1.2; }
.sc-desc { font-size: .92rem; color: var(--on-dark-70); line-height: 1.65; margin-bottom: 4px; }
.sc-arrow {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: .78rem; font-weight: 700; color: var(--ink);
  background: var(--wing-color, var(--gold-lt)); border-radius: 999px; padding: 10px 18px;
  transition: gap .2s, transform .2s, box-shadow .2s;
}
.sc-arrow svg { flex-shrink: 0; transition: transform .2s; }
.service-card:hover .sc-arrow { gap: 12px; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.35); }
.service-card:hover .sc-arrow svg { transform: translateX(2px); }

/* Wing colour coding: each of the 4 homepage service cards gets its own
   muted accent (top border, label dot/text, hover arrow) so the four
   "wings" read as distinct at a glance, without resorting to pastel fills. */
.service-card.wing-baby     { --wing-color: #8aa67e; }
.service-card.wing-business { --wing-color: #6f93ad; }
.service-card.wing-personal { --wing-color: #c97b56; }
.service-card.wing-home     { --wing-color: #5f9e94; }

/* TRUST BAR */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--line); padding: 32px 0; }
.trust-bar-inner { display: flex; justify-content: center; gap: clamp(24px,5vw,72px); flex-wrap: wrap; text-align: center; }
.trust-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold-deep); margin: 0 auto 6px; }
.trust-bar-item .num { font-family: 'Fraunces', serif; font-size: 2.1rem; font-weight: 400; color: var(--ink); }
.trust-bar-item .lbl { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.trust-sep { width: 1px; background: var(--line); align-self: stretch; }

/* ABOUT */
.about-section { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }
.nidhi-photo { width: 100%; height: 420px; border-radius: var(--radius); object-fit: cover; object-position: top center; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { font-size: 1.04rem; color: var(--ink-2); line-height: 1.85; margin-bottom: 14px; }

/* TESTIMONIALS - styled as WhatsApp screenshot cards, horizontally scrollable */
.testi-scroll {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 8px 4px 20px; margin-top: 40px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.testi-scroll::-webkit-scrollbar { height: 6px; }
.testi-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.testi-scroll::-webkit-scrollbar-track { background: var(--line); }
.testi-hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .72rem; color: var(--muted); letter-spacing: .04em; margin-top: 2px;
}
.testi-hint svg { animation: testiHintMove 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes testiHintMove { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

.testi-wa {
  flex: 0 0 280px; scroll-snap-align: start; border-radius: 18px; overflow: hidden;
  background: #0b141a; box-shadow: 0 18px 38px rgba(0,0,0,.4);
}
.wa-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #000; color: #fff; font-size: .64rem; font-weight: 600;
  padding: 7px 15px 4px;
}
.wa-statusbar-icons { display: flex; align-items: center; gap: 5px; opacity: .92; }
.wa-head { display: flex; align-items: center; gap: 10px; background: #075e54; padding: 10px 12px; }
.wa-back { flex-shrink: 0; opacity: .9; }
.wa-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; background: #8aa67e;
  display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; color: #fff;
}
.wa-avatar.wing-business { background: #6f93ad; }
.wa-avatar.wing-personal { background: #c97b56; }
.wa-avatar.wing-home     { background: #5f9e94; }
.wa-head-info { flex: 1; min-width: 0; }
.wa-name { color: #fff; font-size: .82rem; font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-status { color: rgba(255,255,255,.7); font-size: .65rem; margin-top: 1px; }
.wa-dots { flex-shrink: 0; opacity: .85; }
.wa-body {
  background: #0b141a; padding: 16px 11px 14px; min-height: 178px;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 10px;
}
.wa-date-chip {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); text-transform: uppercase;
  font-size: .58rem; font-weight: 700; letter-spacing: .07em; padding: 4px 11px; border-radius: 7px;
}
.wa-bubble {
  align-self: flex-start; background: #1f2c34; color: #e9edef;
  border-radius: 2px 10px 10px 10px; padding: 8px 9px 7px 10px; box-shadow: 0 1px 1px rgba(0,0,0,.3);
}
.wa-bubble p { font-size: .8rem; line-height: 1.5; }
.wa-time { display: block; text-align: right; font-size: .6rem; color: rgba(233,237,239,.45); margin-top: 5px; }
.wa-tag { display: flex; align-items: center; gap: 7px; background: #111c22; padding: 10px 15px; font-size: .66rem; color: rgba(255,255,255,.5); }
.wa-tag span:first-child { color: rgba(255,255,255,.88); font-weight: 600; }

/* BACK BUTTON */
.back-btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; padding: 0; font-size: .82rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .2s; margin-bottom: 36px; }
.back-btn:hover { color: var(--ink); }

/* SERVICE PAGE HERO */
.v-hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.v-hero-inner { padding: clamp(48px,7vw,84px) 0 clamp(64px,9vw,108px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,64px); align-items: center; position: relative; z-index: 1; }
.v-hero .back-btn { color: var(--on-dark-40); }
.v-hero .back-btn:hover { color: var(--cream); }
.v-hero h1 { color: var(--cream); margin-bottom: 22px; }
.v-hero h1 em { color: var(--gold-lt); }
.v-hero .lead { font-size: 1.1rem; color: var(--on-dark-70); line-height: 1.85; margin-bottom: 34px; max-width: 480px; }
.v-hero .btn-ghost { border-color: var(--line-dark); color: var(--on-dark); }
.v-hero .btn-ghost:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.v-hero .btn-primary { background: var(--accent, var(--gold)); border-color: var(--accent, var(--gold)); color: var(--ink); }
.v-hero .btn-primary:hover { filter: brightness(1.14); }
.num-glyph {
  font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(11rem, 22vw, 19rem);
  color: rgba(255,255,255,.05); line-height: 1; text-align: right; user-select: none;
  position: relative; z-index: 0;
}

/* WHO / PROCESS GRID (used as-is on Baby page) */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.who-card { background: var(--cream); padding: 30px 24px; }
.who-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 400; color: var(--line); line-height: 1; margin-bottom: 14px; }
.who-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.who-card p { font-size: .94rem; color: var(--muted); line-height: 1.65; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 48px; }
.process-item { display: flex; gap: 16px; }
.process-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent, var(--gold)); flex-shrink: 0; margin-top: 8px; }
.process-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  color: var(--accent, var(--gold-deep)); margin-top: 2px;
}
.process-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.process-item p { font-size: .94rem; color: var(--muted); line-height: 1.7; }

/* UNLOCK / ANSWERS GRID (new, replaces verbose who+process grids on
   Business / Home / Personal pages with a tight, question-answering list) */
.unlock-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; }
.unlock-item { background: var(--cream); padding: 28px 26px; }
.unlock-icon {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--paper-deep); color: var(--accent, var(--gold-deep));
  margin-bottom: 14px;
}
.unlock-q { font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.unlock-a { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.unlock-a strong { color: var(--accent, var(--gold-deep)); font-weight: 700; }

/* PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; max-width: 880px; margin-inline: auto; }
.package-card { background: var(--cream); padding: 40px 34px; position: relative; }
.package-card.featured { background: var(--white); }
.featured-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, var(--gold-deep)); margin-bottom: 18px; }
.featured-badge::before { content: ''; width: 16px; height: 1px; background: var(--accent, var(--gold)); }
.pkg-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pkg-name { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.pkg-price { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 400; color: var(--ink); margin-bottom: 4px; line-height: 1; }
.pkg-price span { font-size: 1rem; font-weight: 500; color: var(--muted); font-family: 'Inter', sans-serif; }
.pkg-subtitle { font-size: .82rem; color: var(--muted); margin-bottom: 26px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.pkg-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pkg-feature { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); line-height: 1.45; }
.pkg-feature::before {
  content: ''; width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0;
  background-color: var(--accent, var(--gold));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12.5l5 5L20 6' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12.5l5 5L20 6' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.delivery-box { background: var(--paper-deep); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px; }
.delivery-box p { font-size: .79rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 4px; }
.delivery-box p:last-child { margin-bottom: 0; }
.delivery-box strong { color: var(--ink); }

/* WHATSAPP NUDGE (new, sits directly below the packages on Business /
   Home / Personal pages) */
.wa-nudge { max-width: 880px; margin: 28px auto 0; border: 1px dashed var(--line); border-radius: var(--radius); padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--cream); }
.wa-nudge-text strong { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.wa-nudge-text span { font-size: .88rem; color: var(--muted); }
.wa-nudge-btn { display: inline-flex; align-items: center; gap: 10px; background: #1f8a52; color: #fff; border: none; border-radius: var(--radius-sm); padding: 12px 22px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
.wa-nudge-btn:hover { background: #166a3e; }

/* FORM SECTION */
.form-section {
  background: var(--ink); color: var(--on-dark);
  border-radius: var(--radius-lg); padding: clamp(36px,5vw,68px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-top: 0;
}
.form-copy .label { color: var(--gold-lt); }
.form-copy h2 { color: var(--cream); margin-bottom: 16px; font-size: clamp(1.5rem,2.8vw,2.1rem); }
.form-copy p { color: var(--on-dark-70); font-size: .92rem; line-height: 1.78; }
.trust-items { margin-top: 26px; display: flex; flex-direction: column; gap: 11px; }
.trust-item { display: flex; gap: 10px; align-items: center; color: var(--on-dark-70); font-size: .84rem; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent, var(--gold)); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .74rem; font-weight: 700; color: var(--on-dark-40); letter-spacing: .07em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--cream); font-size: 1rem; transition: border-color .2s, background .2s; width: 100%; -webkit-text-fill-color: var(--cream); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--on-dark-40); -webkit-text-fill-color: var(--on-dark-40); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-lt); background: rgba(255,255,255,.1); }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: var(--ink-soft); color: var(--cream); -webkit-text-fill-color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { padding: 15px 32px; font-size: .95rem; margin-top: 4px; width: 100%; }
.form-note { font-size: .74rem; color: var(--on-dark-40); text-align: center; margin-top: 4px; }
.form-success { color: var(--on-dark-70); text-align: center; padding: 34px 20px; font-size: .95rem; line-height: 1.7; }
.form-success strong { color: var(--gold-lt); }

/* FAQ */
.faq-list { margin-top: 48px; max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; color: var(--ink); font-size: 1rem; font-weight: 600; padding: 0; font-family: 'Inter', sans-serif; }
.faq-q svg { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; font-size: .98rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }

/* FOOTER */
.site-footer { background: var(--ink); color: var(--on-dark-70); padding: 52px clamp(20px,5vw,64px) 28px; margin-top: 0; position: relative; overflow: hidden; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); position: relative; z-index: 1; }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 280px; margin-top: 16px; color: var(--on-dark-40); }
.footer-logo { filter: brightness(0) invert(1); width: 170px; height: auto; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .84rem; transition: color .2s; color: var(--on-dark-70); }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: 1140px; margin: 22px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-bottom a { color: var(--on-dark-40); }
.footer-bottom a:hover { color: var(--cream); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #1f8a52; box-shadow: 0 6px 24px rgba(31,138,82,.35); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .2s, box-shadow .2s; border: none; text-decoration: none; }
.wa-float:hover { transform: scale(1.07); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(31,138,82,.4); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 70% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1.5); opacity: 0; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { gap: 18px; }
}
@media (max-width: 860px) {
  .service-cards { grid-template-columns: 1fr 1fr; }
  .v-hero-inner { grid-template-columns: 1fr; }
  .num-glyph { display: none; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .unlock-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; gap: 32px; }
  .about-section { grid-template-columns: 1fr; text-align: center; }
  .nidhi-photo { margin: 0 auto; max-width: 300px; }
  .testi-wa { flex: 0 0 80vw; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .wa-nudge { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { width: 100%; padding: 14px clamp(20px,4vw,64px); border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; }
  .brand-logo { width: clamp(120px, 42vw, 180px); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-section { padding: 28px 20px; border-radius: 12px; }
  .form-copy h2 { font-size: 1.5rem; }
}
@media (max-width: 440px) {
  .service-cards { grid-template-columns: 1fr; }
  .brand-logo { width: 130px; }
}
