/* ============================================================
   Fix It Brampton — Warm editorial trades aesthetic
   Proud Punjabi-Canadian handyman identity
   ============================================================ */

:root {
  /* Palette — warm paper, tradesman amber, maroon flourish */
  --paper: #FDFAF4;
  --paper-deep: #F4E9D6;
  --cream-card: #FFFDF7;
  --ink: #1A120B;
  --ink-soft: #3A2815;
  --ink-mute: #6B5140;
  --amber: #C97B2E;
  --amber-dark: #A55E1A;
  --amber-soft: #F4D2A6;
  --maroon: #7A1F2D;
  --maroon-soft: #E6C6CB;
  --rule: rgba(58, 40, 21, 0.14);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(58, 40, 21, 0.06);
  --shadow-md: 0 8px 24px -10px rgba(58, 40, 21, 0.16), 0 2px 4px rgba(58, 40, 21, 0.04);
  --shadow-lg: 0 24px 60px -24px rgba(58, 40, 21, 0.28), 0 4px 10px rgba(58, 40, 21, 0.06);

  /* Type */
  --font-display: "Fraunces", "Noto Serif Gurmukhi", Georgia, serif;
  --font-body: "Manrope", "Noto Sans Gurmukhi", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-gurmukhi: "Noto Serif Gurmukhi", "Noto Sans Gurmukhi", "Fraunces", serif;

  /* Layout */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  background-image:
    radial-gradient(at 12% 4%, rgba(201, 123, 46, 0.08), transparent 55%),
    radial-gradient(at 88% 92%, rgba(122, 31, 45, 0.05), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="pa"] body { font-family: var(--font-gurmukhi); }
html[lang="pa"] h1, html[lang="pa"] h2, html[lang="pa"] h3 { font-family: var(--font-gurmukhi); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--amber-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--maroon); }

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

/* ======================================================
   Buttons
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--paper);
  box-shadow: 0 2px 0 var(--amber-dark), var(--shadow-md);
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--paper);
  box-shadow: 0 2px 0 var(--maroon), var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ======================================================
   Pre-header Punjabi strip — always visible
   ====================================================== */
.prestrip {
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
}
.prestrip .gurmukhi {
  font-family: var(--font-gurmukhi);
  color: var(--amber-soft);
  font-size: 15px;
  font-weight: 600;
  margin-right: 4px;
}
.prestrip .sep {
  display: inline-block;
  opacity: 0.4;
  margin: 0 10px;
}

/* ======================================================
   Header
   ====================================================== */
.header {
  background: rgba(253, 250, 244, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name .en {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  font-variation-settings: "opsz" 14, "SOFT" 20;
  letter-spacing: -0.01em;
}
.brand-name .pa {
  font-family: var(--font-gurmukhi);
  font-size: 13px;
  color: var(--amber-dark);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.header-phone:hover { background: var(--paper-deep); color: var(--ink); }

.lang-toggle {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-gurmukhi);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.lang-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ======================================================
   Hero
   ====================================================== */
.hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(201, 123, 46, 0.12), transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(122, 31, 45, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: riseIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-eyebrow .flag {
  width: 22px; height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-gurmukhi);
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 16ch;
  margin-bottom: 8px;
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s both;
}
.hero h1 .accent {
  color: var(--amber-dark);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: 6px;
  height: 10px;
  background: var(--amber-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.hero-pa-title {
  font-family: var(--font-gurmukhi);
  font-size: clamp(18px, 2.3vw, 26px);
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
}

.hero-tagline {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.55;
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s both;
}

.hero-reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-mute);
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s both;
}
.hero-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.hero-reassure svg { color: var(--amber-dark); flex-shrink: 0; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================================
   Trust Bar
   ====================================================== */
.trustbar {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 0;
  border-top: 6px solid var(--amber);
  border-bottom: 6px solid var(--maroon);
}
.trustbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
.trustbar-item { }
.trustbar-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--amber-soft);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.trustbar-item span {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ======================================================
   Sections (common)
   ====================================================== */
section[id] { scroll-margin-top: 90px; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  padding: 4px 0;
  border-bottom: 2px solid var(--amber);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 14px;
}
.section-title em {
  font-style: italic;
  color: var(--amber-dark);
}

.section-lede {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 48px;
}

/* ======================================================
   Services
   ====================================================== */
.services { padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--cream-card);
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber-soft);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--amber-soft), var(--paper-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--amber-dark);
  box-shadow: inset 0 0 0 1px rgba(165, 94, 26, 0.12);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
}
a.service-card {
  color: inherit;
  text-decoration: none;
  display: block;
}
a.service-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-size: 20px;
  color: var(--amber-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--font-display);
}
a.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ======================================================
   Our Process
   ====================================================== */
.process {
  padding: 96px 0;
  background: var(--paper);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
  margin-top: 8px;
  position: relative;
}
.process-step {
  position: relative;
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-soft);
}
.process-step .step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  background: var(--ink);
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 1px 0 var(--maroon);
}
.process-step .step-num::before {
  content: counter(step, decimal-leading-zero);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
}
.process-step .pa-caption {
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
  padding-top: 8px;
}

/* ======================================================
   Subpage — Breadcrumb, Service Hero, Included, Related, CTA
   ====================================================== */
.breadcrumb {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--amber);
  opacity: 0.7;
}
.breadcrumb a {
  color: var(--ink-soft);
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--amber-dark); }
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.service-hero {
  position: relative;
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201, 123, 46, 0.10), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(122, 31, 45, 0.07), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 18ch;
  margin-bottom: 10px;
}
.service-hero h1 em {
  font-style: italic;
  color: var(--amber-dark);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.service-hero .service-pa-subtitle {
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 600;
  margin-bottom: 20px;
}
.service-hero .service-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.65;
  margin-bottom: 28px;
}
.service-hero .service-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-card);
  border: 1px solid var(--amber-soft);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.service-hero .service-price-chip strong {
  background: var(--amber);
  color: var(--paper);
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.service-hero .service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-alt {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.included {
  padding: 80px 0;
}
.included-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.included-list li {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 16px 18px 16px 48px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 16px; top: 18px;
  width: 20px; height: 20px;
  background: var(--amber);
  border-radius: 50%;
}
.included-list li::after {
  content: "";
  position: absolute;
  left: 21px; top: 24px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  transform: rotate(-45deg);
}
.included-aside {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 26px;
  border-radius: var(--radius);
  border-top: 4px solid var(--amber);
}
.included-aside h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.included-aside p {
  color: rgba(253, 250, 244, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.included-aside .pa {
  font-family: var(--font-gurmukhi);
  color: var(--amber-soft);
  font-size: 14px;
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(253, 250, 244, 0.14);
}

.related {
  padding: 80px 0;
  background: var(--paper);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cta-strip {
  padding: 64px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  border-top: 6px solid var(--amber);
  border-bottom: 6px solid var(--maroon);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 123, 46, 0.2), transparent 50%);
}
.cta-strip > .container { position: relative; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--amber-soft);
}
.cta-strip p {
  color: rgba(253, 250, 244, 0.7);
  margin-bottom: 24px;
  font-size: 17px;
}
.cta-strip .pa {
  font-family: var(--font-gurmukhi);
  color: var(--amber-soft);
  margin-top: 18px;
  font-size: 15px;
}

/* Tablet/desktop adaptations for new sections */
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .included-list { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .included-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; }
}

/* ======================================================
   Pricing Transparency
   ====================================================== */
.pricing {
  padding: 96px 0;
  background: var(--paper-deep);
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(201, 123, 46, 0.08), transparent 50%);
  pointer-events: none;
}
.pricing > .container { position: relative; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-soft);
}
.price-card.highlight {
  border-color: var(--amber);
  background: var(--cream-card);
  box-shadow: var(--shadow-md);
}
.price-card.highlight::before {
  content: "Most asked";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--amber);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.price-card .price-range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--amber-dark);
  line-height: 1.1;
  margin: 10px 0 12px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.price-card .price-range small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}
.price-card p {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.price-card .pa-caption {
  display: block;
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
  font-size: 13px;
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
}
.price-note {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--cream-card);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.price-note strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ======================================================
   Reviews Scaffold
   ====================================================== */
.reviews {
  padding: 96px 0;
  background: var(--paper);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}
.review-card {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.review-card .stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card .review-empty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  justify-content: center;
  text-align: center;
  color: var(--ink-mute);
}
.review-card .review-empty .dashed {
  width: 42px; height: 42px;
  border: 2px dashed var(--amber-soft);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.review-card h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.review-card p {
  font-size: 15px;
  line-height: 1.6;
}
.review-card.review-cta {
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--amber);
}
.review-card.review-cta h4 { color: var(--paper); }
.review-card.review-cta p { color: rgba(253, 250, 244, 0.7); margin-bottom: 14px; }
.review-card.review-cta .pa {
  font-family: var(--font-gurmukhi);
  color: var(--amber-soft);
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(253, 250, 244, 0.14);
  font-size: 13px;
}
.review-card.review-cta .btn { width: 100%; }

/* ======================================================
   Floating mobile CTA
   ====================================================== */
.floating-cta {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  z-index: 200;
  pointer-events: none;
}
.floating-cta a {
  pointer-events: auto;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 24px -8px rgba(26, 18, 11, 0.35), 0 2px 6px rgba(26, 18, 11, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s;
}
.floating-cta a:hover { transform: translateY(-2px); }
.floating-cta .fc-text {
  background: var(--amber);
  color: var(--paper);
}
@media (min-width: 768px) {
  .floating-cta { display: none; }
  body.no-float-ghost { padding-bottom: 0; }
}
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}

/* ======================================================
   Scroll Reveal
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Tablet+ adaptations */
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ======================================================
   Why Choose Us
   ====================================================== */
.why {
  padding: 96px 0;
  background: var(--paper-deep);
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 14px,
    rgba(201, 123, 46, 0.04) 14px,
    rgba(201, 123, 46, 0.04) 15px
  );
  pointer-events: none;
}
.why > .container { position: relative; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.why-num {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--amber-soft);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
  max-width: 12ch;
  letter-spacing: -0.015em;
}
.why-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
}
.why-card .pa-caption {
  display: block;
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
  font-size: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* ======================================================
   About
   ====================================================== */
.about {
  padding: 96px 0;
  background: var(--paper);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--amber-soft) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(165, 94, 26, 0.35);
  border-radius: 18px;
  pointer-events: none;
}
.portrait-glyph {
  width: 62%;
  opacity: 0.85;
  color: var(--amber-dark);
  margin-bottom: 8%;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 17px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.about-pa {
  font-family: var(--font-gurmukhi);
  font-size: 17px;
  color: var(--maroon);
  background: var(--cream-card);
  padding: 18px 22px;
  border-left: 3px solid var(--maroon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  line-height: 1.7;
}
.about-pledge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-pledge div {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.about-pledge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.about-pledge span {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ======================================================
   Service Area
   ====================================================== */
.area {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(201, 123, 46, 0.18), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(122, 31, 45, 0.14), transparent 50%);
}
.area > .container { position: relative; z-index: 1; }
.area .section-eyebrow { color: var(--amber-soft); border-bottom-color: var(--amber); }
.area .section-title { color: var(--paper); }
.area .section-title em { color: var(--amber-soft); }
.area .section-lede { color: rgba(253, 250, 244, 0.7); }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.area-list li {
  background: rgba(253, 250, 244, 0.08);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--paper);
  border: 1px solid rgba(253, 250, 244, 0.15);
  font-size: 15px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.area-list li:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.area-note {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(253, 250, 244, 0.6);
  font-style: italic;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq {
  padding: 96px 0;
  background: var(--paper);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 48px 22px 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--amber-dark);
  border-bottom: 2px solid var(--amber-dark);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item:hover summary { color: var(--amber-dark); }
.faq-item[open] summary { color: var(--amber-dark); }
.faq-item .answer {
  padding: 0 4px 22px;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.7;
  max-width: 68ch;
}
.faq-item .answer .pa {
  display: block;
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
  font-size: 15px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
}

/* ======================================================
   Contact
   ====================================================== */
.contact {
  padding: 96px 0;
  background: var(--paper-deep);
  position: relative;
  border-top: 1px solid var(--rule);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.contact-info {
  background: var(--cream-card);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.contact-info p { color: var(--ink-mute); margin-bottom: 8px; }
.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--amber-dark);
  margin: 12px 0 18px;
  letter-spacing: -0.01em;
}
.contact-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--paper-deep);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact-hours::before {
  content: "";
  width: 8px; height: 8px;
  background: #2e7d32;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.contact-form {
  background: var(--cream-card);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 123, 46, 0.18);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button {
  margin-top: 22px;
  width: 100%;
}
.form-status {
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
  min-height: 22px;
  font-size: 15px;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

.consent-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
  line-height: 1.55;
}

/* ======================================================
   Footer
   ====================================================== */
.footer {
  background: var(--ink);
  color: rgba(253, 250, 244, 0.75);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 36ch; }
.footer-brand .brand-name .en { color: var(--paper); }
.footer-brand p { margin-top: 14px; line-height: 1.6; color: rgba(253, 250, 244, 0.6); }

.footer h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a {
  color: rgba(253, 250, 244, 0.7);
  transition: color 0.2s;
}
.footer a:hover { color: var(--amber-soft); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(253, 250, 244, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: rgba(253, 250, 244, 0.5);
  font-size: 13px;
}
.footer-bottom .pa {
  font-family: var(--font-gurmukhi);
  color: var(--amber-soft);
}

/* ======================================================
   Desktop adaptations
   ====================================================== */
@media (min-width: 640px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
  .trustbar-item { padding: 0 8px; }
}

@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
  .hero { padding: 120px 0 80px; }
  .about-inner { grid-template-columns: minmax(280px, 380px) 1fr; gap: 56px; }
  .about-pledge { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 360px 1fr; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ======================================================
   Services Directory (/services)
   ====================================================== */
.idx-breadcrumb {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-muted);
}
.idx-breadcrumb .container { display: flex; gap: 10px; align-items: center; }
.idx-breadcrumb a { color: var(--maroon); font-weight: 600; text-decoration: none; }
.idx-breadcrumb a:hover { text-decoration: underline; }

.idx-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 123, 46, 0.14), transparent 60%),
    radial-gradient(ellipse at 95% 100%, rgba(122, 31, 45, 0.10), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.idx-hero-inner { max-width: 900px; }
.idx-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 18px 0 18px;
  color: var(--ink);
}
.idx-hero-title em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 400;
}
.idx-hero-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 720px;
  margin: 0 0 28px;
}
.idx-hero-lede strong { color: var(--ink); font-weight: 600; }
.idx-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.idx-hero-stats span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.idx-hero-stats strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.idx-jump {
  padding: 28px 0;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  background: rgba(248, 241, 230, 0.94);
}
.idx-jump-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin: 0 0 12px;
  font-weight: 600;
}
.idx-nav-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.idx-nav-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.idx-nav-chip:hover {
  background: var(--amber);
  color: var(--paper);
  border-color: var(--amber);
}
.idx-nav-chip--area:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.idx-body { padding: 56px 20px; max-width: 1200px; }

.idx-axis-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin: 0 0 40px;
  padding-bottom: 0;
}
.idx-axis-tab {
  padding: 14px 22px;
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.idx-axis-tab:hover { color: var(--ink); }
.idx-axis-tab--active {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
}

.idx-service-section {
  padding: 44px 0;
  border-bottom: 1px dashed var(--line);
  scroll-margin-top: 100px;
}
.idx-service-section:last-of-type { border-bottom: none; }
.idx-service-head {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.idx-service-head > div:first-child { flex: 1; min-width: 280px; }
.idx-service-pa {
  font-family: var(--font-gurmukhi);
  font-size: 18px;
  color: var(--maroon);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.idx-service-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.idx-service-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  max-width: 680px;
}
.idx-service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 12px 20px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  white-space: nowrap;
}
.idx-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.idx-price-hint {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.idx-section-label {
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 16px;
}
.idx-section-label .gurmukhi {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-gurmukhi);
  color: var(--maroon);
}

.idx-area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.idx-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.idx-pill:hover {
  border-color: var(--amber);
  background: rgba(201, 123, 46, 0.06);
  transform: translateY(-1px);
}
.idx-pill-en { font-weight: 600; color: var(--ink); }
.idx-pill-pa {
  font-family: var(--font-gurmukhi);
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 400;
}

.idx-area-wrap {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 3px solid var(--line);
}
.idx-axis-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  color: var(--ink);
}
.idx-axis-title em { color: var(--maroon); font-weight: 400; }
.idx-axis-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 0 32px;
}
.idx-area-jump {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.idx-area-section {
  padding: 28px 0;
  border-bottom: 1px dashed var(--line);
  scroll-margin-top: 100px;
}
.idx-area-section:last-of-type { border-bottom: none; }
.idx-area-head { margin-bottom: 14px; }
.idx-area-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.idx-area-parent {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  font-family: var(--font-body);
  letter-spacing: 0;
}
.idx-area-pa {
  font-family: var(--font-gurmukhi);
  font-size: 14px;
  color: var(--maroon);
  margin: 2px 0 0;
}
.idx-svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.idx-svc-grid .idx-pill { padding: 10px 14px; font-size: 13.5px; }

.idx-outro {
  margin-top: 80px;
  padding: 48px 36px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.idx-outro::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 123, 46, 0.16), transparent 70%);
  pointer-events: none;
}
.idx-outro-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.idx-outro-title em { color: var(--maroon); font-weight: 400; }
.idx-outro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto 24px;
}
.idx-phone {
  color: var(--amber);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
}
.idx-phone:hover { color: var(--maroon); border-color: var(--maroon); }
.idx-outro-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .idx-hero { padding: 56px 0 40px; }
  .idx-hero-stats { gap: 18px; }
  .idx-hero-stats strong { font-size: 26px; }
  .idx-service-head { flex-direction: column; gap: 16px; }
  .idx-service-meta { align-items: flex-start; width: 100%; }
  .idx-body { padding: 40px 16px 80px; }
  .idx-outro { padding: 36px 20px; }
}

/* ======================================================
   Reduced motion
   ====================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
