/* ==========================================================
   INDIAN TAXIS — booking funnel styles
   Mobile-first. No CSS framework, no icon font: icons are
   inline SVG (see includes/icons.php) coloured by currentColor.

   Every colour, font and spacing value the page uses is a token
   in the :root block below — reskin the whole site by editing
   that block and nothing else.
   ========================================================== */

:root {
  /* Palette: taxi black-and-yellow. Yellow carries every CTA;
     charcoal carries structure. Both text pairings below clear
     WCAG AA (ink on yellow ~10:1, white on ink ~15:1). */
  --ink: #15171c;
  --ink-900: #0d0f13;
  --ink-700: #232830;
  --yellow: #f7c948;
  --yellow-strong: #f5b301;
  --yellow-dark: #c98f00;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #ebeef2;
  --gray-300: #ccd2da;
  --gray-500: #8d96a4;
  --gray-600: #5d6673;
  --text: #1b1f27;
  --success: #1e8a4c;
  --error: #c0392b;
  --whatsapp: #25d366;

  --font-heading: "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(13, 15, 19, 0.12);
  --shadow-sm: 0 3px 10px rgba(13, 15, 19, 0.08);
  --max-width: 1180px;
  --section-y: 56px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
section { padding: var(--section-y) 0; }
.section-alt { background: var(--off-white); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 14px; color: var(--gray-600); }
code { background: var(--gray-100); padding: 1px 5px; border-radius: 4px; font-size: 0.85em; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 8px;
}
.section-head { max-width: 660px; margin: 0 auto 36px; text-align: center; }
.section-head p { margin: 0 auto; }

/* Icons: sized in em so they scale with whatever text they sit next to. */
.icon { width: 1.2em; height: 1.2em; flex-shrink: 0; }
.icon-lg { width: 1.75em; height: 1.75em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--yellow-strong); color: var(--ink-900); }
.btn-primary:hover { background: var(--yellow); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-700); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--gray-300); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp); color: #06301a; }
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28); }
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--yellow-strong);
  color: var(--ink-900);
  font-size: 1.05rem;
}
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; }
/* Gap shrinks on narrower desktops so the six nav links, the phone number
   and the CTA all fit on one row at the 860px breakpoint. */
.main-nav { display: none; gap: clamp(14px, 1.6vw, 22px); }
.main-nav a { color: var(--gray-300); font-weight: 500; font-size: 0.92rem; }
.main-nav a:hover { color: var(--yellow); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; align-items: center; gap: 7px; color: var(--white); font-weight: 600; font-size: 0.94rem; }
.header-phone .icon { color: var(--yellow); }
.header-phone:hover { color: var(--yellow); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 16px 20px 24px;
  gap: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(247, 201, 72, 0.18), transparent 60%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-900) 100%);
  color: var(--white);
  padding: 48px 0;
}
/* Checker strip: the black-and-yellow taxi cue, drawn in CSS so it
   costs no image request. */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow-strong) 0 18px, var(--ink-900) 18px 36px);
}
.hero-inner { display: grid; gap: 32px; align-items: center; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247, 201, 72, 0.14);
  border: 1px solid rgba(247, 201, 72, 0.35);
  color: var(--yellow);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); font-size: clamp(1.95rem, 5vw, 3rem); margin-bottom: 16px; }
.hero .subhead { color: #c7cedb; font-size: 1.06rem; max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 10px; }
.hero-microcopy { font-size: 0.84rem; color: var(--gray-500); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #c7cedb; }
.trust-badge .icon { color: var(--yellow); }
.trust-badge strong { color: var(--white); font-weight: 700; }

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  color: var(--text);
  border-top: 5px solid var(--yellow-strong);
}
.form-card-title { font-size: 1.3rem; margin-bottom: 4px; }
.hero-form-card .form-note { font-size: 0.84rem; color: var(--gray-600); margin-bottom: 18px; }

/* ---------- Star ratings (SVG, never text glyphs) ---------- */
.stars { display: inline-flex; gap: 2px; }
.stars .star { width: 1em; height: 1em; color: var(--gray-300); }
.stars .star.is-on { color: var(--yellow-strong); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--off-white); padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trust-bar-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.fleet-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.fleet-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.fleet-chip .icon { color: var(--yellow-dark); }
.trust-bar-stat { font-size: 0.85rem; color: var(--gray-600); }
.trust-bar-stat strong { color: var(--ink); }

/* ---------- Pain / benefit ---------- */
.pain-grid { display: grid; gap: 20px; }
.pain-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--yellow-strong);
}
.pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.pain-card .pain {
  color: var(--error);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.pain-card h3 { margin-bottom: 8px; }
.pain-card p { margin-bottom: 0; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gray-300); }
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--ink-900);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 6px; }
.service-card p { font-size: 0.94rem; }
.micro-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  font-family: var(--font-heading);
}
.micro-cta .icon { transition: transform 0.15s ease; }
.micro-cta:hover { color: var(--yellow-dark); }
.micro-cta:hover .icon { transform: translateX(3px); }

/* ---------- Fleet gallery ---------- */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin: -18px 0 28px;
}
.fleet-filter {
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 8px 16px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.fleet-filter:hover { border-color: var(--ink); }
.fleet-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.fleet-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.vehicle-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gray-300); }
.vehicle-card[hidden] { display: none; }

.vehicle-media { position: relative; background: var(--gray-100); }
/* Fixed 8:5 box: every fleet photo is exported at 800x500, so the grid
   never reflows as images load in. */
.vehicle-media img { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; }
.vehicle-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--ink-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.vehicle-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.vehicle-body h3 { margin-bottom: 2px; font-size: 1.06rem; }
.vehicle-model { font-size: 0.88rem; font-weight: 600; color: var(--yellow-dark); margin-bottom: 12px; }
.vehicle-specs { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 6px; }
.vehicle-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--gray-600);
}
.vehicle-specs .icon { color: var(--ink); flex: none; }
.vehicle-best { font-size: 0.88rem; margin-bottom: 8px; }
.vehicle-best strong { color: var(--ink); }
.vehicle-similar { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 14px; }
.vehicle-body .micro-cta { margin-top: auto; }

.fleet-empty { text-align: center; margin: 26px 0 0; }
.fleet-empty a { color: var(--yellow-dark); font-weight: 600; text-decoration: underline; }
.fleet-note { max-width: 680px; margin: 26px auto 0; text-align: center; font-size: 0.84rem; }
.photo-credits {
  max-width: 780px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.photo-credits a { text-decoration: underline; }

/* ---------- Process ---------- */
.process-section { background: var(--ink); color: var(--white); }
.process-section h2, .process-section h3 { color: var(--white); }
.process-section .section-head p { color: #c7cedb; }
.process-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.process-step { text-align: center; }
.process-step p { color: #c7cedb; }
.process-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow-strong);
  color: var(--ink-900);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.15rem;
  margin: 0 auto 14px;
}

/* ---------- Reviews ---------- */
.reviews-note { text-align: center; font-size: 0.82rem; color: var(--gray-600); margin: -22px auto 30px; max-width: 620px; }
.reviews-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.review-card {
  position: relative;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sample-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.review-card .stars { margin-bottom: 12px; font-size: 1.05rem; }
.review-card .review-text { font-size: 0.95rem; color: var(--text); margin-bottom: 14px; }
.review-card .review-author { font-family: var(--font-heading); font-weight: 700; color: var(--ink); }
.review-card .review-meta { font-size: 0.78rem; color: var(--gray-600); }

/* ---------- Coverage / map ---------- */
.coverage-wrap { display: grid; gap: 28px; }
.city-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); align-content: start; }
.city-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.city-chip .icon { color: var(--yellow-dark); }
.city-chip:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.coverage-map { display: grid; gap: 16px; }
.map-frame { width: 100%; height: 300px; border: 0; border-radius: var(--radius); }
.coverage-note { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 20px; }
.coverage-note p { font-size: 0.92rem; }
.coverage-note .btn + .btn { margin-top: 10px; }

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; vertical-align: middle; }
.compare-table thead th { background: var(--ink); color: var(--white); font-family: var(--font-heading); font-size: 0.85rem; }
.compare-table thead th:nth-child(2) { color: var(--yellow); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td { color: var(--gray-600); }
.compare-table td span { display: inline-block; vertical-align: middle; }
.compare-table td .icon { vertical-align: middle; margin-right: 8px; }
.compare-table td.yes { color: var(--ink); font-weight: 600; }
.compare-table td.yes .icon { color: var(--success); }
.compare-table td.no .icon { color: var(--error); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-heading { margin: 0; font-size: 1rem; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-chevron { color: var(--yellow-dark); transition: transform 0.2s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { padding: 0 4px 18px; margin: 0; }
.faq-item.open .faq-answer { max-height: 420px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(700px 380px at 15% 0%, rgba(247, 201, 72, 0.16), transparent 60%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-900) 100%);
  color: var(--white);
}
.final-cta .section-head h2 { color: var(--white); }
.final-cta .section-head p { color: #c7cedb; }
.final-cta-grid { display: grid; gap: 30px; align-items: start; }
.final-cta-form {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.urgency-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(247, 201, 72, 0.16);
  border: 1px solid rgba(247, 201, 72, 0.5);
  color: #7a5900;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.final-call-block { display: flex; flex-direction: column; gap: 16px; }
.final-call-block .call-now {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 0.9rem;
  color: #c7cedb;
}
.final-call-block .call-now .icon { color: var(--yellow); }
.final-call-block .call-now .num { display: block; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--white); }
.benefit-list { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 12px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: #c7cedb; }
.benefit-list .icon { color: var(--yellow); margin-top: 3px; }

/* ---------- Form fields ---------- */
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
}
input:focus, select:focus { outline: 2px solid var(--yellow-strong); outline-offset: 1px; border-color: var(--yellow-strong); }
.form-cols { display: grid; gap: 0 14px; grid-template-columns: 1fr; }
.form-microcopy { font-size: 0.78rem; color: var(--gray-600); margin: 8px 0 0; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-status { display: none; padding: 11px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 14px; }
.form-status.show { display: block; }
.form-status.success { background: rgba(30, 138, 76, 0.12); color: var(--success); }
.form-status.error { background: rgba(192, 57, 43, 0.12); color: var(--error); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--gray-300); padding: 48px 0 0; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.footer-col h3 { color: var(--white); font-size: 1.1rem; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; margin: 18px 0 10px; }
.footer-col p, .footer-col a { color: var(--gray-300); font-size: 0.88rem; }
.footer-col > a { display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--yellow); }
.footer-hours { list-style: none; padding: 0; margin: 0; font-size: 0.84rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 36px auto 0;
  padding: 20px;
  max-width: var(--max-width);
  font-size: 0.78rem;
}
.footer-legal p { color: var(--gray-300); }
.footer-disclaimer { font-size: 0.74rem; color: var(--gray-500); margin-bottom: 0; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  background: var(--ink);
  border-top: 3px solid var(--yellow-strong);
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.mobile-call-bar a .icon { color: var(--yellow); }
.mobile-call-bar a.book { background: var(--yellow-strong); color: var(--ink-900); }

/* ---------- Utility ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.text-center { text-align: center; }

/* ==========================================================
   Breakpoints
   ========================================================== */
@media (min-width: 560px) {
  .form-cols { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  :root { --section-y: 80px; }
  .main-nav { display: flex; }
  .header-phone { display: flex; }
  .nav-toggle { display: none; }
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-wrap { grid-template-columns: 1fr 1fr; align-items: start; }
  .map-frame { height: 340px; }
  .final-cta-grid { grid-template-columns: 1.05fr 0.95fr; }
  .mobile-call-bar { display: none; }
}

@media (max-width: 859px) {
  body { padding-bottom: 56px; } /* room for the sticky mobile action bar */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
