/* =============================================
   MHB TRANSPORTATION · STYLESHEET v2
   ============================================= */

:root {
  --black:      #111111;
  --navy:       #0D1B4A;
  --blue:       #1A4FD6;
  --blue-mid:   #2563EB;
  --blue-light: #3B82F6;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --border:     #E4E7EE;
  --text:       #1C1C2E;
  --muted:      #5A637A;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --ease:       all 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--blue-mid); }
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 700; }

/* ---- LAYOUT ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--ease); font-family: inherit; white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #163fba; border-color: #163fba; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,79,214,0.28); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---- TOP BAR ---- */
.topbar { background: var(--black); padding: 9px 0; font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar, .topbar a { color: rgba(255,255,255,0.65); }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 24px; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 80px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links li a {
  color: var(--text); font-size: 0.87rem; font-weight: 500;
  padding: 8px 13px; border-radius: 8px;
  transition: var(--ease); display: block;
}
.nav-links li a:hover { background: var(--off-white); color: var(--blue); }
.nav-cta { background: var(--blue) !important; color: #fff !important; font-weight: 600 !important; border-radius: 8px; }
.nav-cta:hover { background: #163fba !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,79,214,0.25); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--ease); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #080808 0%, #0c1838 50%, #0f1d6b 100%);
  padding: 100px 0 92px;
  overflow: hidden;
  min-height: 600px;
  display: flex; align-items: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 48%, rgba(26,79,214,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 20px; display: block;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  margin-bottom: 38px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-trust span {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}
.hero-trust span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
}

/* ---- BLUE BAND ---- */
.blue-band { background: var(--blue); padding: 24px 0; }
.blue-band-inner { display: flex; justify-content: center; align-items: center; flex-wrap: nowrap; gap: 0; }
.band-item { padding: 4px 48px; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.band-item strong { color: #fff; font-size: 1.4rem; font-family: 'Montserrat', sans-serif; display: block; font-weight: 900; margin-bottom: 2px; }
.band-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.65); }
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--blue); background: rgba(26,79,214,0.07);
  border: 1px solid rgba(26,79,214,0.16);
  padding: 5px 13px; border-radius: 50px; margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: var(--ease); position: relative;
}
.svc:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(26,79,214,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.svc h3 { margin-bottom: 10px; color: var(--black); font-size: 1.05rem; }
.svc p { color: var(--muted); font-size: 0.91rem; line-height: 1.68; }
.svc-featured { background: var(--black); border-color: rgba(59,130,246,0.4); }
.svc-featured .svc-icon { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.svc-featured h3 { color: #fff; }
.svc-featured p { color: rgba(255,255,255,0.6); }
.svc-badge {
  position: absolute; top: -11px; left: 22px;
  background: var(--blue); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 13px; border-radius: 50px; letter-spacing: 0.5px;
}

/* ---- COVERAGE ---- */
.coverage-section { background: var(--off-white); }
.coverage-tabs {
  display: flex; gap: 6px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 5px;
  width: fit-content; margin-bottom: 28px;
}
.cov-tab {
  background: none; border: none; padding: 9px 24px;
  border-radius: 8px; font-family: inherit; font-size: 0.87rem;
  font-weight: 600; color: var(--muted); cursor: pointer; transition: var(--ease);
}
.cov-tab:hover { background: var(--off-white); color: var(--blue); }
.cov-tab.active { background: var(--blue); color: #fff; }

.map-wrapper { display: flex; flex-direction: column; gap: 18px; }
.map-wrapper iframe { border: 1.5px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.map-legend { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 22px; }
.legend-title { font-weight: 600; font-size: 0.86rem; color: var(--text); margin-bottom: 13px; }
.legend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.legend-chip {
  display: block; background: var(--off-white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 12px; font-size: 0.8rem; font-weight: 500;
  color: var(--text); transition: var(--ease);
}
.legend-chip:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,79,214,0.04); }

.cities-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.panel-subhead { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.city-grid span {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px;
  font-size: 0.82rem; color: var(--text); font-weight: 500;
}
.coverage-note { font-size: 0.84rem; color: var(--muted); margin-top: 12px; }
.hours-col { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* ---- HOW IT WORKS ---- */
.hiw-section { background: linear-gradient(135deg, #0a0a0a 0%, var(--navy) 100%); }
.steps-row { display: flex; align-items: flex-start; gap: 8px; }
.step { flex: 1; text-align: center; padding: 28px 20px; }
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--blue-light); opacity: 0.55;
  margin-bottom: 12px; line-height: 1;
}
.step h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.58); font-size: 0.87rem; line-height: 1.68; }
.step-connector { color: rgba(255,255,255,0.2); font-size: 2rem; margin-top: 36px; flex-shrink: 0; }

/* ---- ABOUT ---- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-left .eyebrow { display: inline-block; margin-bottom: 12px; }
.about-left h2 { margin-bottom: 20px; }
.about-lead { font-size: 1.04rem; font-weight: 500; color: var(--text); margin-bottom: 16px; line-height: 1.72; }
.about-left > p { color: var(--muted); margin-bottom: 30px; font-size: 0.95rem; }
.trust-list { display: flex; flex-direction: column; gap: 20px; }
.trust-row { display: flex; gap: 16px; align-items: flex-start; }
.tr-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(26,79,214,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.trust-row strong { display: block; font-size: 0.92rem; color: var(--black); margin-bottom: 4px; }
.trust-row p { color: var(--muted); font-size: 0.84rem; margin: 0; line-height: 1.6; }

.review-stack { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 26px;
  box-shadow: var(--shadow-sm); transition: var(--ease);
}
.review-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 0.88rem; margin-bottom: 12px; letter-spacing: 3px; }
.review-card p {
  color: var(--muted); font-size: 0.91rem;
  font-style: italic; line-height: 1.65; margin-bottom: 12px;
}
.review-card cite { font-size: 0.82rem; font-weight: 600; color: var(--blue); font-style: normal; }

/* ---- INSURANCE STRIP ---- */
.insurance-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0; text-align: center;
}
.ins-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--black); margin-bottom: 22px;
}
.ins-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 18px; }
.ins-pill {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 10px 22px;
  font-size: 0.87rem; font-weight: 600; color: var(--text);
}
.ins-sub { color: var(--muted); font-size: 0.87rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 19px 4px; text-align: left; font-family: inherit;
  font-size: 0.96rem; font-weight: 600; color: var(--black);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-arr { font-size: 1rem; transition: transform 0.2s ease; flex-shrink: 0; color: var(--muted); }
.faq-q.open .faq-arr { transform: rotate(180deg); color: var(--blue); }
.faq-a { display: none; padding: 0 4px 19px; }
.faq-a.active { display: block; }
.faq-a p { color: var(--muted); font-size: 0.91rem; line-height: 1.72; }

/* ---- CONTACT / BOOKING ---- */
.contact-section { background: linear-gradient(135deg, #0a0a0a 0%, var(--navy) 100%); }
.contact-layout { display: grid; grid-template-columns: 1.45fr 1fr; gap: 48px; align-items: start; }

.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.81rem; font-weight: 600; color: rgba(255,255,255,0.78); letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 9px; padding: 11px 14px;
  color: #fff; font-family: inherit;
  font-size: 0.92rem; transition: var(--ease); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group select option { background: #1a1a2e; color: #fff; }
.form-note { font-size: 0.73rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: -4px; }

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 30px; margin-bottom: 16px;
}
.contact-card h3 { color: #fff; margin-bottom: 14px; font-size: 1.08rem; }
.big-phone { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
.big-phone:hover { color: var(--blue-light); }
.contact-card > p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 20px; }
.aside-hours p { color: rgba(255,255,255,0.55); font-size: 0.86rem; }
.aside-hours { margin-bottom: 18px; }
.aside-email a { color: rgba(255,255,255,0.58); font-size: 0.86rem; }
.aside-email a:hover { color: var(--blue-light); }
.not-emergency {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.22);
  border-radius: var(--radius); padding: 14px 18px;
  font-size: 0.82rem; color: rgba(255,190,190,0.82);
  line-height: 1.55;
}

/* ---- FOOTER ---- */
.footer { background: var(--black); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 44px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.84rem; line-height: 1.72; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: var(--ease);
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h4 { font-size: 0.83rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; font-weight: 700; letter-spacing: 0.4px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li { color: rgba(255,255,255,0.42); font-size: 0.84rem; transition: var(--ease); }
.footer-col li a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-badges { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }
.footer-badges span {
  color: rgba(255,255,255,0.35); font-size: 0.77rem;
  padding-left: 16px; position: relative;
}
.footer-badges span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}
.footer-bar { padding: 20px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bar-inner p { color: rgba(255,255,255,0.28); font-size: 0.77rem; }
.footer-bar-inner a { color: rgba(255,255,255,0.32); font-size: 0.77rem; }
.footer-bar-inner a:hover { color: var(--blue-light); }

/* ---- MODAL ---- */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px 38px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.modal-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.modal-box h3 { margin-bottom: 10px; }
.modal-box p { color: var(--muted); margin-bottom: 26px; font-size: 0.94rem; line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-layout { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {

  /* Global spacing */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* Topbar */
  .topbar { padding: 8px 0; font-size: 0.78rem; }
  .topbar-right { display: none; }

  /* Navbar */
  .navbar { padding: 8px 0; }
  .nav-logo-img { height: 52px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0; background: #fff; z-index: 800;
    flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.1rem; padding: 13px 28px; }

  /* Hero */
  .hero { padding: 52px 0 48px; min-height: unset; }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: 14px; letter-spacing: 1.2px; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 14px 20px; }
  .hero-trust { gap: 8px 16px; }
  .hero-trust span { font-size: 0.76rem; }

  /* Stats band */
  .blue-band { padding: 18px 0; }
  .blue-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .band-sep { display: none; }
  .band-item { padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .band-item:nth-child(1), .band-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .band-item strong { font-size: 1.2rem; }
  .band-item { font-size: 0.8rem; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.92rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc { padding: 22px 20px; }
  .svc-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  /* Coverage */
  .coverage-section .section { padding: 48px 0; }
  .coverage-tabs { width: 100%; }
  .cov-tab { flex: 1; text-align: center; padding: 9px 12px; font-size: 0.82rem; }
  .cities-layout { grid-template-columns: 1fr; gap: 24px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .legend-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper iframe { height: 280px; }

  /* How it works */
  .steps-row { flex-direction: column; gap: 0; }
  .step-connector { display: none; }
  .step { padding: 20px 16px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { font-size: 1.8rem; min-width: 40px; margin-bottom: 0; opacity: 0.7; }
  .step h3 { font-size: 0.95rem; margin-bottom: 6px; }
  .step p { font-size: 0.84rem; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-lead { font-size: 0.97rem; }

  /* Reviews */
  .review-card { padding: 18px 20px; }
  .review-card p { font-size: 0.87rem; }

  /* Insurance */
  .insurance-strip { padding: 36px 0; }
  .ins-pills { gap: 8px; }
  .ins-pill { padding: 8px 16px; font-size: 0.82rem; }

  /* FAQ */
  .faq-q { font-size: 0.9rem; padding: 16px 4px; }
  .faq-a p { font-size: 0.87rem; }

  /* Contact / Booking */
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { padding: 22px 20px; }
  .big-phone { font-size: 1.25rem; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-logo-img { height: 52px; }
  .footer-bar-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* Modal */
  .modal-box { padding: 32px 24px; }

  /* Sticky call bar */
  .sticky-call { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.55rem; }
  .section-header h2 { font-size: 1.25rem; }
  .services-grid { gap: 12px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .legend-grid { grid-template-columns: 1fr; }
  .ins-pills { flex-direction: column; align-items: stretch; }
  .ins-pill { text-align: center; }
  .band-item strong { font-size: 1.1rem; }
}

/* ---- STICKY MOBILE CALL BAR ---- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(26,79,214,0.35);
}
.sticky-call:hover { background: #163fba; color: #fff; }
