/* =========================================================
   Jiffy Lift Towing — shared stylesheet (v3)
   Navy Blue + Maroon Red + White, mobile-first.
   Variable names retained from v2 for inline-style compat.
   ========================================================= */

:root {
  /* Brand palette */
  --navy: #1A2C5B;
  --navy-dark: #0F1B3D;
  --maroon: #B23945;
  --maroon-dark: #8E2A33;

  /* Legacy var names remapped to new palette so inline styles still work */
  --black: #ffffff;          /* was page bg → now white */
  --black-2: #f8f9fb;        /* was section bg → now off-white */
  --black-3: #eef1f6;        /* was form bg dark → now soft surface */
  --white: #1A2C5B;          /* was foreground text → now navy (used for body text) */
  --true-white: #ffffff;     /* explicit white when needed */

  --gray-100: #f5f7fa;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #4a5568;       /* muted body text on light bg */
  --gray-500: #6b7280;
  --gray-700: #1f2937;

  --yellow: #8B1B25;         /* primary accent → maroon */
  --yellow-2: #6B141C;       /* hover → darker maroon */
  --yellow-soft: rgba(139, 27, 37, .10);
  --shadow-yellow: 0 8px 24px rgba(139, 27, 37, .28);

  --border: #e2e8f0;
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1200px;
  --section-py: clamp(56px, 7vw, 96px);
  --container-px: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #ffffff;
  color: var(--navy);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dark); }
::selection { background: var(--maroon); color: #ffffff; }

h1, h2, h3 {
  font-family: 'Bebas Neue', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.04;
  margin: 0 0 .4em;
  text-transform: uppercase;
  color: var(--navy);
}
h1 { font-size: clamp(40px, 7vw, 84px); }
h2 { font-size: clamp(30px, 5vw, 54px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 14.5px;
  color: var(--maroon);
  margin: 0 0 14px;
}
@media (max-width: 719px) { .eyebrow { font-size: 13.5px; letter-spacing: .18em; } }
.yellow { color: var(--maroon); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--container-px); }
section { padding: var(--section-py) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  min-height: 52px;
}
.btn-primary { background: var(--maroon); color: #ffffff; box-shadow: var(--shadow-yellow); }
.btn-primary:hover { background: var(--maroon-dark); color: #ffffff; transform: translateY(-2px); }
.btn-ghost {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #ffffff; border-color: var(--navy); }
.btn-lg { padding: 18px 28px; font-size: 17px; min-height: 58px; }
.btn-xl { padding: 22px 36px; font-size: 22px; min-height: 68px; font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15, 27, 61, .04);
  transition: box-shadow .2s ease;
}
@media (max-width: 719px) {
  .header-inner { transition: padding .2s ease; }
  .header .logo-img { transition: height .2s ease; }
  .header .header-cta { transition: padding .2s ease, font-size .2s ease; }
  .header-strip { transition: max-height .25s ease, padding .2s ease, opacity .2s ease, border-color .2s ease; max-height: 40px; overflow: hidden; }
  .header-scrolled .header-inner { padding-top: 6px; padding-bottom: 6px; }
  .header-scrolled .logo-img { height: 38px !important; width: auto !important; }
  .header-scrolled .header-strip { max-height: 0; padding: 0; opacity: 0; border-color: transparent; }
  .header-scrolled { box-shadow: 0 2px 10px rgba(15, 27, 61, .08); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--container-px);
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}
.header-strip {
  border-top: 1px solid var(--border);
  background: #fafbfc;
}
.header-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #4a5677;
  text-decoration: none;
  line-height: 1;
  transition: color .15s ease;
}
.strip-link:hover { color: var(--navy); }
.strip-link svg { flex: 0 0 auto; }
.strip-sep {
  color: #c5cad6;
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 480px) {
  .header-strip-inner { gap: 10px; padding: 5px 12px; }
  .strip-link { font-size: 11px; gap: 4px; }
  .strip-link svg { width: 12px; height: 12px; }
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* Header Home button (subpages) */
.header-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-left: 4px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.header-home svg { width: 16px; height: 16px; }
.header-home:hover {
  background: var(--navy);
  color: #ffffff;
}
.header-home:active { transform: translateY(1px); }
@media (max-width: 520px) {
  .header-home span { display: none; }
  .header-home { padding: 8px 10px; }
}
@media (max-width: 460px) {
  .logo-img { height: 52px; }
}
/* Hide legacy text logo when present alongside img */
.logo .logo-mark, .logo .logo-text { display: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1;
  box-shadow: var(--shadow-yellow);
  text-decoration: none;
}
.header-cta:hover { background: var(--maroon-dark); color: #ffffff; }
.header-cta .num { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .02em; white-space: nowrap; }

/* ---------- Homepage hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  isolation: isolate;
  min-height: clamp(460px, 60vh, 600px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Mobile: clean navy with subtle radial highlight — no photo */
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .06) 0%, transparent 55%),
    linear-gradient(180deg, #1f3367 0%, #142648 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: transparent;
  z-index: -1;
}
@media (min-width: 900px) {
  .hero::before {
    background:
      url('../img/hero/suv-flatbed-night.webp') center right / cover no-repeat,
      #1a2c5b;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(20, 38, 72, .96) 0%, rgba(20, 38, 72, .85) 38%, rgba(20, 38, 72, .45) 70%, rgba(20, 38, 72, .25) 100%),
      linear-gradient(180deg, rgba(20, 38, 72, .15) 0%, rgba(20, 38, 72, .35) 100%);
  }
}
.hero-content { max-width: 760px; }
@media (max-width: 719px) {
  .hero-content { text-align: center; }
  .hero-content h1 { text-align: center; }
  .hero-content p.lead { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-content .hero-cta-grid { margin-left: auto; margin-right: auto; }
  .hero-content .hero-trust { justify-content: center; }
  .hero { padding: 20px 0 28px; min-height: auto; }
  .hero p.lead { margin-top: 8px; }
  .hero-cta-grid { margin-top: 16px; }
}
.hero h1, .hero h2, .hero p { color: #ffffff; }
.hero h1 .yellow, .hero .yellow { color: #ffffff; text-shadow: 0 0 1px rgba(255,255,255,.3); }
/* "Trusted in Houston · 15+ Years" eyebrow above hero buttons */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-eyebrow-icon { flex-shrink: 0; }
/* Wrapper: badge + chips + eyebrow — centered on mobile, left-aligned on desktop */
.hero-cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  text-align: center;
}
@media (min-width: 720px) {
  .hero-cred {
    align-items: flex-start;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}
.hero-google-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
}
.hero-gbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.hero-gbtn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.hero-gbtn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 460px) {
  .hero-gbtn { padding: 4px 10px 4px 6px; font-size: 11.5px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--maroon);
  color: #ffffff;
  border: 1px solid var(--maroon-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-cred .hero-badge { margin-bottom: 0; }
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: #ffffff;
  font-weight: 500;
  max-width: 560px;
  margin-top: 10px;
  line-height: 1.55;
}
@media (max-width: 719px) {
  .hero p.lead {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    max-width: 340px;
  }
}
.hero h1 {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.hero-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 560px;
}
@media (min-width: 720px) {
  .hero-cta-grid { grid-template-columns: repeat(4, auto); }
}
/* Hero CTA hierarchy: Call Now is the only filled CTA — others are ghost */
/* Slimmer hero CTA buttons */
.hero .btn-lg {
  padding: 13px 22px;
  font-size: 15px;
  min-height: 48px;
}
@media (max-width: 719px) {
  .hero .btn-lg {
    padding: 9px 16px;
    font-size: 14px;
    min-height: 40px;
  }
  .hero .btn-lg svg { width: 16px; height: 16px; }
  .hero-cta-grid { gap: 8px; }
}
.hero .btn,
.hero .btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: none;
}
.hero .btn:hover,
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .85);
}
.hero .btn-primary,
.hero .hero-cta-call {
  background: var(--maroon);
  color: #ffffff;
  border: 1px solid var(--maroon);
  box-shadow: 0 10px 24px rgba(178, 57, 69, .35), 0 4px 10px rgba(0, 0, 0, .25);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hero .btn-primary:hover,
.hero .hero-cta-call:hover {
  background: var(--maroon-dark);
  color: #ffffff;
  border-color: var(--maroon-dark);
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .85);
  font-size: 13.5px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.hero-trust svg { color: #ffffff; width: 18px; height: 18px; }

/* ---------- Subpage hero ---------- */
.subhero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(360px, 50vh, 520px);
  display: flex; align-items: center;
}
.subhero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-img, url('../img/services/real-flatbed.webp')) center/cover no-repeat;
  z-index: -2;
}
.subhero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 27, 61, .65) 0%, rgba(15, 27, 61, .8) 50%, rgba(15, 27, 61, .95) 100%),
    linear-gradient(90deg, rgba(15, 27, 61, .85) 0%, rgba(15, 27, 61, .45) 70%, rgba(15, 27, 61, .2) 100%);
  z-index: -1;
}
.subhero h1, .subhero p { color: #ffffff; }
.crumbs {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 20px;
}
.crumbs a { color: rgba(255, 255, 255, .85); font-weight: 600; }
.crumbs a:hover { color: #ffffff; }
.crumbs .sep { margin: 0 8px; color: rgba(255, 255, 255, .5); }
.subhero h1 { font-size: clamp(38px, 6vw, 70px); margin-bottom: 16px; }
.subhero p.lead { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255, 255, 255, .92); max-width: 640px; }
.subhero .hero-cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; }
@media (min-width: 720px) { .subhero .hero-cta-grid { grid-template-columns: repeat(3, auto); } }
.subhero .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .55);
}
.subhero .btn-ghost:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

/* ---------- Strip ---------- */
.strip { background: var(--navy); color: #ffffff; padding: 16px 0; }
.strip-inner {
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  align-items: center; justify-content: center;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: #ffffff;
}
.strip-item { display: inline-flex; align-items: center; gap: 8px; }
.strip-item svg { color: #FBBC05; flex: 0 0 auto; }
.strip-inner .sep { width: 6px; height: 6px; background: #ffffff; border-radius: 50%; opacity: .5; }
@media (max-width: 719px) {
  .strip { padding: 12px 0; }
  .strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    font-size: 11.5px;
    letter-spacing: .04em;
    text-align: left;
  }
  .strip-inner .sep { display: none; }
  .strip-item { justify-content: flex-start; }
  .strip-item svg { width: 14px; height: 14px; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin: 0 auto 36px; max-width: 760px; }
.section-head h2 { color: var(--navy); }
.section-head p { color: var(--gray-400); font-size: 17px; }

/* ---------- COMPACT SERVICE LIST (homepage) ---------- */
/* Logo watermark inside each service card */

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .service-list { grid-template-columns: 1fr 1fr; gap: 10px; }
}
.service-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(26, 44, 91, 0.08);
  border-radius: 14px;
  color: var(--navy);
  text-decoration: none;
  box-shadow:
    0 2px 4px rgba(15, 27, 61, 0.08),
    0 8px 18px rgba(15, 27, 61, 0.12),
    0 20px 40px -10px rgba(15, 27, 61, 0.18);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  min-height: 72px;
}
.service-row:hover {
  background: #ffffff;
  border-color: rgba(26, 44, 91, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(15, 27, 61, 0.10),
    0 14px 28px rgba(15, 27, 61, 0.16),
    0 30px 50px -12px rgba(15, 27, 61, 0.25);
}
.service-row .ico {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4080 100%);
  border: none;
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 44, 91, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform .25s cubic-bezier(.4,1.4,.6,1), box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.service-row .ico::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.service-row .ico svg {
  width: 26px; height: 26px;
  stroke: #ffffff;
  stroke-width: 2.2;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  position: relative;
  z-index: 1;
}
.service-row:hover .ico {
  background: linear-gradient(135deg, var(--maroon) 0%, #b8232f 100%);
  box-shadow: 0 6px 18px rgba(139, 27, 37, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: scale(1.06) rotate(-3deg);
}

/* Per-service accent gradients (subtle variations) */
.service-row[href*="flatbed"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #3a5ab0 100%); }
.service-row[href*="wheel-lift"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #2c7a7b 100%); }
.service-row[href*="light-duty"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #4a6cb0 100%); }
.service-row[href*="medium-duty"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #5b3e8a 100%); }
.service-row[href*="motorcycle"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #c9582a 100%); }
.service-row[href*="equipment"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #b8742a 100%); }
.service-row[href*="lockout"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #6a4a8a 100%); }
.service-row[href*="jump-start"] .ico { background: linear-gradient(135deg, #8B1B25 0%, #d4a020 100%); }
.service-row[href*="tire-change"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #3a5070 100%); }
.service-row[href*="winch"] .ico { background: linear-gradient(135deg, #1A2C5B 0%, #4a7530 100%); }
.service-row[href*="gallery"] .ico { background: linear-gradient(135deg, #8B1B25 0%, #c5454f 100%); }
.service-row .label { flex: 1; line-height: 1.2; }
.service-row .label strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
}
.service-row .label span {
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
}
.service-row .arrow {
  color: var(--gray-500);
  flex: 0 0 20px;
  transition: color .2s ease, transform .2s ease;
}
.service-row:hover .arrow { color: var(--maroon); transform: translateX(4px); }

/* ---------- Why Us ---------- */
.why { background: linear-gradient(180deg, #eef1f6 0%, #e6eaf1 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.why-card {
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 1px 2px rgba(15, 27, 61, .04),
    0 8px 24px rgba(15, 27, 61, .08),
    0 24px 48px rgba(15, 27, 61, .06);
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon) 0%, #d04550 100%);
  opacity: .9;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 57, 69, .3);
  box-shadow:
    0 2px 4px rgba(15, 27, 61, .06),
    0 16px 32px rgba(15, 27, 61, .12),
    0 32px 64px rgba(178, 57, 69, .10);
}
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--maroon);
  display: block;
  margin-bottom: 10px;
}
.why-card h3 { font-size: 20px; margin: 0 0 6px; color: var(--navy); font-weight: 800; }
.why-card p { color: #4b5563; font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ---------- Why Jiffy Lift (stats + badges) ---------- */
.trust {
  background: linear-gradient(180deg, #eef1f6 0%, #e6eaf1 100%);
  padding: clamp(48px, 7vw, 88px) 0;
}
.trust .section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.trust .section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  color: var(--navy);
  margin: 6px 0 0;
  letter-spacing: .5px;
}

/* Stat row — 4 cards */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (min-width: 800px) { .stat-row { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15,27,61,.05),
    0 8px 24px rgba(15,27,61,.08),
    0 24px 48px rgba(15,27,61,.06);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon) 0%, #d04550 100%);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 57, 69, .3);
  box-shadow:
    0 2px 4px rgba(15,27,61,.06),
    0 16px 32px rgba(15,27,61,.12),
    0 32px 64px rgba(178, 57, 69, .10);
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(178, 57, 69, .08) 0%, rgba(178, 57, 69, .14) 100%);
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1;
  color: var(--maroon);
  letter-spacing: .5px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num small {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-left: 4px;
  align-self: center;
}
.stat-star { color: #FBBC05; font-size: .7em; font-family: inherit; margin-left: 2px; }
.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Trust badges row */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #ffffff;
  border: 1px solid #d8dee8;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(15,27,61,.04), 0 8px 20px rgba(15,27,61,.06);
}
@media (min-width: 800px) { .trust-badges { grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px 24px; } }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--navy);
}
.trust-badge strong { color: var(--navy); font-weight: 700; }
.trust-check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, #8E2A33 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(178, 57, 69, .3);
}

/* ---------- Service Area / Map ---------- */
.area { background: var(--black-2); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (min-width: 900px) { .area-grid { grid-template-columns: 1fr 1.1fr; gap: 40px; } }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--navy);
  height: 100%;
  min-height: 360px;
  box-shadow: 0 0 0 4px rgba(26, 44, 91, .08);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.area-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.area-cities li {
  color: var(--navy);
  font-weight: 600;
  padding-left: 26px;
  position: relative;
}
.area-cities li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--maroon);
  transform: rotate(45deg);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.review-card {
  background: #ffffff;
  border: 1px solid rgba(26, 44, 91, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow:
    0 2px 4px rgba(15, 27, 61, 0.08),
    0 8px 18px rgba(15, 27, 61, 0.12),
    0 20px 40px -10px rgba(15, 27, 61, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.review-card:hover {
  border-color: rgba(26, 44, 91, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(15, 27, 61, 0.10),
    0 14px 28px rgba(15, 27, 61, 0.16),
    0 30px 50px -12px rgba(15, 27, 61, 0.25);
}
.stars { color: #FBBC05; letter-spacing: 2px; font-size: 20px; margin-bottom: 10px; text-shadow: 0 1px 0 rgba(0,0,0,.05); }
.review-card blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.55;
}
.review-meta { display: flex; align-items: center; gap: 12px; color: var(--gray-400); font-size: 14px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.review-meta strong { color: var(--navy); display: block; font-weight: 700; font-size: 14px; }
.review-loc { color: var(--gray-400); font-size: 13px; }
.google-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f1f3f8;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: #4a5677;
}
.google-tag svg { flex: 0 0 auto; }

/* ---------- Big CTA ---------- */
.big-cta {
  background:
    linear-gradient(180deg, rgba(15, 27, 61, .88), rgba(15, 27, 61, .92)),
    url('../img/gallery/mustang-gt.webp') center/cover no-repeat;
  text-align: center;
  border-top: 4px solid var(--maroon);
  border-bottom: 4px solid var(--maroon);
}
.big-cta h2 { font-size: clamp(34px, 5.5vw, 64px); color: #ffffff; }
.big-cta p { color: rgba(255, 255, 255, .9); font-size: 18px; max-width: 620px; margin: 0 auto 24px; }
.big-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.big-cta-actions .btn { gap: 10px; }
.btn-ghost-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, .5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all .15s ease;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #ffffff; color: #ffffff; }
@media (max-width: 480px) {
  .big-cta-actions { flex-direction: column; }
  .big-cta-actions .btn { width: 100%; }
}

/* ---------- Contact / Form ---------- */
.contact { background: var(--black-2); }
.contact h2 { color: var(--navy); }
.contact p { color: var(--gray-400); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.contact-info-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 16px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--navy); }
.contact-info-list .ico {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 10px;
  background: var(--navy);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info-list .ico svg { width: 20px; height: 20px; }
.contact-info-list strong { display: block; color: var(--gray-400); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-info-list a { color: var(--navy); font-size: 17px; font-weight: 600; }
.contact-info-list a:hover { color: var(--maroon); }
.contact-info-list .plain { color: var(--navy); font-size: 17px; font-weight: 600; }

.form {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(15, 27, 61, .06);
}
.form h3 { font-size: 26px; margin-bottom: 6px; color: var(--navy); }
.form .form-sub { color: var(--gray-400); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #f3f4f6;
  border: 1.5px solid #d1d5db;
  color: var(--navy);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: #9ca3af;
  background: #eef0f3;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 44, 91, .15);
}
/* Filled state — once user types, the field stays white */
.field input:not(:placeholder-shown),
.field textarea:not(:placeholder-shown) {
  background: #ffffff;
  border-color: #9ca3af;
}
.field select:valid { background: #ffffff; border-color: #9ca3af; }
.field select:invalid { color: #6b7280; }
.field select option { color: var(--navy); }
.field select option[value=""] { color: #6b7280; }

/* Placeholder styling — muted gray italic-ish */
.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
  opacity: 1;
}
.field input:focus::placeholder,
.field textarea:focus::placeholder {
  color: #cbd5e1;
}

/* Custom select arrow */
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A2C5B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-success {
  margin-top: 18px;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  color: #14532d;
  border: 1px solid #86efac;
  padding: 20px 22px;
  border-radius: 14px;
  display: none;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, .12);
  animation: fsPop .35s cubic-bezier(.2,.8,.2,1);
}
.form-success.show { display: flex; }
.form-success .fs-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, .35);
}
.form-success .fs-body { display: flex; flex-direction: column; gap: 4px; line-height: 1.5; }
.form-success .fs-body strong { font-size: 17px; font-weight: 700; color: #14532d; }
.form-success .fs-body span { font-size: 15px; color: #166534; }
.form-success .fs-body a { color: #14532d; font-weight: 700; text-decoration: underline; }
@keyframes fsPop {
  0%   { opacity: 0; transform: translateY(8px) scale(.98); }
  100% { opacity: 1; transform: translateY(0)   scale(1);   }
}

/* ---------- Subpage detail ---------- */
.detail { padding: clamp(48px, 6vw, 80px) 0; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.detail-body p { font-size: 17px; color: var(--navy); line-height: 1.7; margin: 0 0 1.1em; }
.detail-body h2 { font-size: clamp(26px, 3vw, 36px); margin: 1.2em 0 .5em; color: var(--navy); }
.detail-body h3 { color: var(--maroon); margin: 1.4em 0 .4em; }
.detail-body ul { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 10px; }
.detail-body ul li { padding-left: 30px; position: relative; color: var(--navy); }
.detail-body ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--maroon);
  border-radius: 50%;
}
.detail-body ul li::after {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 8px; height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.detail-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 16px rgba(15, 27, 61, .06);
}
.detail-card .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .02em;
  color: var(--maroon);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.detail-card .available {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--maroon);
  color: #ffffff;
  border: 1px solid var(--maroon-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.detail-card .available .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffffff;
  animation: pulse 1.8s infinite;
}
.detail-card .btn { width: 100%; }
.detail-card hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.detail-card .area-mini {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
  font-size: 14px;
  color: var(--navy);
}
.detail-card .area-mini li::before { content: "▸"; color: var(--maroon); margin-right: 6px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  padding: 0;
  box-shadow: 0 2px 8px rgba(15, 27, 61, .06);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gcap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(15, 27, 61, 0), rgba(15, 27, 61, .9));
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  text-align: left;
}
.gallery-item:hover .gcap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 27, 61, .94);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: var(--maroon);
  color: #ffffff;
  border: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: var(--maroon-dark); }
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-cap {
  position: absolute; left: 0; right: 0; bottom: 16px;
  text-align: center; color: rgba(255, 255, 255, .85); font-size: 14px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
  border-top: 4px solid var(--maroon);
}
.footer .logo { color: #ffffff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--maroon);
}
.footer p, .footer li, .footer a { color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.6; }
.footer a:hover { color: #ffffff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-about p { max-width: 320px; color: rgba(255, 255, 255, .8); }
.footer-about .footer-logo { color: #ffffff; margin-bottom: 14px; display: inline-flex; }
.footer-about .footer-logo .logo-img {
  height: 64px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
}
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .85);
}
.social a:hover { border-color: #ffffff; color: #ffffff; background: rgba(255, 255, 255, .15); }
.social svg { width: 18px; height: 18px; }
.copy {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 40px;
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: #ffffff;
  z-index: 60;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(15, 27, 61, .35);
  align-items: center; gap: 10px;
  border-top: 2px solid var(--maroon);
}
.mobile-call .mc-loc {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.mobile-call .mc-loc:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }
.mobile-call .mc-cta {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--maroon);
  color: #ffffff;
  height: 48px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.mobile-call .mc-cta:hover { background: var(--maroon-dark); color: #ffffff; }
@media (max-width: 720px) {
  .mobile-call { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Subpage aliases — map .svc-* HTML classes to existing styles
   ============================================================ */

/* Hero */
.svc-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(360px, 50vh, 520px);
  display: flex;
  align-items: center;
  background-color: var(--navy-dark, #0F1B3D);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-hero::before { content: none; }
.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 27, 61, .55) 0%, rgba(15, 27, 61, .35) 50%, rgba(15, 27, 61, .65) 100%),
    linear-gradient(90deg, rgba(15, 27, 61, .75) 0%, rgba(15, 27, 61, .25) 65%, rgba(15, 27, 61, 0) 100%);
  z-index: -1;
}
.svc-hero-content { max-width: 760px; position: relative; z-index: 1; }
.svc-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: .01em;
  margin: 12px 0 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.svc-hero .subtitle {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 620px;
  margin: 0 0 22px;
  line-height: 1.55;
}
.svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.svc-hero .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .55);
}
.svc-hero .btn-ghost:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

/* Back link */
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.svc-back:hover { color: #ffffff; }
.svc-back svg { width: 16px; height: 16px; }

/* 24/7 badge */
.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--maroon);
  color: #ffffff;
  border: 1px solid var(--maroon-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.badge-247 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
  animation: pulse 1.8s ease-in-out infinite;
}

/* Send Location tooltip wrap */
.send-loc-wrap { position: relative; display: inline-flex; }
.send-loc-wrap .loc-hint {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #ffffff;
  border: 1px solid var(--navy-dark);
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 5;
}
.send-loc-wrap:hover .loc-hint,
.send-loc-wrap:focus-within .loc-hint { opacity: 1; }

/* Body / detail layout */
/* Featured image under hero title on service pages */
.svc-feature {
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 4vw, 32px) 0;
  max-width: 1100px;
}
.svc-feature img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 27, 61, 0.18);
}
@media (max-width: 640px) {
  .svc-feature img { max-height: 280px; border-radius: 10px; }
}

.svc-body { padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 6vw, 80px); background: #ffffff; }
.svc-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .svc-body-grid { grid-template-columns: 1fr; }
}
.svc-prose p {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.75;
  margin: 0 0 1.1em;
}
.svc-prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: .02em;
  margin: 1.6em 0 .55em;
  text-transform: uppercase;
  color: var(--navy);
}
.svc-prose h2:first-of-type { margin-top: 1.2em; }
.svc-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6em;
  display: grid;
  gap: 10px;
}
.svc-prose ul li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  line-height: 1.55;
}
.svc-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--maroon);
}
.svc-prose ul li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* Side card */
.svc-side {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 16px rgba(15, 27, 61, .06);
}
@media (max-width: 900px) { .svc-side { position: static; } }
.svc-side h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--navy);
}
.svc-side .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--maroon);
  letter-spacing: .03em;
  margin: 0 0 10px;
  display: block;
}
.svc-side p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.svc-side .btn { width: 100%; }
.svc-side hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.svc-side .area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--navy);
}
.svc-side .area-list li::before {
  content: "▸";
  color: var(--maroon);
  margin-right: 6px;
}

/* Other services strip on subpages */
.other-services {
  background: var(--black-2);
  padding: clamp(40px, 5vw, 64px) 0;
}
.other-services h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .04em;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--navy);
}
.other-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.other-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease;
}
.other-list a:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  transform: translateX(2px);
  background: #ffffff;
}
.other-list svg {
  width: 14px;
  height: 14px;
  color: var(--maroon);
}

/* Side card additional */
.svc-side h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin: 14px 0 8px;
  text-transform: uppercase;
  color: var(--navy);
}
.svc-side ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
}
.svc-side ul li::before {
  content: "✓";
  color: var(--maroon);
  font-weight: 700;
  margin-right: 6px;
}

/* Mobile sticky bar — multiple actions variant on subpages */
.mobile-call .mc-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mobile-call .mc-actions a {
  background: var(--maroon);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mobile-call .mc-actions a:hover { background: var(--maroon-dark); }
.mobile-call .mc-actions .mc-loc {
  background: #ffffff;
  color: var(--navy);
}
.mobile-call .mc-actions .mc-loc:hover { background: #f0f4fa; color: var(--navy); }
.mobile-call .mc-actions .mc-loc svg {
  width: 16px;
  height: 16px;
}

/* Override stray inline white text on light service-row labels */
.service-row .label strong[style*="--white"] { color: var(--navy) !important; }
.service-row .label span[style*="--gray-400"] { color: var(--gray-400) !important; }

/* ---------- Service hero: white "Towing" word + visible Back button ---------- */
.svc-hero h1 .yellow,
.svc-hero .yellow {
  color: #ffffff;
  text-shadow: 0 0 1px rgba(255,255,255,.3);
}
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  transition: background .15s ease, border-color .15s ease;
}
.svc-back:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
  color: #ffffff;
}
.svc-back svg { width: 16px; height: 16px; }

/* ---------- Top utility bar (Google Business + Reviews) ---------- */
.topbar {
  background: var(--navy-dark, #0F1B3D);
  color: #ffffff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--container-px);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s ease, transform .15s ease;
}
.topbar-link svg { flex-shrink: 0; }
.topbar-link:hover {
  background: rgba(255,255,255,.10);
  color: #ffffff;
}
.topbar-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.topbar-sep {
  color: rgba(255,255,255,.30);
  font-weight: 400;
}
.topbar-spacer {
  flex: 1 1 auto;
}
.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 12.5px;
}
@media (max-width: 480px) {
  .topbar { font-size: 12px; }
  .topbar-inner { gap: 8px; padding: 6px var(--container-px); }
  .topbar-link { padding: 3px 6px; }
  .topbar-link span { font-size: 12px; }
  .topbar-hours { font-size: 11.5px; }
  .topbar-spacer { flex-basis: auto; }
}

/* ---- Service page mini-gallery ("See our recent work") ---- */
.svc-mini-gallery {
  background: #f7f7fb;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid rgba(15, 27, 61, .06);
  border-bottom: 1px solid rgba(15, 27, 61, .06);
}
.svc-mini-gallery h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #0F1B3D;
}
.svc-mini-gallery .yellow { color: #B11226; }
.svc-mini-gallery-sub {
  margin: 0 0 22px;
  color: rgba(15, 27, 61, .72);
  font-size: 15.5px;
  max-width: 640px;
}
.svc-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .svc-mini-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
.svc-mini-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #0F1B3D;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(15, 27, 61, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-mini-item:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(15, 27, 61, .22); }
.svc-mini-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.svc-mini-item:hover img { transform: scale(1.04); }
.svc-mini-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(15, 27, 61, 0) 0%, rgba(15, 27, 61, .85) 100%);
}
.svc-mini-cta {
  margin-top: 22px;
  text-align: center;
}
.svc-mini-cta .btn-ghost {
  border: 2px solid #0F1B3D;
  color: #0F1B3D;
  background: transparent;
}
.svc-mini-cta .btn-ghost:hover { background: #0F1B3D; color: #fff; }
