/*
 * ProCare Garage Door Repair — Global Stylesheet
 * ─────────────────────────────────────────────────────────────────────────────
 * Version : 1.1
 * Updated : 2026-06-03
 * Stack   : WordPress / GeneratePress child theme
 *
 * HOW THIS FILE WORKS
 * This file is the single source of truth. It lives at:
 *   wp-content/themes/procare-child/style.css
 * HTML drafts in site-drafts/ do NOT link to a local CSS file — CSS is
 * served by WordPress on staging and production.
 * Page-specific <style> blocks contain ONLY genuine one-off overrides —
 * sections or layouts that appear on exactly one page and nowhere else.
 * When in doubt, add it here rather than inline.
 *
 * ADDING A NEW COMPONENT
 * 1. Find the right section below (or add a new section at the bottom).
 * 2. Add the class with a short ── COMPONENT NAME ── comment above it.
 * 3. Add responsive rules at the bottom in the appropriate breakpoint block.
 *
 * WORDPRESS HANDOFF
 * This file maps directly to the procare-child theme's style.css.
 * Page-specific overrides go in Blocksy's Custom CSS field per page,
 * or in a page-body-class selector in the child theme.
 *
 * HERO IMAGES
 * All hero sections use a CSS custom property for the background image:
 *   style="--hero-photo: url('images/your-photo.jpg')"
 * The base gradient overlay lives here in global CSS.
 * Never hardcode image URLs inside this stylesheet.
 * ─────────────────────────────────────────────────────────────────────────────
 */


/* ═══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand colours */
  --navy:              #1A2A47;
  --red:               #C8292A;
  --red-dark:          #A82121;
  --warm-white:        #F7F6F2;
  --light-gray:        #ECEAE4;
  --line-gray:         #DCDAD3;  /* hairline borders — tiles, dividers */
  --charcoal:          #2E2E2E;
  --mid-gray:          #6B6B6B;
  --border:            #DCDAD3;  /* alias for --line-gray, used in page-specific CSS */
  --green:             #2D7D46;
  --amber:             #C97B10;
  --gold:              #D4A017;

  /* Radii */
  --radius:            4px;
  --radius-md:         6px;
  --radius-lg:         10px;

  /* Layout */
  --max-width:         1200px;
  --outer-gutter:      24px;
  --section-pad-desktop: 80px;
  --section-pad-mobile:  48px;
  --prose-max:         780px;   /* max-width for long-form body copy */

  /* Section background tiers */
  --section-dark:      #131F36;  /* deep navy — service cards, reviews */
  --section-tint:      #E9EBF2;  /* cool blue-tint — subtle alt tier   */
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET + BASE
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
}

/* Mobile body padding so sticky bar never covers content */
@media (max-width: 640px) {
  body { padding-bottom: 72px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 48px; line-height: 1.1; }
h2 { font-size: 36px; }
h3 { font-size: 24px; line-height: 1.3; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════════
   4. UTILITY
   ═══════════════════════════════════════════════════════════════════════════ */

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


/* ═══════════════════════════════════════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  min-height: 48px;
  line-height: 1.4;
}
.btn-primary:hover { background: var(--red-dark); text-decoration: none; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  min-height: 48px;
  line-height: 1.4;
}
.btn-secondary:hover { background: var(--navy); color: #fff; text-decoration: none; }

.btn-primary-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  min-height: 48px;
  line-height: 1.4;
}
.btn-primary-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }


/* ═══════════════════════════════════════════════════════════════════════════
   6. HEADER / NAV
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.site-logo .logo-mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.site-logo .logo-text > span { color: var(--red); } /* red dot only */
.site-logo small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
nav a:hover { color: #fff; text-decoration: none; }

/* ── Services nav dropdown ─────────────────────────────── */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default; /* link is still clickable but dropdown is the primary interaction */
}
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.7);
  transition: transform 0.18s ease, stroke 0.15s;
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-dropdown-trigger svg,
.nav-has-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
  stroke: #fff;
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--section-dark);
  min-width: 248px;
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  z-index: 500;
  padding: 12px 0 6px;
}
/* Small pointer triangle */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 28px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid var(--red);
}
.nav-has-dropdown:hover .nav-dropdown-panel,
.nav-has-dropdown:focus-within .nav-dropdown-panel {
  display: block;
}
.nav-dropdown-panel a {
  display: block;
  padding: 9px 20px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-panel a:last-child { border-bottom: none; }
.nav-dropdown-panel a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  text-decoration: none;
}
/* Emergency service gets red accent to signal urgency */
.nav-dropdown-panel a.nav-emergency {
  color: var(--red);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.nav-dropdown-panel a.nav-emergency:hover { background: rgba(200,41,42,0.12); color: var(--red); }

nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.header-phone:hover { text-decoration: underline; }

/* "Free Estimate" button sits on the navy header — base .btn-secondary is navy-on-navy
   (invisible until hover). Invert it: white outline here, solid white on hover. */
.header-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.header-cta .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. HAMBURGER + MOBILE NAV
   ═══════════════════════════════════════════════════════════════════════════ */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--navy);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid rgba(255,255,255,0.08);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.01em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); text-decoration: none; }

/* Services sub-group inside mobile nav */
.mobile-nav-parent {
  color: rgba(255,255,255,0.5) !important; /* dimmed — tapping goes to /services/ hub */
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 6px !important;
  border-bottom: none !important;
}
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,0.12);
  margin-bottom: 4px;
}
.mobile-nav-sub a {
  font-size: 22px !important;
  padding: 11px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.mobile-nav-sub a:last-child { border-bottom: none !important; }
.mobile-nav-emergency { color: var(--red) !important; }
.mobile-nav-emergency:hover { color: var(--red-dark) !important; }

.mobile-nav .mobile-nav-phone {
  font-size: 32px;
  color: var(--red);
  margin-top: 24px;
  border-bottom: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. BREADCRUMB
   Used on all inner pages (service pages, city pages, about, contact).
   Two variants: .breadcrumb-bar (standalone bar below header) and
   .breadcrumb (inline inside .page-hero).
   ═══════════════════════════════════════════════════════════════════════════ */

/* Standalone bar variant */
.breadcrumb-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 24px;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumb-inner a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb-inner a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: rgba(255,255,255,0.75); }

/* Inline variant (inside page-hero) */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb span { margin: 0 6px; }


/* ═══════════════════════════════════════════════════════════════════════════
   9. HERO VARIANTS
   ─────────────────────────────────────────────────────────────────────────
   Three hero patterns:
   .hero          — Homepage (split layout, form right, text left)
   .service-hero  — Service & city pages (full-width, text only, compact)
   .page-hero     — Hub pages: Services, Service Areas, About, Contact

   ALL heroes use --hero-photo for the background image.
   Set it per-page via style="--hero-photo: url('images/yourphoto.jpg')"
   on the section element. Never hardcode image URLs here.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Homepage hero (split-column) ── */
.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(26,42,71,0.97) 0%, rgba(26,42,71,0.88) 38%, rgba(15,26,46,0.26) 100%),
    var(--hero-photo, none);
  background-size: cover, cover;
  background-position: center, center 35%;
  padding: 80px 24px 72px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: 52px; margin-bottom: 18px; }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-ctas .phone-cta { display: flex; flex-direction: column; }
.hero-ctas .phone-label {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.hero-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.hero-phone:hover { text-decoration: underline; }

/* ── Hero frosted-glass form card ── */
.hero-form {
  background: rgba(10,22,50,0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 28px 26px 22px;
}
.hero-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
}
.hero-form .form-group { margin-bottom: 11px; }
.hero-form .form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 5px;
}
.hero-form .label-optional {
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0;
  text-transform: none;
  font-size: 10px;
}
.hero-form .form-group input,
.hero-form .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.93);
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.hero-form .form-group input:focus,
.hero-form .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.hero-form .form-group textarea { min-height: 68px; resize: none; }
.hero-form .form-submit-btn { width: 100%; font-size: 16px; padding: 14px 20px; margin-top: 6px; }
.hero-form .form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ── FluentForms overrides inside hero form card ── */
/* Scoped to .hero-form so these never bleed into other FF forms on the site */
.hero-form .ff-el-group { margin-bottom: 11px; }
.hero-form .ff-el-input--label label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 5px;
}
.hero-form .ff-el-form-control {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.93);
  border: 1.5px solid transparent !important;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
  height: auto !important;
  min-height: unset !important;
  box-shadow: none !important;
}
.hero-form .ff-el-form-control:focus {
  outline: none;
  border-color: var(--red) !important;
  background: #fff;
  box-shadow: none !important;
}
.hero-form textarea.ff-el-form-control {
  min-height: 68px !important;
  resize: none;
}
.hero-form .ff_submit_btn_wrapper { margin-bottom: 0; }
.hero-form .ff-btn-submit {
  display: block;
  width: 100% !important;
  background: var(--red) !important;
  color: #fff !important;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  margin-top: 6px;
  border-radius: 4px;
  border: none !important;
  cursor: pointer;
  min-height: 48px;
  line-height: 1.4;
  transition: background 0.15s ease;
  text-align: center;
  box-shadow: none !important;
}
.hero-form .ff-btn-submit:hover { background: var(--red-dark) !important; }
.hero-form .ff-message-success,
.hero-form .ff-response-message { color: #ffffff !important; }

/* ── Service page hero (split-column: text left, form right) ── */
.service-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(26,42,71,0.97) 0%, rgba(26,42,71,0.88) 45%, rgba(15,26,46,0.40) 100%),
    var(--hero-photo, none);
  background-size: cover, cover;
  background-position: center, center;
  padding: 64px 24px 60px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.service-hero-content { max-width: 760px; }
.service-hero h1 { color: #fff; font-size: 52px; margin-bottom: 18px; }
.service-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas .phone-cta-wrap { display: flex; flex-direction: column; }
.phone-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

/* ── Hub page hero (Services, Service Areas, About, Contact) ── */
.page-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(26,42,71,0.92) 0%, rgba(26,42,71,0.80) 45%, rgba(15,26,46,0.40) 100%),
    var(--hero-photo, none);
  background-size: cover, cover;
  background-position: center, center 30%;
  padding: 64px 24px 60px;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
}
.page-hero h1 { color: #fff; font-size: 52px; margin-bottom: 18px; max-width: 700px; }
.page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: 32px;
}
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-phone-inline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.hero-phone-inline:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════════
   10. TRUST BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.trust-bar {
  background: var(--light-gray);
  border-top: 3px solid var(--red);
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); }
.trust-icon { width: 20px; height: 20px; stroke: var(--navy); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   11. SECTION SHELLS
   ═══════════════════════════════════════════════════════════════════════════ */

section { padding: var(--section-pad-desktop) 24px; }
section.alt-bg  { background: var(--light-gray); }
section.dark-bg { background: var(--navy); }

section.dark-section { background: var(--section-dark); }
section.dark-section h2,
section.dark-section h3 { color: #fff; }
section.dark-section .section-header p { color: rgba(255,255,255,0.68); }

/* Button overrides inside dark sections */
section.dark-section .services-footer .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: transparent;
}
section.dark-section .services-footer .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  text-decoration: none;
}
section.dark-section .reviews-link a { color: rgba(255,255,255,0.80); }
section.dark-section .reviews-link a:hover { color: #fff; }
section.dark-section .aggregate-rating p { color: rgba(255,255,255,0.62); }

section.tint-section { background: var(--section-tint); }
/* Step circles need a different outline on the tint background */
section.tint-section .step-number { box-shadow: 0 0 0 6px var(--section-tint); }

.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-header { margin-bottom: 48px; }
.section-header p {
  font-size: 18px;
  color: var(--mid-gray);
  margin-top: 12px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; max-width: 680px; }


/* ═══════════════════════════════════════════════════════════════════════════
   12. SERVICE CARDS (homepage grid)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-top: 4px solid var(--navy);
  padding: 28px 24px;
  border-radius: 0 0 4px 4px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
/* Photo slot: <img class="card-photo"> as first child of .service-card */
.service-card .card-photo {
  display: block;
  width: calc(100% + 48px);
  margin: -28px -24px 24px;
  height: 220px; /* taller to match wider 2-column card format */
  object-fit: cover;
  background: var(--light-gray); /* fallback when image is absent / not yet loaded */
}
.card-icon { width: 40px; height: 40px; stroke: var(--navy); margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; font-size: 22px; }
.service-card p { font-size: 15px; color: var(--charcoal); line-height: 1.6; margin-bottom: 16px; }
.card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.card-link svg { width: 14px; height: 14px; stroke: var(--red); transition: transform 0.15s; }
.card-link:hover svg { transform: translateX(3px); }

.services-footer { text-align: center; margin-top: 36px; }

/* Card overrides on dark section */
section.dark-section .service-card { border-top-color: var(--red); }
section.dark-section .service-card:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.35); }
/* White card components sit on dark bg — keep heading text navy inside the card */
section.dark-section .service-block h3,
section.dark-section .related-card h3 { color: var(--navy); }


/* ═══════════════════════════════════════════════════════════════════════════
   13. SERVICES HUB GRID (services page block layout)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.service-block {
  background: #fff;
  padding: 36px 32px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  transition: background 0.18s ease;
}
.service-block:hover { background: #fdfcf8; }
.service-block:nth-child(3n) { border-right: none; }
.service-block:nth-last-child(-n+3) { border-bottom: none; }

/* Photo slot: <img class="block-photo" loading="lazy"> as first child */
.service-block .block-photo {
  display: block;
  width: calc(100% + 64px);
  margin: -36px -32px 28px;
  height: 200px;
  object-fit: cover;
}
.service-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-block-icon { width: 44px; height: 44px; stroke: var(--navy); margin-bottom: 16px; }
.service-block h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.service-block p { font-size: 15px; color: var(--charcoal); line-height: 1.65; margin-bottom: 20px; }
.service-block .block-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.service-block .block-cta:hover { text-decoration: underline; }
.service-block .block-cta svg { width: 14px; height: 14px; stroke: var(--red); transition: transform 0.15s; }
.service-block .block-cta:hover svg { transform: translateX(3px); }

/* Emergency block accent */
.service-block.emergency { background: #fff8f8; border-top: 3px solid var(--red); margin-top: -3px; }
.service-block.emergency:hover { background: #fff3f3; }
.service-block.emergency .service-block-icon { stroke: var(--red); }
.service-block.emergency h3 { color: var(--red); }


/* ═══════════════════════════════════════════════════════════════════════════
   14. WHY PROCARE (homepage feature section)
   ═══════════════════════════════════════════════════════════════════════════ */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 48px; }
.why-photo-col {
  position: relative;
  align-self: stretch;   /* fill the full height of the content column (was: start + fixed 540px, which left a gap) */
  min-height: 540px;     /* floor so it never collapses if the content column is short */
  border-radius: 4px;
  overflow: hidden;
  background: var(--light-gray); /* visible until real photo loads */
}
.why-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.why-item-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.why-icon { width: 32px; height: 32px; stroke: var(--green); flex-shrink: 0; margin-top: 3px; }
.why-item h3 { font-size: 22px; color: var(--navy); }
.why-item p { font-size: 16px; color: var(--charcoal); line-height: 1.7; margin-left: 48px; }


/* ═══════════════════════════════════════════════════════════════════════════
   15. WHY STRIP (services hub condensed version)
   ═══════════════════════════════════════════════════════════════════════════ */

.why-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-strip-item { text-align: center; }
.why-strip-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(26,42,71,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-strip-icon { width: 26px; height: 26px; stroke: var(--navy); }
.why-strip-item h3 { font-size: 18px; margin-bottom: 8px; }
.why-strip-item p { font-size: 14px; color: var(--mid-gray); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════════════════
   16. TESTIMONIALS / SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--light-gray);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--light-gray);
  pointer-events: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 18px; height: 18px; fill: var(--gold); stroke: none; }
.testimonial-quote { font-size: 16px; font-style: italic; color: var(--charcoal); line-height: 1.7; margin-bottom: 16px; position: relative; }
.testimonial-author { font-size: 14px; color: var(--mid-gray); font-weight: 600; }
.reviews-link { text-align: center; margin-top: 36px; }
.reviews-link a { font-size: 15px; font-weight: 600; color: var(--navy); }
.aggregate-rating { text-align: center; margin-bottom: 36px; }
.aggregate-rating .stars { justify-content: center; margin-bottom: 6px; }
.aggregate-rating p { font-size: 14px; color: var(--mid-gray); margin: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   17. HOW IT WORKS (3-step process)
   ═══════════════════════════════════════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
/* Connector line between step circles */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: rgba(200,41,42,0.18);
  z-index: 0;
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--light-gray);
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--mid-gray); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════════════════
   18. CITY TAGS / SERVICE AREA
   ═══════════════════════════════════════════════════════════════════════════ */

.city-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.city-tag {
  background: #fff;
  border: 1px solid var(--light-gray);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.city-tag:hover { border-color: var(--navy); background: var(--navy); color: #fff; text-decoration: none; }
.area-footer { margin-top: 28px; }

.service-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }


/* ═══════════════════════════════════════════════════════════════════════════
   19. BRANDS SECTION ("We Know Your Equipment")
   Text tiles active until real logo files arrive.
   TO SWAP IN LOGOS: replace <span class="brand-tile">Name</span>
   with <span class="brand-tile"><img src="images/logo-name.svg" alt="Brand"></span>
   ═══════════════════════════════════════════════════════════════════════════ */

.brands-section {
  background: var(--light-gray);
  border-bottom: 1px solid var(--line-gray);
  padding: 40px 24px;
}
.brands-inner { max-width: var(--max-width); margin: 0 auto; }
.brands-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Copy column: text left, photo right */
.brands-copy-col {
  display: flex;
  gap: 40px;
  align-items: center;
}
.brands-copy-text { flex: 1; }
.brands-copy-photo {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.brands-copy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 640px) {
  .brands-copy-col { flex-direction: column; gap: 20px; }
  .brands-copy-photo { width: 100%; height: 140px; }
}

.brands-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.brands-heading { font-size: 26px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.brands-copy { font-size: 15px; color: var(--charcoal); line-height: 1.72; margin-bottom: 0; }

.brands-group { margin-bottom: 16px; }
.brands-group:last-child { margin-bottom: 0; }
.brands-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

/* ── Brands card (white surface, 4px navy top-border — the service-card signature) ── */
.brands-card {
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: 0 0 4px 4px;
  padding: 20px 18px;
}

.brands-tiles { display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; }

/* ── Brand tile — wordmark fallback ── */
/* To swap in a real logo: replace the text content with an <img> tag and add
   class="brand-tile brand-tile--logo" — the img CSS handles greyscale automatically. */
.brand-tile {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.50;
  padding: 5px 11px;
  border: 1px solid var(--line-gray);
  border-radius: 3px;
  background: var(--warm-white);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  transition: opacity 0.15s ease, border-color 0.15s ease;
  cursor: default;
}
.brand-tile:hover {
  opacity: 0.85;
  border-color: #bbb;
}

/* ── Logo tile modifier — opacity set to 1; img filter handles all dimming ── */
.brand-tile--logo { opacity: 1; }
.brand-tile--logo:hover { opacity: 1; }

/* ── Logo image: greyscale always, brightens slightly on hover ── */
.brand-tile img {
  display: block;
  max-height: 30px;
  width: auto;
  filter: grayscale(100%) opacity(0.70);
  transition: filter 180ms ease;
}
.brand-tile:hover img {
  filter: grayscale(100%) opacity(0.90); /* stays greyscale — lifts on hover */
}

/* ── Inverted logo modifier — for white/light logos on the white card ── */
/* Apply class="brand-tile brand-tile--logo brand-tile--logo-invert" */
/* filter: brightness(0) converts any color (including white) to pure black,
   then opacity dims it. Result: dark-grey treatment matching wordmark visual weight. */
.brand-tile--logo-invert img {
  filter: brightness(0) opacity(0.65);
}
.brand-tile--logo-invert:hover img {
  filter: brightness(0) opacity(0.85);
}

/* ── "AND MORE" — uppercase italic, full opacity, no tile treatment ── */
.brand-tile--more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
  opacity: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0 6px;
  min-height: auto;
  align-self: center;
  cursor: default;
  display: inline-flex;
  align-items: center;
}

/* ── "Don't see your brand" callout ── */
.brands-not-exhaustive {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 4px;
}

/* ── Brands disclaimer ── */
.brands-disclaimer {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0.75;
}


/* ═══════════════════════════════════════════════════════════════════════════
   20. CONTACT BRIDGE (secondary phone push, form lives in hero)
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-bridge { background: var(--section-dark); padding: var(--section-pad-desktop) 24px; }
.contact-bridge-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-bridge h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }
.contact-bridge-lead { color: rgba(255,255,255,0.76); font-size: 17px; line-height: 1.7; margin-bottom: 0; }
.contact-bridge-right { text-align: center; }
.contact-bridge-phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-bridge-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-bridge-phone:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════════
   21. FORM FIELDS (shared — used on contact page and inside hero form)
   ═══════════════════════════════════════════════════════════════════════════ */

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn { width: 100%; font-size: 17px; padding: 15px 24px; }
.form-note { font-size: 13px; color: var(--mid-gray); text-align: center; margin-top: 10px; margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   22. FAQ ACCORDION (service pages and city pages)
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--light-gray); border-radius: 4px; overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2A47' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] { border-color: var(--navy); }
.faq-item[open] summary { border-bottom: 1px solid var(--light-gray); }
.faq-body { padding: 20px 24px; }
.faq-body p { font-size: 16px; line-height: 1.7; color: var(--charcoal); }


/* ═══════════════════════════════════════════════════════════════════════════
   23. PROSE CONTENT (long-form service page body copy)
   ═══════════════════════════════════════════════════════════════════════════ */

.prose { max-width: var(--prose-max); }
.prose p { font-size: 17px; line-height: 1.75; color: var(--charcoal); margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.5em; font-size: 20px; }


/* ═══════════════════════════════════════════════════════════════════════════
   24. SAFETY / WARNING CALLOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.safety-callout {
  background: #fff3cd;
  border-left: 4px solid var(--amber);
  border-radius: 0 4px 4px 0;
  padding: 18px 22px;
  margin: 32px 0;
  max-width: var(--prose-max);
}
.safety-callout p { font-size: 16px; color: #5a3a00; font-weight: 600; line-height: 1.6; margin: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   25. SERVICE CONTENT GRID (prose + sticky image, 2-col)
   ═══════════════════════════════════════════════════════════════════════════ */

.service-content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.service-content-grid .prose { max-width: none; }
.service-content-img {
  position: sticky;
  top: 88px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.service-content-img img { display: block; width: 100%; height: auto; }
.service-content-img figcaption { font-size: 13px; color: var(--mid-gray); padding: 10px 14px; background: #fff; line-height: 1.5; }


/* ═══════════════════════════════════════════════════════════════════════════
   26. RELATED SERVICES (3-card grid at bottom of service pages)
   ═══════════════════════════════════════════════════════════════════════════ */

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  background: #fff;
  border-top: 3px solid var(--navy);
  border-radius: 0 0 4px 4px;
  padding: 24px 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.related-card .card-link { margin-top: auto; }
.related-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.related-card h3 { font-size: 20px; margin-bottom: 8px; }
.related-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.6; margin-bottom: 14px; }


/* ═══════════════════════════════════════════════════════════════════════════
   27. SERVICE DETAIL ASIDE (services hub page)
   ═══════════════════════════════════════════════════════════════════════════ */

.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.service-detail-text h2 { margin-bottom: 20px; }
.service-detail-text p { margin-bottom: 16px; font-size: 16px; }
.service-detail-text p:last-child { margin-bottom: 0; }
.service-detail-aside {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid var(--navy);
}
/* On cream sections the aside flips to white so it reads as a card */
.alt-bg .service-detail-aside { background: #fff; }
.aside-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.aside-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--charcoal); }
.check-icon { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   28. CTA BLOCK (full-width closing section, every page)
   TO ADD PHOTO: style="--cta-photo: url('images/your-photo.jpg')" on section
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-block {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(15,26,46,0.88), rgba(26,42,71,0.92)),
    var(--cta-photo, none);
  background-size: cover, cover;
  background-position: center, center 40%;
  padding: var(--section-pad-desktop) 24px;
  text-align: center;
}
.cta-block h2 { color: #fff; font-size: 40px; margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.cta-phone-wrap { display: flex; flex-direction: column; align-items: center; }
.cta-phone-label {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.cta-phone:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════════
   29. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer { background: #0f1a2e; color: rgba(255,255,255,0.7); padding: 60px 24px 28px; }
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .site-logo { display: block; margin-bottom: 16px; }
.footer-nap { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-nap .footer-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: block;
  margin-top: 8px;
}
.footer-hours { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; text-decoration: none; }

/* Footer brands row (homepage only, but available globally) */
.footer-brands-row { max-width: var(--max-width); margin: 0 auto 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-brands-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.footer-brands-list { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; }
.footer-brands-list span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  white-space: nowrap;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }


/* ═══════════════════════════════════════════════════════════════════════════
   30. MOBILE STICKY CTA BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0f1a2e;
  border-top: 3px solid var(--red);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 4px;
  line-height: 1.3;
}
.mobile-cta-bar .cta-call { background: var(--red); color: #fff; }
.mobile-cta-bar .cta-estimate { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }


/* ═══════════════════════════════════════════════════════════════════════════
   31. SYMPTOM GUIDE GRID (services hub — 4-column diagnostic cards)
   ═══════════════════════════════════════════════════════════════════════════ */

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   33. SERVICES QUICK GRID (city pages + service areas hub)
   Condensed 4-column tile grid — title + link only, no descriptions.
   Used on every city page and the service areas hub.
   ═══════════════════════════════════════════════════════════════════════════ */

.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.services-quick-grid .related-card {
  padding: 20px 20px 18px;
}

.services-quick-grid .related-card h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   34. SERVICE AREAS HUB — CITY LIST
   White card (navy top-border signature) on dark-section bg. Cities listed in
   columns with the same green-check idiom as the .aside-list "Coverage at a
   Glance" block above. Text is dark — it's inside the white card, not on the bg.
   ═══════════════════════════════════════════════════════════════════════════ */

.city-list-box {
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-top: 36px;
}

.city-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}

.city-list-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.city-list-grid .check-icon { margin-top: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   32. RESPONSIVE BREAKPOINTS
   All media queries consolidated here — do not scatter them above.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1060px: wide tablet / small desktop ── */
@media (max-width: 1060px) {
  .why-layout { grid-template-columns: 1fr 340px; gap: 48px; }
  .contact-bridge-inner { gap: 40px; }
}

/* ── 960px: tablet landscape ── */
@media (max-width: 960px) {
  .services-main-grid { grid-template-columns: 1fr 1fr; }
  .service-block:nth-child(3n)      { border-right: 1px solid var(--light-gray); }
  .service-block:nth-child(2n)      { border-right: none; }
  .service-block:nth-last-child(-n+3) { border-bottom: 1px solid var(--light-gray); }
  .service-block:nth-last-child(-n+2) { border-bottom: none; }
  .why-strip { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .services-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .city-list-grid { grid-template-columns: repeat(2, 1fr); }
  .city-list-box { padding: 24px 20px; }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {
  h1 { font-size: 40px; }
  .hero h1 { font-size: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-form { max-width: 480px; }
  /* .services-grid stays 2-col — already the desktop default */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  /* .brands-layout already a flex column — no collapse needed */
  .why-layout { grid-template-columns: 1fr; }
  .why-photo-col { height: 300px; position: relative; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-bridge-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-bridge-right { text-align: left; }
  .service-hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
}

/* ── 860px: service content grid collapses ── */
@media (max-width: 860px) {
  .service-content-grid { grid-template-columns: 1fr; }
  .service-content-img { position: static; max-width: 520px; }
}

/* ── 768px: small tablet ── */
@media (max-width: 768px) {
  .service-area-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 640px: mobile ── */
@media (max-width: 640px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  /* Homepage hero */
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  .hero { padding: 60px 20px 60px; min-height: auto; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Service hero */
  .service-hero h1 { font-size: 34px; }
  .service-hero { padding: 48px 20px; min-height: auto; }
  .service-hero-sub { font-size: 17px; }
  /* 2-col form layout collapses — form stacks below content */
  .service-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-form { max-width: 480px; }

  /* Hub page hero */
  .page-hero h1 { font-size: 34px; }
  .page-hero-sub { font-size: 17px; }
  .page-hero { padding: 48px 20px 44px; }
  .page-hero-ctas { flex-direction: column; align-items: flex-start; }
  /* 2-col form layout collapses on mobile */
  .page-hero-inner { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Sections + grids */
  section { padding: var(--section-pad-mobile) 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .service-block { border-right: none; }
  .service-block:nth-child(3n)        { border-right: none; }
  .service-block:nth-last-child(-n+3) { border-bottom: 1px solid var(--light-gray); }
  .service-block:nth-last-child(1)    { border-bottom: none; }
  .why-strip { grid-template-columns: 1fr; }
  .services-main-grid { grid-template-columns: 1fr; }

  /* CTA block */
  .cta-block { padding: var(--section-pad-mobile) 20px; }
  .cta-block h2 { font-size: 30px; }
  .cta-phone { font-size: 28px; }

  /* Contact bridge */
  .contact-bridge { padding: var(--section-pad-mobile) 20px; }
  .contact-bridge h2 { font-size: 28px; }
  .contact-bridge-phone { font-size: 34px; }

  /* Brands */
  .brands-section { padding: 40px 20px; }

  /* Forms */
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }

  /* FAQ */
  .faq-item summary { font-size: 19px; padding: 16px 18px; }
  .faq-body { padding: 16px 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Header */
  .header-inner { padding: 0 16px; }
  .header-cta .btn-secondary { display: none; }
  .mobile-cta-bar { display: flex; }
  .symptom-grid { grid-template-columns: 1fr; }
  .services-quick-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEMPORARY: hide all review/testimonial sections site-wide until real reviews
   + Google profile are live (current content is placeholder). To RESTORE,
   delete this single rule. Targets every page's reviews section.
   ═══════════════════════════════════════════════════════════════════════════ */
section[aria-labelledby="reviews-heading"] { display: block; }
