/* ---------- TOKENS ---------- */
:root {
  --cream: #FAF5E8;
  --cream-2: #F3ECD7;
  --cream-3: #EAE1C5;
  --paper: #FFFCF3;
  --ink: #0B1B2B;
  --ink-2: #1F2D3F;
  --ink-soft: #51607A;
  --ink-muted: #8A93A3;
  --blue: #0A4A8C;
  --blue-deep: #07335F;
  --blue-light: #2D7DD2;
  --amber: #E8961E;
  --amber-2: #FFB04A;
  --amber-deep: #B36A0C;
  --red: #C8311A;
  --green: #1F8A5B;
  --line: rgba(11,27,43,0.14);
  --line-soft: rgba(11,27,43,0.07);
  --shadow-lg: 0 30px 60px -20px rgba(11,27,43,0.25), 0 8px 20px -8px rgba(11,27,43,0.12);
  --shadow-md: 0 12px 28px -12px rgba(11,27,43,0.22);
  --shadow-sm: 0 2px 6px rgba(11,27,43,0.08);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- TYPE ---------- */
.display {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.hindi { font-family: 'Tiro Devanagari Hindi', serif; font-weight: 400; font-style: italic; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1.5px; background: var(--amber); display: inline-block;
}

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---------- BACKGROUND TEXTURE (blueprint dots) ---------- */
.bp-bg {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11,27,43,0.08) 1px, transparent 0);
  background-size: 28px 28px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 245, 232, 0.85);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo img {
  height: 60px; width: auto; display: block;
  border-radius: 10px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--amber);
  display: grid; place-items: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.logo-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.logo-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,150,30,0.35), transparent 60%);
}
/* Footer logo override */
.footer .logo img { height: 64px; border-radius: 10px; }

.nav-links { display: flex; gap: 34px; align-items: center; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
.nav-cta-dot { width: 7px; height: 7px; background: var(--amber-2); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,176,74,0.25); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: all .25s; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- HERO ---------- */
.hero { padding: 64px 0 100px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  margin-top: 28px;
}
.hero h1 .accent { color: var(--blue); }
.hero h1 .swap {
  display: inline-block; min-width: 320px;
  color: var(--amber-deep);
  font-style: italic;
  font-family: 'Bricolage Grotesque', serif;
}
.hero-sub {
  font-size: 18px; color: var(--ink-soft); margin-top: 26px; max-width: 520px; line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 44px; align-items: center; }
.hero-meta-item { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.hero-meta-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(31,138,91,0.18); }

/* Hero photo stack */
.hero-photos {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1.4s cubic-bezier(.4,0,.2,1);
  transform: scale(1.06);
}
.hero-photo.active { opacity: 1; transform: scale(1); }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo .label {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(11,27,43,0.78);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hero-photo .label-dot { width: 8px; height: 8px; background: var(--amber-2); border-radius: 50%; }

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft);
  z-index: 2;
}
.fc-rating { left: -36px; bottom: 80px; }
.fc-jobs { right: -28px; top: 60px; }
.fc-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; }
.fc-icon.amber { background: rgba(232,150,30,0.15); color: var(--amber-deep); }
.fc-icon.blue { background: rgba(10,74,140,0.12); color: var(--blue); }
.fc-text-top { font-size: 16px; font-weight: 700; line-height: 1; }
.fc-text-bot { font-size: 11px; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0.04em; }

.hero-bg-bolt {
  position: absolute; top: -40px; right: -40px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(232,150,30,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-circle {
  position: absolute; bottom: -160px; left: -160px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,74,140,0.10), transparent 60%);
  pointer-events: none;
}

/* tickers */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: var(--paper);
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track { display: flex; gap: 64px; animation: scroll 32s linear infinite; white-space: nowrap; padding-left: 64px; }
.ticker-track span { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; display: flex; align-items: center; gap: 64px; }
.ticker-track .dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- COUNTERS ---------- */
.counters {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.counters::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 28px 28px;
}
.counter-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative;
}
.counter-item { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.counter-item:first-child { border-left: 0; padding-left: 0; }
.counter-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(48px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--paper);
}
.counter-num .suffix { color: var(--amber); }
.counter-label { font-size: 13px; color: rgba(255,252,243,0.65); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }

/* ---------- SERVICES SPLIT ---------- */
.services { padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(40px, 4.5vw, 64px); margin-top: 18px; }
.section-head p { font-size: 17px; color: var(--ink-soft); margin-top: 18px; max-width: 560px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  isolation: isolate;
}
.service-card .photo { position: absolute; inset: 0; }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.service-card:hover .photo img { transform: scale(1.07); }
.service-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,27,43,0.92) 0%, rgba(11,27,43,0.5) 50%, rgba(11,27,43,0.15) 100%); }
.service-card .content { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px; color: var(--paper); }
.service-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.service-card.electric .badge .b-dot { background: var(--amber-2); }
.service-card.plumbing .badge .b-dot { background: #6BCBFF; }
.b-dot { width: 7px; height: 7px; border-radius: 50%; }
.service-card h3 { font-family: 'Bricolage Grotesque'; font-size: clamp(36px, 3.5vw, 52px); font-weight: 700; letter-spacing: -0.025em; margin-top: 16px; line-height: 1; }
.service-card .tagline { margin-top: 12px; font-size: 15px; opacity: 0.85; max-width: 380px; }
.service-card .pill-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.service-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.service-card:hover .service-pill { background: rgba(255,255,255,0.18); }
.service-card .arrow {
  position: absolute; top: 32px; right: 32px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  transition: transform .35s, background .25s;
}
.service-card:hover .arrow { background: var(--amber); transform: rotate(-45deg) scale(1.05); }

/* ---------- HOW IT WORKS ---------- */
.how { padding: 60px 0 120px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.how-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.how-step .step-num {
  font-family: 'Bricolage Grotesque'; font-size: 90px; font-weight: 700;
  color: var(--cream-3); letter-spacing: -0.04em; line-height: 1;
  position: absolute; top: 12px; right: 20px; z-index: 0;
}
.how-step .step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--ink); color: var(--amber-2);
  display: grid; place-items: center;
  position: relative; z-index: 1;
}
.how-step h4 { font-family: 'Bricolage Grotesque'; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 28px; position: relative; z-index: 1; }
.how-step p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; position: relative; z-index: 1; line-height: 1.6; }
.how-step .step-time {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.12em;
  background: rgba(10,74,140,0.08); padding: 6px 12px; border-radius: 999px;
  position: relative; z-index: 1;
}

/* ---------- WHY US ---------- */
.why { padding: 120px 0; background: var(--paper); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.why-cell {
  background: var(--paper); padding: 36px; transition: background .3s;
  position: relative;
}
.why-cell:hover { background: var(--cream); }
.why-cell .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); color: var(--blue);
  display: grid; place-items: center;
  transition: all .3s;
}
.why-cell:hover .icon { background: var(--amber); color: var(--ink); transform: rotate(-6deg); }
.why-cell h4 { font-family: 'Bricolage Grotesque'; font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin-top: 22px; }
.why-cell p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }

/* ---------- BRANDS MARQUEE ---------- */
.brands { padding: 80px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.brands-head { text-align: center; margin-bottom: 48px; }
.brands-head .eyebrow { justify-content: center; }
.brands-head .eyebrow::before, .brands-head .eyebrow::after { content: ''; width: 22px; height: 1.5px; background: var(--amber); display: inline-block; }
.brands-head p { font-size: 20px; color: var(--ink-soft); margin-top: 14px; }
.brands-head p b { color: var(--ink); font-weight: 600; }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; gap: 60px; align-items: center; animation: scroll 28s linear infinite; width: max-content; }
.brand-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink-2); opacity: 0.55;
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
  transition: opacity .25s, color .25s;
}
.brand-item:hover { opacity: 1; color: var(--blue); }
.brand-item .b-sep { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }

/* ---------- BOOK FORM ---------- */
.book { padding: 120px 0; background: var(--cream-2); position: relative; overflow: hidden; }
.book::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11,27,43,0.06) 1px, transparent 0);
  background-size: 28px 28px; pointer-events: none;
}
.book-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; position: relative; }
.book-side h2 { font-size: clamp(40px, 4.5vw, 60px); margin-top: 18px; }
.book-side p { font-size: 17px; color: var(--ink-soft); margin-top: 18px; max-width: 440px; }
.book-side .quick-call {
  margin-top: 36px; padding: 20px 24px; background: var(--ink); color: var(--paper);
  border-radius: var(--r-md); display: flex; align-items: center; gap: 18px;
  max-width: 440px;
}
.qc-icon { width: 44px; height: 44px; background: var(--amber); color: var(--ink); border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.qc-text-top { font-size: 12px; color: rgba(255,252,243,0.6); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.qc-text-num { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; margin-top: 2px; letter-spacing: -0.01em; }

.book-form {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.progress-row { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.progress-step {
  flex: 1; display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.progress-step .ps-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2); color: var(--ink-muted);
  display: grid; place-items: center; font-size: 13px;
  transition: all .35s;
  flex-shrink: 0;
}
.progress-step.active .ps-num { background: var(--ink); color: var(--amber-2); }
.progress-step.done .ps-num { background: var(--green); color: var(--paper); }
.progress-step.active { color: var(--ink); }
.progress-step.done { color: var(--green); }
.progress-step .ps-line { flex: 1; height: 2px; background: var(--cream-2); border-radius: 2px; }
.progress-step.done .ps-line { background: var(--green); }

.form-step {
  animation: fadeUp .45s cubic-bezier(.2,.7,.2,1);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.form-step h3 { font-family: 'Bricolage Grotesque'; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.form-step .sub { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.choice {
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 18px;
  display: flex; align-items: flex-start; gap: 14px;
  cursor: pointer; transition: all .25s; background: var(--paper);
}
.choice:hover { border-color: var(--ink); }
.choice.selected { border-color: var(--ink); background: var(--cream); box-shadow: inset 0 0 0 1.5px var(--ink); }
.choice-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--cream-2); display: grid; place-items: center; flex-shrink: 0; }
.choice.selected .choice-icon { background: var(--amber); }
.choice-title { font-weight: 600; font-size: 15px; }
.choice-desc { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--paper);
  font-size: 15px; outline: none;
  transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink); box-shadow: 0 0 0 4px rgba(11,27,43,0.06);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.btn-back { color: var(--ink-soft); padding: 14px 18px; }
.btn-back:hover { color: var(--ink); }

.book-success {
  text-align: center; padding: 40px 0;
}
.book-success .check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green); color: var(--paper);
  display: grid; place-items: center; margin: 0 auto;
  animation: pop .5s cubic-bezier(.2,1.5,.4,1);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.book-success h3 { font-family: 'Bricolage Grotesque'; font-size: 28px; margin-top: 24px; letter-spacing: -0.02em; }
.book-success p { color: var(--ink-soft); margin-top: 10px; }

/* ---------- SERVICE AREA ---------- */
.area { padding: 120px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.area-list { margin-top: 32px; }
.area-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
  transition: padding .25s;
  cursor: pointer;
}
.area-list-item:hover { padding-left: 8px; }
.area-list-item:hover .area-name { color: var(--blue); }
.area-name { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 600; letter-spacing: -0.015em; transition: color .25s; }
.area-dist { font-size: 13px; color: var(--ink-soft); }
.area-list-item .ali-r { display: flex; align-items: center; gap: 14px; }
.area-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px; }
.area-tag.same { background: rgba(31,138,91,0.12); color: var(--green); }
.area-tag.next { background: rgba(232,150,30,0.15); color: var(--amber-deep); }

.area-map {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--paper);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---------- CONTACT ---------- */
.contact { padding: 80px 0 120px; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.contact .eyebrow { color: var(--amber-2); }
.contact .eyebrow::before { background: var(--amber); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; position: relative; }
.contact h2 { font-size: clamp(40px, 4.5vw, 64px); margin-top: 18px; color: var(--paper); }
.contact-cards { display: grid; gap: 16px; margin-top: 40px; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
  transition: all .25s;
}
.contact-card:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); border-color: var(--amber); }
.cc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,150,30,0.18); color: var(--amber-2); display: grid; place-items: center; flex-shrink: 0; }
.cc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,252,243,0.55); font-weight: 600; }
.cc-value { font-family: 'Bricolage Grotesque'; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px; }

.hours-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-top: 24px;
}
.hours-card h4 { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.hours-card .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--green); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 14px;
}
.hours-card .live .live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(31,138,91,0.18); animation: pulse 1.6s infinite; }
.hours-table { margin-top: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14.5px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: rgba(255,252,243,0.75); }
.hours-row .time { font-weight: 500; }
.hours-row.today .day { color: var(--amber-2); font-weight: 600; }
.hours-row.today .time { color: var(--paper); font-weight: 600; }

/* ---------- FOOTER ---------- */
.footer { background: #060F19; color: rgba(255,252,243,0.6); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h5 { font-family: 'Manrope'; color: var(--paper); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer li:hover { color: var(--amber-2); cursor: pointer; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom .signature { color: var(--amber-2); }

/* ---------- STICKY CALL/WA ---------- */
.sticky-cta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 100;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.sticky-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: all .3s;
  position: relative;
}
.sticky-btn:hover { transform: scale(1.08); }
.sticky-btn.wa { background: #25D366; }
.sticky-btn.call { background: var(--amber); color: var(--ink); }
.sticky-btn .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor;
  animation: ring 2s infinite;
  opacity: 0;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.sticky-btn.call .ring { color: var(--amber); }
.sticky-btn.wa .ring { color: #25D366; }
.sticky-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all .25s; transform: translateY(-50%) translateX(8px);
}
.sticky-btn:hover .sticky-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid, .services-grid, .how-grid, .why-grid, .book-grid, .area-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .counter-item { border-left: 0; padding-left: 0; }
  .nav-links { display: none; }
  .fc-rating, .fc-jobs { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .why-grid { display: flex; flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ============ MOBILE ============ */
@media (max-width: 720px) {
  /* base wrap & section rhythm */
  .wrap { padding: 0 18px; }
  section { scroll-margin-top: 70px; }
  .services, .how, .why, .book, .area { padding: 64px 0; }
  .contact { padding: 56px 0 88px; }
  .brands { padding: 48px 0; }

  /* ---- NAV ---- */
  .nav-inner { height: 64px; }
  .logo img { height: 42px; border-radius: 8px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; gap: 6px; }
  .nav-cta-dot { width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(255,176,74,0.25); }

  /* ---- HERO ---- */
  .hero { padding: 28px 0 76px; }
  .hero-grid { gap: 36px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.16em; }
  .eyebrow::before { width: 16px; }

  .hero h1 { font-size: clamp(40px, 11vw, 56px); margin-top: 18px; line-height: 1.0; }
  .hero h1 .hindi { font-size: 0.5em !important; margin-bottom: 8px !important; }
  .hero h1 .swap { min-width: 0; }
  .hero h1 .swap span { min-width: 0 !important; }

  .hero-sub { font-size: 15.5px; margin-top: 20px; line-height: 1.55; }
  .hero-cta-row { gap: 10px; margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; padding: 14px 18px; font-size: 14.5px; }

  .hero-meta { margin-top: 28px; gap: 16px; flex-wrap: wrap; }
  .hero-meta-item { font-size: 12px; }

  .hero-photos { aspect-ratio: 4/5; max-width: 100%; margin: 0; }
  .hero-photo { border-radius: 18px; }
  .hero-photo .label { left: 12px; bottom: 12px; padding: 8px 12px; font-size: 12px; border-radius: 10px; }
  .hero-bg-bolt, .hero-bg-circle { transform: scale(0.6); }

  /* ticker */
  .ticker { padding: 10px 0; }
  .ticker-track span { font-size: 11px; letter-spacing: 0.14em; }

  /* ---- COUNTERS ---- */
  .counters { padding: 48px 0; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .counter-num { font-size: 40px; }
  .counter-label { font-size: 11px; margin-top: 8px; letter-spacing: 0.1em; }

  /* ---- SECTION HEADS ---- */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(32px, 8.5vw, 44px); margin-top: 14px; }
  .section-head p { font-size: 15.5px; margin-top: 14px; }

  /* ---- SERVICES ---- */
  .services-grid { gap: 18px; }
  .service-card { aspect-ratio: 3/4; border-radius: 22px; }
  .service-card .content { padding: 24px; }
  .service-card .arrow { top: 20px; right: 20px; width: 42px; height: 42px; }
  .service-card h3 { font-size: 34px; margin-top: 12px; }
  .service-card .tagline { font-size: 14px; margin-top: 10px; }
  .service-card .pill-row { gap: 6px; margin-top: 18px; }
  .service-pill { padding: 6px 11px; font-size: 11.5px; }
  .service-card .badge { font-size: 10.5px; padding: 5px 10px; }

  /* ---- HOW ---- */
  .how { padding-top: 32px; }
  .how-grid { gap: 14px; margin-top: 36px; }
  .how-step { padding: 24px 22px; border-radius: 18px; }
  .how-step .step-num { font-size: 64px; right: 14px; top: 8px; }
  .how-step .step-icon { width: 48px; height: 48px; border-radius: 12px; }
  .how-step h4 { font-size: 21px; margin-top: 22px; }
  .how-step p { font-size: 14px; }

  /* ---- WHY ---- */
  .why-grid { gap: 0; border-radius: 18px; }
  .why-cell { padding: 26px; border-bottom: 1px solid var(--line); }
  .why-cell:last-child { border-bottom: 0; }
  .why-cell h4 { font-size: 18px; margin-top: 18px; }
  .why-cell p { font-size: 14px; }

  /* ---- BRANDS ---- */
  .brands-head p { font-size: 16.5px; line-height: 1.45; }
  .brand-item { font-size: 22px; }
  .marquee-track { gap: 40px; }

  /* ---- BOOK FORM ---- */
  .book-grid { gap: 32px; }
  .book-side .quick-call { margin-top: 28px; padding: 16px 18px; gap: 14px; }
  .qc-icon { width: 40px; height: 40px; }
  .qc-text-num { font-size: 18px; }
  .qc-text-top { font-size: 11px; }

  .book-form { padding: 22px 20px; border-radius: 22px; }
  .progress-row { gap: 6px; margin-bottom: 24px; }
  .progress-step { font-size: 0; gap: 0; }  /* hide labels on mobile, show numbers */
  .progress-step .ps-num { width: 26px; height: 26px; font-size: 12px; }
  .progress-step .ps-line { height: 2px; }

  .form-step h3 { font-size: 22px; }
  .form-step .sub { font-size: 13.5px; }
  .choice-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .choice { padding: 14px 16px; }
  .choice-icon { width: 36px; height: 36px; }
  .choice-title { font-size: 14.5px; }
  .choice-desc { font-size: 12px; }

  .field { margin-top: 14px; }
  .field input, .field textarea, .field select { padding: 12px 14px; font-size: 15px; border-radius: 10px; }
  .form-actions { margin-top: 24px; }
  .form-actions .btn { padding: 12px 18px; font-size: 14px; }
  .book-success .check { width: 60px; height: 60px; }
  .book-success h3 { font-size: 22px; }

  /* ---- AREA ---- */
  .area-grid { gap: 28px; }
  .area-list { margin-top: 24px; }
  .area-list-item { padding: 14px 0; flex-wrap: wrap; row-gap: 6px; }
  .area-name { font-size: 18px; }
  .area-list-item .ali-r { width: auto; gap: 10px; }
  .area-dist { font-size: 12.5px; }
  .area-tag { font-size: 10px; letter-spacing: 0.08em; padding: 3px 8px; }
  .area-map { aspect-ratio: 1/1; border-radius: 22px; }

  /* ---- CONTACT ---- */
  .contact-grid { gap: 36px; }
  .contact-card { padding: 18px 20px; gap: 14px; }
  .cc-icon { width: 44px; height: 44px; }
  .cc-value { font-size: 16.5px; line-height: 1.3; }
  .cc-label { font-size: 10.5px; letter-spacing: 0.12em; }
  .hours-card { padding: 24px 22px; border-radius: 18px; }
  .hours-card h4 { font-size: 20px; }
  .hours-row { padding: 9px 0; font-size: 14px; }

  /* ---- FOOTER ---- */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer h5 { font-size: 12px; margin-bottom: 14px; }
  .footer li { font-size: 13.5px; }
  .footer-bottom { font-size: 12px; padding-top: 20px; margin-top: 36px; }

  /* ---- STICKY CTA ---- */
  .sticky-cta { right: 16px; bottom: 16px; gap: 10px; }
  .sticky-btn { width: 52px; height: 52px; }
  .sticky-tooltip { display: none; }
}

/* extra-small */
@media (max-width: 380px) {
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 30px; }
  .service-card h3 { font-size: 30px; }
  .counter-num { font-size: 34px; }
  .nav-cta span:not(.nav-cta-dot) { display: none; }
  .nav-cta { padding: 9px 12px; }
  .nav-cta::after { content: 'Call'; }
}

/* ---------- SEO/A11Y additions for static rewrite ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: 0 0 8px 0;
  z-index: 1000; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

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

.hero-hindi {
  font-size: 0.6em; display: block;
  color: var(--ink-soft); font-weight: 400; margin-bottom: 14px;
}

/* Rotating word swap (static-HTML version) */
.swap { display: inline-block; min-width: 320px; color: var(--amber-deep); font-style: italic; font-family: 'Bricolage Grotesque', serif; position: relative; vertical-align: baseline; }
.swap-word { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; white-space: nowrap; }
.swap-word.active { position: relative; opacity: 1; transform: translateY(0); }

/* Brand item category sub-text */
.brand-cat { font-size: 14px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }

/* Footer headings — use h4 instead of h5 for hierarchy */
.footer h4 { font-family: 'Manrope'; color: var(--paper); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 18px; }
.footer a { color: inherit; transition: color .2s; }
.footer a:hover { color: var(--amber-2); }

.social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--paper); transition: all .2s;
}
.social-icon:hover { background: var(--amber); color: var(--ink); }

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; padding: 0; background: transparent; border: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 16px 24px 22px;
  background: rgba(250, 245, 232, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a { padding: 12px 4px; font-size: 16px; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn { justify-content: center; padding: 14px 18px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .mobile-menu:not([hidden]) { display: flex; }
}

/* Choice with radio input - mark .selected via JS (label.choice has [data-selected]) */
.choice input:checked + .choice-icon,
.choice[data-selected="true"] { border-color: var(--ink); background: var(--cream); box-shadow: inset 0 0 0 1.5px var(--ink); }
.choice[data-selected="true"] .choice-icon { background: var(--amber); }

/* Form actions layout fix */
.form-actions { justify-content: space-between; }
.form-actions:has(#btnBack[hidden]) #btnNext { margin-left: auto; }

/* Hours-card h3 (was h4 in original) */
.hours-card h3 { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
