/* ============================================
   STEDMAN'S PLUMBING — Main Stylesheet
   Brand: Navy + Red (professional plumbing)
   Inspired by Roto-Rooter layout structure
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  /* Brand Colors */
  --brand-navy: #1A2B4A;
  --brand-navy-dark: #111C31;
  --brand-navy-light: #2979C8;
  --brand-red: #2979C8;
  --brand-red-dark: #1A5FA0;
  --brand-red-hover: #3A8FD8;
  --brand-blue: #2979C8;

  /* Surfaces */
  --color-bg: #FFFFFF;
  --color-surface: #F5F7FA;
  --color-surface-2: #EDF1F7;
  --color-border: #D8DEE9;
  --color-divider: #E2E8F0;

  /* Text */
  --color-text: #1A202C;
  --color-text-muted: #4A5568;
  --color-text-light: #718096;
  --color-text-inverse: #FFFFFF;

  /* Functional */
  --color-primary: var(--brand-navy);
  --color-accent: var(--brand-red);

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Fonts */
  --font-display: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(26,58,110,0.08), 0 1px 3px rgba(26,58,110,0.05);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1200px;
  --header-height: 148px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul[role="list"] { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); letter-spacing: 0.02em; }
p, li { text-wrap: pretty; max-width: 72ch; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

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

/* Skip-to-content: hidden until focused, then visible for a11y */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 9999;
  background: var(--brand-blue);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-to-content:focus {
  top: var(--space-4);
}

/* === TOPBAR === */
.topbar {
  background: var(--brand-navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
}
.topbar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}
.topbar-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--brand-red); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.topbar-right a:hover { color: white; }

/* =====================================================
   HEADER — pixel-matched to Roto-Rooter

   hdr-top-section:
     hdr-inner-wide (flex row, no wrap)
       .logo          ← large logo, left, spans full height
       .hdr-right     ← column: utility-row on top, nav on bottom
         .hdr-utility-row   ← Careers | Contact | Resources | [search]
         .main-nav          ← nav links, bold, dark navy, right-aligned

   hdr-local:
     hdr-inner-wide
       .hdr-location  ← pin + FRESNO, CA
       .hdr-local-btns ← big red SCHEDULE + big navy CALL
   ===================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 10px rgba(26,43,74,0.12);
}

/* Offset main content so it doesn't hide under the fixed header */
body > main,
#main-content {
  padding-top: var(--header-height);
}

/* Shared full-width inner container */
.hdr-inner-wide {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6) 0 0; /* no left padding — logo hugs left edge */
  display: flex;
  align-items: stretch;
}
/* legacy alias */
.hdr-inner { max-width: 100%; margin: 0 auto; padding: 0 var(--space-6); display: flex; align-items: center; }

/* ---- hdr-top-section: white bg, single bottom border ---- */
.hdr-top-section {
  background: white;
  border-bottom: 1px solid var(--color-divider); /* the one line between top section and location bar */
}
.hdr-top-section .hdr-inner-wide {
  align-items: stretch;
  gap: 0;
}

/* Logo — big, zero padding, no divider, flush top+bottom */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px var(--space-5) 6px 8px;
  border-right: none;      /* divider removed per mockup */
  margin-right: var(--space-4);
}
.logo:hover { opacity: 0.88; }
.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Right column — utility row on top, nav on bottom */
.hdr-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Sub-row 1: utility links + search, right-aligned */
.hdr-utility-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-5);
  padding: var(--space-2) 0 var(--space-1);
  border-bottom: none;   /* divider between utility and nav removed per mockup */
}
.hdr-util-link {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
  text-decoration: none;
}
.hdr-util-link:hover { color: var(--brand-navy); }

/* Utility dropdown (About) */
.hdr-util-dropdown {
  position: relative;
}
.hdr-util-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.hdr-util-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px;
  background: transparent;
  min-width: 130px;
  z-index: 200;
}
.hdr-util-dropdown-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: -1;
}
.hdr-util-dropdown-menu a {
  display: block;
  padding: 9px 16px 9px 19px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.hdr-util-dropdown-menu a:hover {
  background: rgba(41,121,200,0.08);
  color: var(--brand-blue);
  border-left-color: var(--brand-blue);
}
.hdr-util-dropdown:hover .hdr-util-dropdown-menu,
.hdr-util-dropdown:focus-within .hdr-util-dropdown-menu {
  display: block;
}

/* Search bar */
.hdr-search {
  display: flex;
  align-items: center;
  border: 1px solid #cdd3dc;
  border-radius: var(--radius-md);
  overflow: visible;   /* must NOT be hidden — dropdown must escape */
  background: white;
  position: relative;  /* anchor for absolute dropdown */
}
.hdr-search-input {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: var(--color-text);
  width: 240px;
  background: transparent;
}
.hdr-search-input::placeholder { color: #9aa3b0; }
.hdr-search-btn {
  background: none;
  border: none;
  border-left: 1px solid #cdd3dc;
  padding: 5px 10px;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.hdr-search-btn:hover { color: var(--brand-navy); }

/* Sub-row 2: main nav — bold, dark navy, right-aligned */
.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;   /* right-aligned like Roto-Rooter */
  gap: 0;
  padding-bottom: 2px;
}
.main-nav a {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-navy);
  padding: var(--space-3) var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.main-nav a:hover {
  color: var(--brand-navy-light);
  border-bottom-color: var(--brand-navy-light);
}

/* Main nav dropdown (Drains) */
.main-nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}
.main-nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.main-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 300;
  overflow: hidden;
  padding: 4px 0;
}
/* Right-aligned dropdown — snaps to right edge of trigger, won't overflow screen */
.main-nav-dropdown-menu.menu-right {
  left: auto;
  right: 0;
}

/* Wider dropdowns (7+ items) use 2 columns */
.main-nav-dropdown-menu.menu-wide {
  display: none;
  columns: 2;
  column-gap: 0;
  min-width: 420px;
  padding: 4px 0;
}
.main-nav-dropdown-menu a {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-navy);
  padding: 10px 18px 10px 21px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-bottom: none;
  border-left: 3px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
}
.main-nav-dropdown-menu a:hover {
  background: rgba(41,121,200,0.08);
  color: var(--brand-blue);
  border-left-color: var(--brand-blue);
}
.main-nav-dropdown:hover .main-nav-dropdown-menu,
.main-nav-dropdown:focus-within .main-nav-dropdown-menu,
.main-nav-dropdown:hover .main-nav-dropdown-menu.menu-wide,
.main-nav-dropdown:focus-within .main-nav-dropdown-menu.menu-wide {
  display: block;
}

/* ---- hdr-local: location bar ---- */
.hdr-local {
  background: white;
  border-bottom: 2px solid var(--color-divider);
}
.hdr-local .hdr-inner-wide {
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

/* Location pin + FRESNO, CA */
.hdr-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hdr-location svg { color: #2979C8; flex-shrink: 0; width: 22px; height: 22px; }

/* Button pair */
.hdr-local-btns {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* SCHEDULE — brand blue */
.btn-hdr-schedule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #2979C8;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-hdr-schedule:hover { background: #1A5FA0; color: white; }

/* CALL — dark navy */
.btn-hdr-call {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--brand-navy);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-hdr-call:hover { background: var(--brand-navy-light); color: white; }

.logo-svg { height: 48px; width: auto; }
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-call {
  background: var(--brand-navy);
  color: white;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}
.btn-call:hover { background: var(--brand-navy-light); color: white; }

.btn-schedule {
  background: var(--brand-red);
  color: white;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}
.btn-schedule:hover { background: var(--brand-red-dark); color: white; }

.btn-primary-lg {
  background: var(--brand-red);
  color: white;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(41,121,200,0.3);
}
.btn-primary-lg:hover { background: var(--brand-red-dark); color: white; box-shadow: 0 6px 20px rgba(41,121,200,0.4); }

.btn-outline-lg {
  background: transparent;
  color: var(--brand-navy);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border: 2px solid var(--brand-navy);
  border-radius: var(--radius-md);
}
.btn-outline-lg:hover { background: var(--brand-navy); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.btn-ghost:hover { background: var(--color-surface); }

.btn-cta-call {
  background: white;
  color: var(--brand-navy);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.btn-cta-call:hover { background: var(--color-surface); color: var(--brand-navy-dark); }

.btn-cta-schedule {
  background: var(--brand-red);
  color: white;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.btn-cta-schedule:hover { background: var(--brand-red-dark); color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === HERO — Full-width dark overlay, cinematic van photo ===
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--brand-navy-dark, #111C31);
}

/* Full-width hero wrapper */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 640px;
  height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background photo */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Dark gradient overlay — left heavy so text pops, fades to reveal van on right */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 30, 56, 0.94) 0%,
    rgba(15, 30, 56, 0.90) 38%,
    rgba(15, 30, 56, 0.65) 62%,
    rgba(15, 30, 56, 0.30) 100%
  );
}

/* Content row: text left, photo right */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Left content block */
.hero-content-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 460px;
}

/* Eyebrow */
.hero-eyebrow-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5AADFF;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Giant phone */
.hero-phone-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.03em;
  display: block;
  white-space: nowrap;
  transition: color var(--transition);
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-phone-number:hover { color: #5AADFF; }

/* CTA button row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Schedule button (dark on blue) */
.btn-schedule-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--brand-blue, #2979C8);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.btn-schedule-lg:hover {
  background: #1a60a8;
  color: white;
  transform: translateY(-2px);
}

/* Call Now button (outlined white) */
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: transparent;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: calc(var(--space-4) - 2px) var(--space-7);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-hero-call:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Trust checklist */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.trust-item svg { color: #5AADFF; flex-shrink: 0; }

/* Right: rating badge */
.hero-badge-block {
  flex-shrink: 0;
}
.hero-rating-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}
.hero-rating-stars {
  color: #F5A623;
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-rating-score {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-rating-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-stars { color: #F6A623; font-size: var(--text-lg); line-height: 1; }
.badge-text { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }
.badge-text strong { color: var(--brand-navy); }


/* ── Hero right photo column ── */
.hero-photo-col {
  flex-shrink: 0;
  width: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  position: relative;
}
.hero-photo-wrap {
  position: relative;
  width: 760px;
  height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-photo-img {
  width: 960px;
  height: auto;
  max-height: 640px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: right bottom;
  background: transparent;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(-8px 8px 24px rgba(0,0,0,0.6));
}
/* Google rating badge overlaid on bottom-left corner of photo */
.hero-photo-badge {
  position: absolute;
  bottom: var(--space-4);
  left: calc(-1 * var(--space-4));
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-top: 3px solid var(--brand-blue, #2979C8);
}
.hpb-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 1px;
  line-height: 1;
}
.hpb-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-navy, #1A2B4A);
  line-height: 1;
}
.hpb-label {
  font-size: 0.6rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Remove old isolated badge block */
.hero-badge-block { display: none; }
.hero-rating-badge { display: none; }

/* ── Google Review Rotator ── */
.hero-review-widget {
  margin-top: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px 12px;
  max-width: 360px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.hrw-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hrw-google-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.hrw-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 1px;
}
.hrw-score {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hrw-stars {
  color: #FBBC05;
  font-size: 0.7rem;
  letter-spacing: 1px;
  line-height: 1;
}
.hrw-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.hrw-count {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.hrw-body {
  min-height: 52px;
  position: relative;
}
.hrw-quote {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.hrw-quote.fade { opacity: 0; }
.hrw-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.03em;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.hrw-author.fade { opacity: 0; }
.hrw-dots {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  align-items: center;
}
.hrw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hrw-dot.active {
  background: #fff;
  transform: scale(1.3);
}


/* Urgency Banner */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--brand-red);
  color: white;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition);
}
.urgency-banner:hover { background: var(--brand-red-dark); color: white; }

/* === SECTION SHARED === */
.section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-6);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: var(--space-3);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
}

/* === SERVICES SECTION === */
/* === SERVICES SECTION === */
/* ═══════════════════════════════════════
   SERVICES — FIXTURE CAROUSEL
═══════════════════════════════════════ */
.services-section {
  background-color: var(--brand-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='0' y='0' width='40' height='40' fill='%232979C8' fill-opacity='0.07'/%3E%3Crect x='40' y='40' width='40' height='40' fill='%232979C8' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  padding: clamp(var(--space-8), 3vw, var(--space-10)) 0 clamp(var(--space-8), 3vw, var(--space-10));
  overflow: hidden;
  text-align: center;
  position: relative;
}

.services-header {
  width: 100%;
  margin: 0 0 clamp(var(--space-10), 5vw, var(--space-14)) 0;
  text-align: center;
  padding: 0 clamp(60px, 10vw, 200px);
  box-sizing: border-box;
}

.services-header .services-eyebrow,
.services-header .services-subtitle {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

.services-header .services-title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.services-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2979C8;
  margin-bottom: 10px;
  text-align: center;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.services-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
  text-align: center;
  max-width: 100%;
}

/* ── Carousel wrapper ── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Fixture card ── */
.fixture-card {
  flex: 0 0 20%;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}

.fixture-card:hover { transform: translateY(-5px); }

.fixture-img-wrap {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

.fixture-img-wrap img {
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
  transition: filter 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.fixture-card:hover .fixture-img-wrap img {
  filter: drop-shadow(0 16px 36px rgba(41,121,200,0.45));
  transform: scale(1.05);
}

.fixture-divider {
  width: 36px;
  height: 2px;
  background: #2979C8;
  margin: 0 auto 12px;
  border-radius: 2px;
}

.fixture-title {
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.fixture-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* ── Arrows ── */
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #2979C8;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  line-height: 1;
}
.carousel-arrow:hover { background: #1a5aaa; transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* ── Dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active {
  background: #2979C8;
  transform: scale(1.3);
}

/* ── CTA ── */
.services-cta {
  text-align: center;
  margin-top: clamp(var(--space-10), 4vw, var(--space-14));
}
.btn-services-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: clamp(var(--space-4), 2vw, var(--space-6));
  border: 2px solid #2979C8;
  color: #2979C8;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.btn-services-all:hover {
  background: #2979C8;
  color: white;
}

/* === STATS BAND === */
.stats-band {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1A3A6E 100%);
  color: white;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: var(--space-10) var(--space-12);
  flex: 1;
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* === WHY US (SPLIT) === */
.why-section { background: var(--color-surface); overflow: hidden; }
.why-container {
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(var(--space-12), 7vw, var(--space-24)) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-16);
  row-gap: 8px;
  align-items: start;
}
.why-image-col { position: relative; }
.why-image-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-overlap-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-left: 4px solid var(--brand-red);
  bottom: var(--space-6);
  right: -var(--space-4);
}
.overlap-icon {
  width: 40px; height: 40px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.why-overlap-card strong { display: block; font-weight: 700; color: var(--brand-navy); font-size: var(--text-sm); }
.why-overlap-card span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* Certifications row — column 1 only, row 2 of the why grid */
.why-certs {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  padding: var(--space-4) 0 0;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}
.cert-badge {
  flex: 0 1 22%;
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: 22%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}
.cert-badge:hover {
  transform: scale(1.08);
  opacity: 1;
}

.why-text-col {
  grid-column: 2;
  grid-row: 1 / 4;
}
.why-text-col h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: var(--space-4);
}
.why-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.why-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  max-width: none;
}
.why-icon {
  width: 32px; height: 32px;
  background: rgba(41,121,200,0.1);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-icon svg { width: 16px; height: 16px; }
.why-list li strong { display: block; font-weight: 700; color: var(--brand-navy); margin-bottom: 4px; }
.why-list li p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; margin: 0; }





/* === COUPONS (why-section col 1, row 3) === */
.why-coupons {
  grid-column: 1;
  grid-row: 3;
  padding-top: var(--space-4);
  width: 100%;
}

.coupons-eyebrow {
  display: block;
  width: 100%;
  max-width: none !important;
  text-align: center;
  color: #8ab4f8;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 auto 1.75rem;
}

.coupons-grid {
  display: flex;
  flex-direction: row;
  gap: var(--space-3);
  width: 100%;
}

/* Coupon card — vertical stacking when laid out in a row */
.coupon-card {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
  grid-template-areas:
    "left"
    "right"
    "cta";
  align-items: center;
  gap: 0;
  border: 4px dashed var(--brand-blue);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.coupon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(41,121,200,0.22), 0 2px 8px rgba(41,121,200,0.12);
  border-color: #1a5fa8;
}

/* Watermark — P logo faint in background */
.coupon-swirl {
  position: absolute;
  right: 8px;
  bottom: 28px;
  width: 110px;
  height: 110px;
  background: url('coupon-watermark.png') center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Left — big discount value */
.coupon-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4) var(--space-3) var(--space-2);
  position: relative;
  z-index: 1;
}

.coupon-amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.coupon-off {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--brand-navy);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Divider hidden in vertical layout */
.coupon-divider {
  display: none;
}

/* Right — service name + fine print */
.coupon-right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: var(--space-2) var(--space-3) var(--space-3);
  position: relative;
  z-index: 1;
}

.coupon-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 900;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.coupon-expires {
  font-size: 0.7rem;
  color: #888;
  font-style: italic;
}

/* Full-width CTA bar at bottom */
.coupon-cta {
  grid-area: cta;
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}
.coupon-card:hover .coupon-cta {
  background: #1a5fa8;
}

/* Mobile — stack coupons vertically */
@media (max-width: 768px) {
  .why-coupons {
    grid-column: 1;
    grid-row: auto;
    padding-top: var(--space-4);
  }
  .coupons-grid {
    flex-direction: column;
  }
}

/* === TESTIMONIALS === */
/* === TESTIMONIALS === */
.testimonials-section { background: var(--color-bg); }

/* Rating summary row */
.rating-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}
.rating-inline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.rating-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: default;
}
.rating-star {
  color: #F6A623;
  font-size: 1.6rem;
  display: inline-block;
  transition: transform 0.2s;
}
.stars { color: #F6A623; font-size: var(--text-lg); }
.rating-text { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Google verified badge */
.google-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: 0;
}
.rating-divider {
  width: 1px;
  height: 28px;
  background: var(--color-border);
  flex-shrink: 0;
}
.google-badge-logo { height: 20px; opacity: 0.75; }
.google-badge-text { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* Cards carousel */
.testimonials-grid {
  position: relative;
  margin-bottom: var(--space-6);
}
.rc-viewport {
  overflow: hidden;
  width: 100%;
  padding-top: 6px;
  margin-top: -6px;
}
.rc-track {
  display: flex;
  will-change: transform;
}
.rc-slide {
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px 24px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
  box-sizing: border-box;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,200,0.13);
  transform: translateY(-3px);
}

/* Carousel dots */
.rc-dots {
  display: none;
}
.rc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.rc-dot.active {
  background: var(--brand-blue);
  transform: scale(1.25);
}

/* Top row: avatar + name + google icon */
.tc-top-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.tc-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tc-meta {
  flex: 1;
  min-width: 0;
}
.tc-name {
  display: block;
  font-weight: 700;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc-loc {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.tc-source-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-left: auto;
  display: block;
}

/* Stars */
.tc-stars {
  display: flex;
  gap: 2px;
}
.rev-star {
  color: #F6A623;
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.15s, color 0.15s;
}

/* Sparkle animation */
@keyframes starSparkle {
  0%   { transform: scale(1)    rotate(0deg);   color: #F6A623; }
  25%  { transform: scale(1.45) rotate(-15deg); color: #FFD700; filter: drop-shadow(0 0 6px #FFD700); }
  50%  { transform: scale(1.6)  rotate(10deg);  color: #fff176; filter: drop-shadow(0 0 10px #FFD700); }
  75%  { transform: scale(1.35) rotate(-8deg);  color: #FFD700; filter: drop-shadow(0 0 6px #FFD700); }
  100% { transform: scale(1)    rotate(0deg);   color: #F6A623; filter: none; }
}
.star-sparkle {
  animation: starSparkle 0.55s ease forwards;
}

/* Review text */
.tc-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

/* Service tag */
.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.tc-service {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  background: rgba(41,121,200,0.08);
  border-radius: 20px;
  padding: 3px 10px;
}
.tc-date {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* === SERVICE AREAS === */
.service-areas { background: var(--color-surface); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.areas-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: var(--space-4);
}
.areas-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-2);
}
.areas-list li a {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--transition), padding-left var(--transition);
}
.areas-list li a::before { content: '→'; color: var(--brand-red); font-size: 0.75rem; }
.areas-list li a:hover { color: var(--brand-red); padding-left: var(--space-2); }

.map-placeholder {
  background: #E8F0F7;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-placeholder svg { width: 100%; height: auto; }
.map-label {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-navy);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, #1A2B4A 0%, #2979C8 100%);
  color: white;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-2);
}
.cta-text p { color: rgba(255,255,255,0.75); font-size: var(--text-base); max-width: none; }
.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #0F1E38;
  color: rgba(255,255,255,0.8);
}
.footer-top {
  padding: var(--space-8) 0 var(--space-5);
  position: relative;
}
.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-12);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin: var(--space-4) 0;
  line-height: 1.7;
  max-width: 36ch;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-contact a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: white; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-block: 0;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  max-width: none;
}
.footer-bottom nav {
  display: flex;
  gap: var(--space-4);
}
.footer-bottom nav a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom nav a:hover { color: rgba(255,255,255,0.7); }

/* === MOBILE ACTION BAR === */
.mobile-action-bar {
  display: none; /* shown only on mobile via media query */
  align-items: center;
  justify-content: stretch;
  background: white;
  border-bottom: 3px solid #2979C8;
  padding: var(--space-2) var(--space-4);
  gap: var(--space-2);
  position: fixed;
  top: 62px; /* height of mobile logo row */
  left: 0;
  right: 0;
  z-index: 98;
  box-shadow: 0 3px 12px rgba(26,43,74,0.15);
}
.mobile-action-bar .mab-btn { flex: 1; justify-content: center; }
.mab-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex: 1;
  white-space: nowrap;
}
.mab-location svg { color: var(--brand-red); flex-shrink: 0; }
.mab-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.mab-btn:active { transform: scale(0.97); }
.mab-schedule {
  background: var(--brand-red);
  color: white;
}
.mab-schedule:hover { background: var(--brand-red-dark); color: white; }
.mab-call {
  background: var(--brand-navy);
  color: white;
}
.mab-call:hover { background: var(--brand-navy-dark); color: white; }

/* === MOBILE HERO === */
.hero-mobile { display: none; } /* hidden on desktop */

.hero-mobile-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.hero-mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,58,110,0.1) 0%,
    rgba(26,58,110,0.55) 60%,
    rgba(26,58,110,0.85) 100%
  );
}
.hero-mobile-headline {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-transform: uppercase;
  /* override h1/h2 max-width from base.css */
  max-width: none;
}
.hero-mobile-accent { color: #5AADFF; }

.hero-mobile-card {
  background: white;
  margin: 0 var(--space-4);
  margin-top: calc(-1 * var(--space-6));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 8px 32px rgba(26,58,110,0.18);
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--brand-red);
  margin-bottom: var(--space-4);
}
.hero-mobile-cta-label {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
  max-width: none;
}
.hero-mobile-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: color var(--transition);
}
.hero-mobile-phone:hover { color: var(--brand-red); }
.hero-mobile-divider {
  height: 1px;
  background: var(--color-divider);
  margin-bottom: var(--space-4);
}
.hero-mobile-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: none;
}
.hero-mobile-btns {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.hero-mobile-btns .btn {
  flex: 1;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
}
.hero-mobile-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
}
.hero-mobile-trust span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-navy);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .main-nav a { font-size: 0.72rem; padding: var(--space-2) var(--space-3); }
  .fixture-card { flex: 0 0 25%; }  /* 4 visible at 1024px */
}

@media (max-width: 768px) {
  /* Correct header height offset for mobile (logo ~60px + action bar ~44px) */
  :root { --header-height: 110px; }

  /* Hide nav, utility row, search, location bar on mobile */
  .main-nav { display: none; }
  .hdr-utility-row { display: none; }
  .hdr-local { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  /* Tighten top section + shrink logo */
  .hdr-top-section .hdr-inner-wide { padding-left: var(--space-4); padding-right: var(--space-4); }
  .logo { padding: var(--space-2) var(--space-3) var(--space-2) 0; border-right: none; margin-right: 0; }
  .logo-img { height: 46px; }
  .hdr-right { display: none; }

  /* Mobile action bar shows instead of row C */
  .mobile-action-bar { display: flex; }

  /* Hide desktop full hero, show mobile hero */
  .hero-full { display: none; }
  .hero-mobile { display: block; }
  .hero {
    background: var(--brand-navy-dark, #111C31);
    border-bottom: none;
  }
  .hero::before { display: none; }
  .urgency-banner { border-top: none; }

  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 45%; }
  .stat-divider { display: none; }

  .fixture-card { flex: 0 0 50%; }  /* 2 visible on mobile */
  .carousel-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-container { grid-template-columns: 1fr; }
  .why-image-col img { height: 300px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map { display: none; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .fixture-card { flex: 0 0 80%; }  /* nearly full width on small phones */
}

/* ═══════════════════════════════════════════════
   HERO SLIDER — wraps both slides
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

/* Each slide stacks on top of each other via absolute positioning */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

/* The active slide is visible */
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Slider needs an explicit height — driven by the tallest slide.
   Slide 2 (.hero-slide--main) contains the .hero section at 560px
   + urgency banner ~48px. We set the slider height via JS on load. */
.hero-slider {
  /* fallback height — JS will set exact */
  min-height: 608px;
}

/* ── SLIDE 1: Cinematic full-bleed ── */
.hero-slide--retro {
  height: 560px; /* match slide 2 hero-split height */
}

.retro-bg {
  position: relative;
  width: 100%;
  height: 560px;
  background-image: url('hero-slide1-bg.png');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

/* Dark gradient overlay so text is readable */
.retro-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 28, 49, 0.15) 0%,
    rgba(17, 28, 49, 0.05) 40%,
    rgba(17, 28, 49, 0.72) 62%,
    rgba(17, 28, 49, 0.92) 100%
  );
  z-index: 1;
}

/* Bottom fade for text area */
.retro-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(17,28,49,0.6) 0%, transparent 100%);
  z-index: 1;
}

/* Checker pattern overlay */
.retro-checker {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='0' y='0' width='40' height='40' fill='%232979C8' fill-opacity='0.04'/%3E%3Crect x='40' y='40' width='40' height='40' fill='%232979C8' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  z-index: 1;
}

/* Content layout */
.retro-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 clamp(var(--space-8), 5vw, var(--space-20));
  gap: var(--space-10);
}

.retro-left {
  max-width: 520px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-4);
}

/* Eyebrow pill */
.retro-badge {
  display: inline-block;
  background: #2979C8;
  color: white;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

/* Big headline */
.retro-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin: 0;
  max-width: none;
  text-align: right;
}

/* Accent word in blue */
.retro-headline .accent { color: #2979C8; }

.retro-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  text-align: right;
  max-width: 420px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* CTA buttons */
.retro-ctas {
  display: flex;
  gap: var(--space-3);
  flex-direction: row-reverse; /* schedule on right since text is right-aligned */
}

.retro-btn-schedule {
  background: #2979C8;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(41,121,200,0.4);
}
.retro-btn-schedule:hover { background: #1A5FA0; color: white; transform: translateY(-1px); }

.retro-btn-call {
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}
.retro-btn-call:hover { background: rgba(255,255,255,0.22); color: white; }

/* Trust badges */
.retro-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.retro-trust span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Slide 2 wrapper — must be exactly the same height as the section inside ── */
.hero-slide--main {
  /* height set by JS to match inner content */
}

/* ── Slider dots ── */
.hero-slider-dots {
  position: absolute;
  bottom: 56px; /* above urgency banner */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #2979C8;
  border-color: #2979C8;
  transform: scale(1.3);
}

/* Mobile: hide retro slide, only show slide 2 */
@media (max-width: 768px) {
  .hero-slide--retro { display: none; }
  .hero-slider-dots { display: none; }
  .hero-slider { min-height: unset; }
  .hero-slide--main {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ═══════════════════════════════════════
   FOOTER — Redesigned
═══════════════════════════════════════ */

/* ── Map strip ── */
.footer-map-strip {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.footer-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}
.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(15, 30, 56, 0.55) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-4) var(--space-6);
  pointer-events: none;
}
.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2979C8;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ── Main grid ── */
.footer-main-grid {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-12) var(--space-8);
  display: grid;
  grid-template-columns: 1.4fr 1.8fr 0.9fr 0.9fr;
  gap: var(--space-8);
}

/* ── Services two-column list ── */
.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-4);
}
.footer-services-subhead {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.1);
  list-style: none;
}
.footer-services-subhead:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* ── Brand column ── */
.footer-brand .footer-logo-img {
  height: auto;
  width: 75%;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  margin-bottom: var(--space-4);
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: 30ch;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact a:hover { color: white; }
.footer-contact svg { flex-shrink: 0; color: #2979C8; }

/* ── Social icons ── */
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.footer-social-icon:hover {
  background: #2979C8;
  border-color: #2979C8;
  color: white;
}

.footer-map {
  margin-top: var(--space-4);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  opacity: 0.85;
}
.footer-map:hover {
  opacity: 1;
}

/* ── Nav columns ── */
.footer-main-grid .footer-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-main-grid .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-main-grid .footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
  display: block;
}
.footer-main-grid .footer-col a:hover {
  color: white;
  padding-left: 4px;
}

/* ── License badge ── */

/* ============================================================
   FOOTER — footer-top-inner layout (projects.html + other pages)
   ============================================================ */
.footer-top:has(.footer-top-inner) {
  padding: 0;
}
.footer-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col-brand .footer-logo-img {
  max-width: 160px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 32ch;
}
.footer-contact-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.footer-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-phone:hover { color: #2979C8; }
.footer-email {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: #fff; }
.footer-separator { color: rgba(255,255,255,0.3); }
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 6px 0 0;
  line-height: 1.5;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px 24px 28px;
  }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
}

.footer-license {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-4);
  background: rgba(41,121,200,0.15);
  border: 1px solid rgba(41,121,200,0.35);
  border-radius: var(--radius-md);
}
.footer-license svg { color: #2979C8; flex-shrink: 0; margin-top: 2px; }
.footer-license span { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.6; font-weight: 500; }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-4) 0;
  position: relative;
  z-index: 3;
}
.footer-bottom .footer-bottom-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  max-width: none;
}
.footer-bottom nav { display: flex; gap: var(--space-4); }
.footer-bottom nav a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bottom nav a:hover { color: rgba(255,255,255,0.65); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 768px) {
  .footer-map-strip { height: 160px; }
  .footer-main-grid { grid-template-columns: 1fr; padding: var(--space-8) var(--space-6); }
  .footer-brand p { max-width: none; }
  .footer-bottom .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Footer Van ── */
.footer-van-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0;
  /* Van peeks up from below the footer content, overlaps the bottom bar */
  pointer-events: none;
  z-index: 2;
}

/* Reposition: absolutely placed relative to footer */
.footer {
  position: relative;
}

.footer-van-wrap {
  position: absolute;
  bottom: 46px; /* sits just above the bottom bar */
  right: 0;
  width: 520px;
  height: auto;
  overflow: visible;
  z-index: 1;
}

.footer-van-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: drop-shadow(-4px 0 12px rgba(0,0,0,0.5));
}

@media (max-width: 1024px) {
  .footer-van-wrap { width: 380px; }
}
@media (max-width: 768px) {
  .footer-van-wrap {
    width: 260px;
    bottom: 80px; /* bottom bar stacks on mobile */
  }
}

/* ── Brands Carousel ── */
.brands-section {
  background: #f8fafc;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 36px 0;
  overflow: hidden;
}
.brands-inner {
  text-align: center;
}
.brands-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.brands-track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
/* Fade edges */
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brandScroll 40s linear infinite;
}
.brands-track:hover {
  animation-play-state: paused;
}
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s, opacity 0.25s;
}
.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-logo img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

/* ============================================================
   FAQ SECTION — Two-column: gallery left, accordion right
   ============================================================ */
.faq-section {
  background: var(--brand-navy);
  padding: 0;
}
.faq-section .section-container {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

/* Two-col wrapper */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* ── LEFT: Gallery ── */
.faq-gallery {
  position: relative;
}

.faq-gallery-header {
  margin-bottom: var(--space-5);
  padding-top: 6px;
}
.faq-gallery-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: var(--space-1);
}
.faq-gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0;
}
.faq-gallery-title span {
  color: var(--brand-blue);
}
.faq-gallery-subhead {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: var(--space-2);
}

.faq-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}
.fg-item {
  overflow: hidden;
  position: relative;
  background: #0d1829;
}
.fg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.88) saturate(1.05);
}
.fg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,20,45,0.72) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.fg-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.15);
}
.fg-item:hover::after {
  opacity: 1;
}
.fg-item .fg-caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.fg-item:hover .fg-caption {
  opacity: 1;
  transform: translateY(0);
}
/* Tall first item spans 2 rows */
.fg-item.fg-tall {
  grid-row: span 2;
  height: 340px;
}
/* Regular items */
.fg-item:not(.fg-tall):not(.fg-wide) {
  height: 160px;
}
/* Wide item spans 2 cols */
.fg-item.fg-wide {
  grid-column: span 2;
  height: 180px;
}

/* Glow ring on each tile */
.fg-item {
  box-shadow: inset 0 0 0 1px rgba(41,121,200,0.18);
  transition: box-shadow 0.4s ease;
}
.fg-item:hover {
  box-shadow: inset 0 0 0 2px rgba(41,121,200,0.55), 0 0 20px rgba(41,121,200,0.18);
}

/* ── RIGHT: Accordion ── */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.faq-header {
  text-align: left;
  margin-bottom: 0;
}
.faq-header .section-eyebrow {
  color: var(--brand-blue);
}
.faq-header h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}
.faq-subhead {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: var(--space-2);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,121,200,0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]),
.faq-item:hover {
  background: rgba(41,121,200,0.1);
  border-color: rgba(41,121,200,0.5);
  box-shadow: 0 4px 20px rgba(41,121,200,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}
.faq-question:hover {
  color: #7ab8f5;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--brand-blue);
  transition: transform 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid rgba(41,121,200,0.2);
  animation: faqOpen 0.2s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: none;
}
.faq-answer a {
  color: #7ab8f5;
  font-weight: 600;
  text-decoration: none;
}
.faq-answer a:hover {
  text-decoration: underline;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .faq-gallery {
    position: static;
  }
  .faq-gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .fg-item.fg-tall  { grid-row: span 1; height: 140px; }
  .fg-item.fg-wide  { grid-column: span 2; height: 140px; }
  .fg-item:not(.fg-tall):not(.fg-wide) { height: 140px; }
  .faq-header { text-align: center; }
  .faq-gallery-header { text-align: center; }
}
@media (max-width: 600px) {
  .faq-question { padding: var(--space-4) var(--space-4); font-size: 0.95rem; }
  .faq-answer   { padding: 0 var(--space-4) var(--space-4); }
  .faq-gallery-grid { grid-template-columns: 1fr 1fr; }
  .fg-item.fg-wide { grid-column: span 2; }
}

/* ============================================================
   SCHEDULE MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,40,0.75);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal-overlay.is-open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  height: auto;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(10,18,40,0.45);
  overflow: hidden;
  animation: modalIn 0.25s ease;
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--brand-navy);
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.modal-header-text h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 2px;
}
.modal-header-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin: 0;
}
.modal-close {
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(255,255,255,0.22);
}
.modal-body {
  padding: var(--space-3) var(--space-8);
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.modal-field input,
.modal-field select,
.modal-field textarea {
  border: 1.5px solid rgba(41,121,200,0.25);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 0.9rem;
  color: var(--brand-navy);
  background: #f8fafd;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(41,121,200,0.12);
  background: #fff;
}
.modal-field textarea {
  resize: vertical;
  min-height: 44px;
  max-height: 80px;
}
/* Honeypot — invisible to humans */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Math captcha */
.modal-captcha-field {
  background: #f0f6ff;
  border: 1.5px solid rgba(41,121,200,0.2);
  border-radius: 8px;
  padding: 8px 12px;
}
.modal-captcha-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  display: block;
}
.captcha-required {
  color: #c0392b;
  margin-left: 2px;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: white;
  border: 1.5px solid rgba(41,121,200,0.3);
  border-radius: 6px;
  padding: 6px 12px;
  min-width: 90px;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.captcha-eq {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  flex-shrink: 0;
}
.captcha-input {
  width: 72px;
  border: 1.5px solid rgba(41,121,200,0.25);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.95rem;
  color: var(--brand-navy);
  background: white;
  outline: none;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  /* Remove number spinner arrows */
  -moz-appearance: textfield;
}
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.captcha-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(41,121,200,0.12);
}
.captcha-hint {
  display: block;
  font-size: 0.68rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.captcha-error {
  color: #c0392b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 3px;
  display: none;
}
.captcha-error.visible { display: block; }

.modal-footer {
  padding: var(--space-2) var(--space-8) var(--space-3);
  border-top: 1px solid rgba(41,121,200,0.1);
  background: #fff;
  flex-shrink: 0;
}
.modal-submit {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.modal-submit:hover {
  background: #1a5faa;
  transform: translateY(-1px);
}
.modal-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-2);
}
@media (max-width: 540px) {
  .modal-box { border-radius: 12px; }
  .modal-header { padding: var(--space-5) var(--space-5); }
  .modal-body { padding: var(--space-5) var(--space-5); }
  .modal-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREA MAP SECTION
============================================================ */
.map-section {
  display: flex;
  min-height: 480px;
  width: 100%;
}

.map-panel {
  flex: 1;
}

/* Left: Google Map iframe */
.map-panel-left {
  flex: 1.1;
  position: relative;
  min-height: 480px;
}
/* Right: Info panel */
.map-panel-right {
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 4vw, 56px);
  flex: 0.9;
}

.map-info {
  width: 100%;
  max-width: 480px;
}

.map-info-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: var(--space-2);
}

.map-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 var(--space-3) 0;
}

.map-info-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Info list rows */
.map-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.map-info-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.map-info-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-blue);
}
.map-info-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.map-info-phone:hover {
  color: var(--brand-blue);
}

/* Cities strip */
.map-info-cities {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-4);
  margin-bottom: var(--space-6);
}
.map-cities-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-2);
}
.map-cities-list {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* CTA button */
.btn-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-map-cta:hover {
  background: #1a5fa8;
  transform: translateY(-1px);
}
.btn-map-cta svg {
  flex-shrink: 0;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
    min-height: unset;
  }
  .map-panel-left {
    min-height: 280px;
    position: relative;
  }
  .map-panel-right {
    padding: 36px 24px;
  }
}

/* ============================================================
   QUICK CONTACT BAR
============================================================ */
.qc-bar {
  position: relative;
  background: var(--brand-navy);
  overflow: visible; /* allow van to bleed upward */
  padding: 0;
}

.qc-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 72px);
  padding-right: clamp(260px, 24vw, 380px); /* leave room for van — wider than van column */
  position: relative;
  z-index: 2;
  max-width: calc(100% - clamp(220px, 22vw, 340px)); /* prevent content from sliding under van */
}

/* Left phone col */
.qc-phone-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.qc-call-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.qc-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.qc-phone-link svg {
  color: var(--brand-blue);
  flex-shrink: 0;
}
.qc-phone-link:hover { color: var(--brand-blue); }

/* Divider between phone and form */
.qc-phone-col::after {
  content: '';
  display: none;
}

/* Center form */
.qc-form {
  flex: 1;
  min-width: 0;
}
.qc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 14px 0;
  line-height: 1;
}
.qc-fields {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}
.qc-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}
.qc-input::placeholder { color: rgba(255,255,255,0.45); }
.qc-input:focus {
  border-color: var(--brand-blue);
  background: rgba(41,121,200,0.12);
}
.qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 24px;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.qc-btn:hover { background: #1a5fa8; transform: translateY(-1px); }

.qc-success {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #6ee7b7;
  font-weight: 600;
}

/* Van image on the right — bleeds above section */
.qc-van {
  position: absolute;
  right: -10px;
  bottom: 0;
  /* Tall enough so van sits with wheels at bar bottom and roof bleeds up */
  height: 160%;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: flex-end;
}
.qc-van img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Vertical divider between phone and form */
.qc-inner::before {
  content: '';
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Mobile: stack */
@media (max-width: 900px) {
  .qc-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: clamp(24px, 5vw, 72px);
  }
  .qc-inner::before { display: none; }
  .qc-van { display: none; }
  .qc-fields { flex-wrap: wrap; }
  .qc-input { min-width: calc(50% - 5px); }
}
@media (max-width: 540px) {
  .qc-input { min-width: 100%; }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background: #fff;
  padding: 0;
}
.about-section .section-container {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

/* Left col */
.about-text-col h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
  margin: var(--space-2) 0 var(--space-4) 0;
}
.about-lead {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.about-body {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

/* Credential badges */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: var(--space-5) 0 0 0;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
  white-space: nowrap;
}
.about-badge svg {
  width: 15px;
  height: 15px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.about-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-blue:hover { background: #1a5fa8; transform: translateY(-1px); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-navy);
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid var(--brand-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover {
  background: var(--brand-navy);
  color: #fff;
}

/* Right col: approach cards */
.about-cards-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about-approach-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: #F8FAFF;
  border: 1px solid #E8EFF9;
  border-left: 4px solid var(--brand-blue);
  border-radius: 6px;
  padding: var(--space-5);
  transition: box-shadow 0.2s;
}
.about-approach-card:hover {
  box-shadow: 0 4px 20px rgba(41,121,200,0.1);
}
.aac-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aac-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.aac-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 var(--space-2) 0;
}
.aac-body p {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHAT MAKES US DIFFERENT
============================================================ */
.diff-section {
  background: var(--brand-navy);
  padding: 0;
}
.diff-section .section-container {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.diff-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.diff-header .section-eyebrow {
  text-align: center;
  color: var(--brand-blue);
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.diff-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: var(--space-2) 0 0 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--brand-blue);
  border-radius: 6px;
  padding: var(--space-6) var(--space-5);
  transition: background 0.2s, transform 0.2s;
}
.diff-card:hover {
  background: rgba(41,121,200,0.12);
  transform: translateY(-3px);
}
.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.diff-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.diff-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-3) 0;
  line-height: 1.2;
}
.diff-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ── Search Autocomplete Dropdown ── */
.hdr-search {
  position: relative;
}
.hdr-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  min-width: 340px;
  background: #fff;
  border: 1px solid #cdd3dc;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 9999;
  max-height: 380px;
  overflow-y: auto;
}
.hdr-search-dropdown.open { display: block; }
.hdr-search-dropdown-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f4f8;
  text-decoration: none;
  color: var(--brand-navy);
  transition: background .15s;
}
.hdr-search-dropdown-item:last-child { border-bottom: none; }
.hdr-search-dropdown-item:hover,
.hdr-search-dropdown-item.focused { background: #e8f0fb; }
.hdr-search-dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(41,121,200,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-blue);
}
.hdr-search-dropdown-icon svg { width: 14px; height: 14px; }
.hdr-search-dropdown-label {
  flex: 1;
  min-width: 0;
}
.hdr-search-dropdown-title {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.3;
}
.hdr-search-dropdown-title mark {
  background: none;
  color: var(--brand-blue);
  font-weight: 800;
}
.hdr-search-dropdown-cat {
  display: block;
  font-size: .7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1px;
}
.hdr-search-dropdown-empty {
  padding: .85rem 1rem;
  font-size: .82rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ── Contextual Internal Links ── */
.content-link {
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-color: rgba(41,121,200,0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.content-link:hover {
  color: #1a60a8;
  text-decoration-color: var(--brand-blue);
}

/* ═══════════════════════════════════════
   MOBILE TOUCH TARGET FIXES (44px min)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Action bar buttons */
  .btn-hdr-schedule,
  .btn-hdr-call {
    padding: 12px 18px;
    min-height: 44px;
  }

  /* Hero / general CTA buttons */
  .btn-call,
  .btn-schedule,
  .btn {
    min-height: 44px;
  }

  .btn-call,
  .btn-schedule {
    padding: 0.75rem 1rem;
  }

  /* Phone number tap targets */
  a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE AUDIT FIXES — July 2026
═══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* FIX 1: Hero card no longer overlaps headline
     Increase the image wrap height so headline has room above the card */
  .hero-mobile-img-wrap {
    height: 300px;
  }
  /* Push headline higher — give it more bottom padding from the card */
  .hero-mobile-headline {
    bottom: 3.5rem; /* was var(--space-5) = 1.25rem — card pulls up 1.5rem so headline needs to be higher */
  }

  /* FIX 2: Why section — reset grid column/row assignments so 1-column grid works properly */
  .why-image-col {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .why-certs {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .why-text-col {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .why-coupons {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  /* FIX 2b: Hide the overlap card on mobile — it's fine on desktop but overlaps on mobile */
  .why-overlap-card {
    display: none;
  }

  /* FIX 3: Brands section — ensure no blank space from carousel height */
  .brands-section {
    padding: 20px 0;
  }
  .brand-logo {
    width: 140px;
    height: 80px;
  }
}

/* FIX 5: Water heaters trust bar on mobile — prevent "Same" being cut on its own line */
@media (max-width: 768px) {
  .whi-trust-inner {
    gap: 0.5rem 0.75rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .whi-trust-item {
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }
}


/* ── 24/7 urgency dot ─────────────────────────────────────────── */
.urgency-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); opacity: 1; }
  50% { box-shadow: 0 0 0 7px rgba(255,68,68,0); opacity: 0.85; }
}

/* ── Highlighted trust item (24/7 first bullet) ───────────────── */
.trust-item-highlight {
  color: #fff;
  font-weight: 800;
}
.trust-item-highlight span {
  font-weight: 800;
  letter-spacing: 0.01em;
}
.trust-item-highlight svg {
  stroke: #7DD4F8;
}
