/*
Theme Name: Junk Nurse
Theme URI: https://nurse.localseoservices.org
Author: Lemur Marketing / Sonic
Description: Custom theme for Junk Nurse — Aurora, IL junk removal. Built by a nurse. Run like one.
Version: 1.2.3
License: GNU General Public License v2 or later
Text Domain: junk-nurse
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --blue:        #1A5CAF;
  --blue-dark:   #0F3D7A;
  --blue-light:  #2470cc;
  --green:       #7EC242;
  --green-dark:  #5A9E28;
  --red:         #D32F2F;
  --red-dark:    #B71C1C;
  --off-white:   #F7F9FC;
  --gray-light:  #E4EAF2;
  --gray-mid:    #6B7A90;
  --charcoal:    #1E2B3C;
  --white:       #FFFFFF;
  --danger:      #C0392B;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --container:   1200px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-full: 100px;

  --shadow-sm:   0 2px 8px rgba(26,92,175,0.08);
  --shadow-md:   0 4px 20px rgba(26,92,175,0.13);
  --shadow-lg:   0 8px 40px rgba(26,92,175,0.18);

  --transition:  0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 700;
}

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

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

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

.section {
  padding: 48px 0;
}
@media (min-width: 768px) { .section { padding: 64px 0; } }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

.section-pad {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .section-pad { padding: 64px 0; }
}
@media (min-width: 1024px) {
  .section-pad { padding: 80px 0; }
}

.bg-light { background: var(--off-white); }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.section--blue    { background: var(--blue); color: var(--white); }
.section--dark    { background: var(--blue-dark); color: var(--white); }
.section--off-white { background: var(--off-white); }
.section--white   { background: var(--white); }

.section--blue h2, .section--dark h2,
.section--blue h3, .section--dark h3,
.section--blue p, .section--dark p { color: var(--white); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}

.section--blue .eyebrow { color: #a8d97b; }

h1.display {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 620px;
  line-height: 1.7;
}

.section--blue .section-intro,
.section--dark .section-intro { color: rgba(255,255,255,0.8); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--green);
  color: var(--charcoal);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Solid white button — use on blue/dark backgrounds for max contrast */
.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

.btn--call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-bar {
  background: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  gap: 24px;
}
.top-bar__address,
.top-bar__phone { display: none; }
@media (min-width: 768px) {
  .top-bar__inner { justify-content: space-between; }
  .top-bar__address,
  .top-bar__phone { display: flex; align-items: center; gap: 6px; }
}
.top-bar__phone a { color: var(--white); font-weight: 700; }
.top-bar__phone a:hover { color: rgba(255,255,255,0.8); }
.top-bar__insurance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
}
.top-bar svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.site-header-wrap.scrolled .site-header { box-shadow: var(--shadow-md); }

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header-nav {
  display: none;
  align-items: center;
}

@media (min-width: 900px) { .header-nav { display: flex; } }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hide call + quote buttons on mobile — sticky bar handles it */
.header-call-btn,
.header-quote-btn { display: none; }

@media (min-width: 640px) { .header-call-btn { display: inline-flex; } }
@media (min-width: 900px) { .header-quote-btn { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 10px;      /* 11+11+22 bars ≈ 44px touch target */
  cursor: pointer;
  border: none;
  background: none;
  border-radius: var(--radius);
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle:hover { background: var(--off-white); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 108px; /* 36px top-bar + 72px header */
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-bottom: 3px solid var(--green);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #f0f5fb 0%, var(--off-white) 100%);
  color: var(--charcoal);
  padding: 52px 0 56px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .hero { padding: 64px 0 72px; } }

/* Mobile: content-top → photo → content-bottom
   Desktop: left(content-top + content-bottom) | right(photo) */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "content-top"
    "photo"
    "content-bottom";
  gap: 20px;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas:
      "content-top photo"
      "content-bottom photo";
    gap: 8px 56px;
    align-items: start;
  }
  .hero__photo { align-self: center; }
}

.hero__content-top    { grid-area: content-top; }
.hero__content-bottom { grid-area: content-bottom; }
.hero__photo          { grid-area: photo; }


/* Service-area pill badge */
.hero__area-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.hero__area-badge svg {
  width: 13px; height: 13px; max-width: 13px; max-height: 13px;
  color: var(--green); flex-shrink: 0;
}

/* H1 — body font, not display serif */
.hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.55rem, 5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero__sub {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* $89 callout — above the hero photo */
.hero__price-callout {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #FFF8DC;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  border-bottom: 4px solid #F5C842;
  margin: 0 0 12px 0;
  text-align: center;
  box-sizing: border-box;
}
.hero__price-callout strong {
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.25rem;
}
@media (min-width: 900px) {
  .hero__price-callout {
    font-size: 1.6rem;
    padding: 10px 24px;
    background: transparent;
    border-bottom: 3px solid #F5C842;
    border-radius: 0;
    margin-bottom: 14px;
  }
  .hero__price-callout strong {
    font-size: 2rem;
  }
}

/* 4-feature grid */
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__feature-icon {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__feature-icon svg {
  width: 16px; height: 16px; max-width: 16px; max-height: 16px; color: var(--white);
}

.hero__feature-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.hero__feature-text small {
  font-size: 0.75rem;
  color: var(--gray-mid);
}
@media (max-width: 767px) {
  .hero__feature-text small { display: none; }
  .hero__feature { align-items: center; }
}

/* Desktop CTA pair */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .hero__ctas { display: none; }
  .lp-hero__ctas { display: none; }
  .hero { padding: 28px 0 32px; }
}

/* Hero photo */
.hero__photo {
  /* no card styling here — applied to img below so callout sits cleanly above */
}
.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  padding: 18px 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--off-white); }

.problem-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .problem-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .problem-cards { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 20px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card__icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--danger);
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

.problem-card__fix {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}
.problem-card__fix svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT / PROOF SECTION
   ============================================================ */
.about-section { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.about-image-wrap {
  position: relative;
  padding-bottom: 28px;
  padding-right: 20px;
}
@media (min-width: 900px) {
  .about-image-wrap { padding-bottom: 28px; padding-right: 28px; }
}

.about-image-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,92,175,0.15), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-content .section-title { margin-bottom: 20px; }

.about-content blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
}

.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.services-section .section-header {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  background: rgba(26,92,175,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(126,194,66,0.1);
  border: 1px solid rgba(126,194,66,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.services-note svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.services-note p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0;
}
.services-note strong { color: var(--green-dark); }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--white); }

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.elfsight-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   CTA / ACTION SECTION
   ============================================================ */
.cta-section {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}

.cta-phone {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0;
}
.cta-phone:hover { color: var(--green); }

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

.service-area-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  position: relative;
}

.tagline-mark {
  display: block;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0 48px; }
}

.footer-brand .site-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 16px;
}

/* Contact info block */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--green); }
.footer-contact-info svg {
  flex-shrink: 0;
  color: var(--green);
  opacity: 0.8;
}

/* Social icons row */
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Column headings */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; list-style: none; padding: 0; margin: 0; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--green); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  /* safe area for notched phones */
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 13px 12px;
  transition: filter var(--transition), transform var(--transition);
  line-height: 1;
}
.mobile-cta-bar a:active { transform: scale(0.97); }
.mobile-cta-bar a:first-child {
  background: var(--red);
  color: var(--white);
}
.mobile-cta-bar a:last-child {
  background: var(--blue);
  color: var(--white);
}
.mobile-cta-bar a svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   INTERIOR PAGE TEMPLATE
   ============================================================ */
.page-hero {
  background: var(--blue);
  padding: 32px 0;
  color: var(--white);
}
@media (min-width: 768px) { .page-hero { padding: 44px 0; } }
@media (min-width: 1024px) { .page-hero { padding: 56px 0; } }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
}

.page-content {
  padding: 36px 0;
}
@media (min-width: 768px) { .page-content { padding: 52px 0; } }
@media (min-width: 1024px) { .page-content { padding: 64px 0; } }

.page-content:empty,
.page-content__inner:empty {
  display: none;
}
.page-content__inner {
  max-width: 800px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   SONIC BOOM ADDITIONS
   ============================================================ */

/* Hero review badge */
.hero__review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  width: fit-content;
  text-decoration: none;
  transition: box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
a.hero__review-badge:hover {
  border-color: #F5C842;
  box-shadow: 0 4px 16px rgba(245,200,66,0.25);
}
.hero__stars {
  font-size: 1.1rem;
  color: #F5C842;
  letter-spacing: 1px;
  line-height: 1;
}
.hero__review-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.hero__review-sub {
  display: block;
  font-weight: 400;
  color: var(--gray-mid);
  font-size: 0.78rem;
  margin-top: 2px;
}

@media (min-width: 900px) {
  .hero .container { width: 100%; }
}

/* Counter animation */
.hero__stat-num[data-count] { transition: none; }

/* The Junk Nurse Standard — named process */
.standard-section { position: relative; overflow: hidden; }

.standard-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .standard-steps { grid-template-columns: 1fr 1fr; gap: 2px; }
}
@media (min-width: 1100px) {
  .standard-steps { grid-template-columns: repeat(4, 1fr); gap: 2px; }
}

.standard-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.standard-step:hover { background: rgba(255,255,255,0.1); }
.standard-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.standard-step:hover::before { transform: scaleX(1); }

.standard-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.standard-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.standard-step p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

/* Reviews aggregate badge */

.cta-response-time {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-response-time svg { flex-shrink: 0; }

/* Inline quote form card */
.cta-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* Bottom padding for mobile CTA bar */
body { padding-bottom: 60px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.cta-section--compact { padding: 40px 0; }
@media (min-width: 768px) { .cta-section--compact { padding: 56px 0; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero — phone-first on mobile */
.contact-hero {
  background: var(--blue-dark);
  padding: 32px 0 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .contact-hero { padding: 52px 0 48px; } }
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  pointer-events: none;
}
.contact-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}
.contact-hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}
.contact-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  letter-spacing: 0;
}
.contact-hero__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  color: var(--charcoal);
}
.contact-hero__hours {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 16px;
  position: relative;
}

/* Layout */
.contact-section { background: var(--off-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 860px) {
  .contact-layout { grid-template-columns: 3fr 2fr; gap: 56px; }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 480px) {
  .contact-form { padding: 36px; }
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.form-label-req { color: var(--blue); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,92,175,0.12);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-mid); font-size: 0.95rem; }

.contact-submit { width: 100%; justify-content: center; }

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.form-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray-mid);
}
.form-trust svg { color: var(--green); }

/* Success state */
.contact-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 480px) { .contact-success { padding: 48px 40px; } }

.contact-success__icon {
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  background: rgba(126,194,66,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-success__icon svg { color: var(--green); }

/* Sidebar — hidden on mobile, shown on desktop */
.contact-sidebar {
  display: none;
}
@media (min-width: 860px) {
  .contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
  }
}

.contact-sidebar__block { border-bottom: 1px solid var(--gray-light); padding-bottom: 24px; }
.contact-sidebar__block:last-child { border-bottom: none; padding-bottom: 0; }

.contact-sidebar__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.contact-sidebar__phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.contact-sidebar__phone:hover { color: var(--blue-dark); }

.contact-sidebar__link {
  font-size: 0.95rem;
  color: var(--blue);
  word-break: break-all;
}
.contact-sidebar__link:hover { color: var(--blue-dark); }

.contact-sidebar__meta {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-sidebar__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.contact-sidebar__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-sidebar__trust-item svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   WPFORMS THEME OVERRIDES
   ============================================================ */
.wpforms-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); }
@media (min-width: 480px) { .wpforms-wrap { padding: 36px; } }

.wpforms-form .wpforms-field { margin-bottom: 18px; }

.wpforms-form .wpforms-field-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.wpforms-form .wpforms-field-sublabel {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="url"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1.5px solid var(--gray-light) !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  color: var(--charcoal) !important;
  background: var(--off-white) !important;
  box-shadow: none !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
  -webkit-appearance: none;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
  outline: none !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(26,92,175,0.12) !important;
  background: var(--white) !important;
}

.wpforms-form textarea { min-height: 110px; resize: vertical; }

.wpforms-form .wpforms-submit-container { margin-top: 4px; }

.wpforms-form .wpforms-submit,
.wpforms-form button[type="submit"] {
  width: 100% !important;
  padding: 15px 24px !important;
  background: var(--green) !important;
  color: var(--charcoal) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: none !important;
}
.wpforms-form .wpforms-submit:hover,
.wpforms-form button[type="submit"]:hover {
  background: #6ab535 !important;
  transform: translateY(-1px) !important;
}

.wpforms-form .wpforms-required-label { color: var(--blue); }

.wpforms-confirmation-container-full,
.wpforms-confirmation-scroll {
  background: rgba(126,194,66,0.1) !important;
  border: 1px solid var(--green) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  color: var(--charcoal) !important;
  font-weight: 600 !important;
}

/* ============================================================
   INTERNAL LINK HUBS (Homepage)
   ============================================================ */
.links-hub { background: var(--white); }
.links-hub--alt { background: var(--off-white); }

.links-hub__header {
  text-align: center;
  margin-bottom: 40px;
}
.links-hub__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.links-hub__header p {
  color: var(--gray-mid);
  font-size: 1.0625rem;
}
.links-hub__footer {
  text-align: center;
  margin-top: 32px;
}

/* Services grid */
.links-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.links-hub--alt .hub-card { background: var(--white); }
.hub-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.hub-card strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
}
.hub-card span {
  font-size: 0.8125rem;
  color: var(--gray-mid);
}

/* Locations grid */
.links-hub__locations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.loc-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.loc-pill:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.loc-pill svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.loc-pill div { display: flex; flex-direction: column; gap: 2px; }
.loc-pill strong { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); }
.loc-pill span { font-size: 0.8rem; color: var(--gray-mid); }

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */

/* ---- DESKTOP ---- */
.header-nav .menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-nav .menu > li {
  position: relative;
}

/* Top-level links */
.header-nav .menu > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.header-nav .menu > li > a:hover,
.header-nav .menu > li.current-menu-item > a,
.header-nav .menu > li.current-menu-ancestor > a {
  color: var(--blue);
  background: var(--off-white);
}

/* Drop-down arrow on parent items */
.header-nav .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.55;
  vertical-align: middle;
}

/* Dropdown panel — hidden by default */
.header-nav .sub-menu {
  display: block;           /* keep in render tree for transitions */
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(26,92,175,0.18);
  border: 1px solid var(--gray-light);
  list-style: none;
  padding: 8px 0;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  pointer-events: none;
}

/* Show on hover (or focus-within for keyboard nav) */
.header-nav .menu > li:hover > .sub-menu,
.header-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

/* Dropdown item links */
.header-nav .sub-menu li {
  list-style: none;
}
.header-nav .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.header-nav .sub-menu li a:hover {
  color: var(--blue);
  background: var(--off-white);
}

/* ---- MOBILE ---- */
.mobile-nav .mobile-menu,
.mobile-nav .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-menu > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .mobile-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav .mobile-menu > li > a:hover { color: var(--green); }

/* Arrow toggle on parent items */
.mobile-nav .mobile-menu .menu-item-has-children > a::after {
  content: '+';
  font-size: 1.25rem;
  line-height: 1;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
}
.mobile-nav .mobile-menu .menu-item-has-children.open > a::after { content: '−'; }

/* Mobile sub-menu — collapsed by default */
.mobile-nav .sub-menu {
  display: none;
  list-style: none;
  padding: 4px 0 12px 16px;
  border-left: 2px solid var(--green);
  margin: 0 0 4px;
}
.mobile-nav .menu-item-has-children.open > .sub-menu { display: block; }

.mobile-nav .sub-menu li a {
  display: block;
  padding: 12px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav .sub-menu li a:hover { color: var(--green); }

.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
}

/* ============================================================
   LOCATION + SERVICE PAGE TEMPLATES
   ============================================================ */

/* Location page hero — matches homepage light-grid style */
.lp-hero {
  background: linear-gradient(160deg, var(--off-white) 0%, #EBF3FC 40%, var(--gray-light) 100%);
  color: var(--charcoal);
  padding: 32px 0 28px;
}
@media (min-width: 768px) { .lp-hero { padding: 40px 0 36px; } }
@media (min-width: 1024px) { .lp-hero { padding: 52px 0 48px; } }

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'content' 'photo';
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'content photo';
    gap: 48px;
  }
  .lp-hero__photo { align-self: center; }
}

.lp-hero__content { grid-area: content; }
.lp-hero__photo   { grid-area: photo; }

.lp-hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.15;
}
.lp-hero .hero__area-badge { margin-bottom: 14px; }

.lp-hero__sub {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* 4-feature mini grid */
.lp-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}
.lp-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.lp-hero__feature svg { color: var(--blue); flex-shrink: 0; }

.lp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mobile overrides */
@media (max-width: 767px) {
  .lp-hero__ctas    { display: none; }
  .lp-hero__features {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 16px;
  }
  .lp-hero__feature { font-size: 0.82rem; }
  .lp-hero__sub     { margin-bottom: 14px; }
  .lp-hero h1       { font-size: clamp(1.4rem, 6vw, 1.8rem); margin-bottom: 10px; }
  .lp-hero .hero__area-badge { margin-bottom: 10px; }
  .lp-hero__inner   { gap: 16px; }
  /* Constrain photo height on mobile so it doesn't eat the screen */
  .lp-hero__photo img {
    max-height: 220px;
    object-fit: cover;
    object-position: center;
  }
}

/* Shared section wrapper */
.lp-section { padding: 48px 0; }
.lp-section--alt { background: var(--off-white); }
@media (min-width: 768px) { .lp-section { padding: 64px 0; } }
@media (min-width: 1024px) { .lp-section { padding: 80px 0; } }

/* Two-column intro */
.lp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .lp-intro { grid-template-columns: 1fr; gap: 40px; }
}
.lp-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.lp-intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-mid);
}

/* Trust card stack */
.lp-intro__trust { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-card__icon {
  color: var(--green);
  margin-bottom: 4px;
}
.trust-card strong {
  font-size: 0.9375rem;
  color: var(--charcoal);
  font-weight: 700;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.5;
}

/* Neighborhood tags */
.neighborhood-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.neighborhood-tags strong {
  font-size: 0.875rem;
  color: var(--charcoal);
  width: 100%;
  margin-bottom: 4px;
}
.tag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.8125rem;
  color: var(--charcoal);
}

/* Two-column general layout */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .lp-two-col { grid-template-columns: 1fr; gap: 40px; }
}
.lp-two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.lp-two-col p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--gray-mid);
}
.lp-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.lp-col p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--gray-mid);
}
.lp-local-knowledge h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.lp-local-knowledge p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-mid);
}

/* Section headings (shared) */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--gray-mid);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

/* Service grid compact (location page) */
.service-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.service-card--compact {
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card--compact:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--blue);
}
.service-card--compact .service-card__icon {
  color: var(--green);
  flex-shrink: 0;
}

/* FAQ (details/summary) */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
details.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
details.faq-item:first-of-type {
  border-top: 1px solid var(--gray-light);
}
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
details.faq-item[open] > summary::after { content: '−'; }
.faq-a {
  padding: 0 4px 20px;
  color: var(--gray-mid);
  line-height: 1.75;
  font-size: 1rem;
}
.faq-a p { margin: 0; }

/* ============================================================
   SERVICE PAGE SPECIFIC
   ============================================================ */
.sp-intro {
  max-width: 820px;
}
.sp-intro--with-image {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .sp-intro--with-image { grid-template-columns: 1fr; gap: 24px; }
}
.sp-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-mid);
}
.sp-hero-image,
.lp-location-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sp-hero-image img,
.lp-location-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Service photo gallery */
.sp-gallery-section { background: var(--off-white); }
.sp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .sp-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sp-gallery { grid-template-columns: 1fr; }
}
.sp-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.sp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.sp-gallery__item:hover img { transform: scale(1.03); }

/* About page photo grid */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .about-photo-grid { grid-template-columns: 1fr 1fr; }
}
.about-photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.about-photo-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.about-photo-grid figure:hover img { transform: scale(1.03); }
.about-photo-grid figure.portrait { aspect-ratio: 3/4; }

/* What we take */
.what-we-take h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px 32px;
  margin-bottom: 24px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.checklist-item svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.wont-take-block {
  background: #fef9f0;
  border: 1px solid #f0e4c8;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: #7c6442;
  margin-top: 20px;
  line-height: 1.6;
}
.wont-take-block strong { color: #5c4a2a; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin: 0;
}

/* Coverage grid (service page → location links) */
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.coverage-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.coverage-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.coverage-link svg { flex-shrink: 0; }

/* ============================================================
   CERTIFICATE OF INSURANCE PAGE
   ============================================================ */

/* Hero */
.coi-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 40px 0 36px;
  text-align: center;
}
@media (min-width: 768px) {
  .coi-hero { padding: 64px 0 56px; }
}
.coi-hero__inner { max-width: 760px; margin: 0 auto; }
.coi-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126,194,66,0.18);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.coi-hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.coi-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
}
.coi-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* 3-card why grid */
.coi-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .coi-why__grid { grid-template-columns: repeat(3, 1fr); }
}
.coi-why__card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.coi-why__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.coi-why__icon svg { color: var(--white); }
.coi-why__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.coi-why__card p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* Detail 2-col section */
.coi-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .coi-detail__inner { grid-template-columns: 1fr 1fr; }
}
.coi-detail__text h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: var(--charcoal);
}
.coi-detail__text p {
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}
.coi-detail__text p strong { color: var(--charcoal); }
.coi-detail__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Stats panel */
.coi-detail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.coi-stat {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.coi-stat__num {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.coi-stat__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* PDF embed */
.coi-pdf { text-align: center; }
.coi-pdf__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}
.coi-pdf__sub {
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.coi-pdf__sub a { color: var(--blue); text-decoration: underline; }
.coi-pdf__embed iframe {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  height: 480px;
}
@media (min-width: 768px) {
  .coi-pdf__embed iframe { height: 700px; }
}
@media (min-width: 900px) {
  .coi-pdf__embed iframe { height: 900px; }
}
.coi-pdf__fallback {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--gray-mid);
}
.coi-pdf__fallback a { color: var(--blue); }

/* Bottom CTA */
.coi-cta { background: var(--charcoal); color: var(--white); text-align: center; }
.coi-cta__inner { max-width: 680px; margin: 0 auto; }
.coi-cta h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 14px;
}
.coi-cta p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.coi-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* btn--green (for COI verify) */
.btn--green {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--green:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Top-bar insurance link */
.top-bar__insurance a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.top-bar__insurance a:hover {
  text-decoration: underline;
}

/* ============================================================
   ABOUT PAGE — content body styles
   ============================================================ */
.about-content {
  max-width: 780px;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--charcoal);
  margin-top: 52px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #3a4656;
}
.about-content ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.about-content ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #3a4656;
}
.about-content a {
  color: var(--blue);
  text-decoration: underline;
}

/* Featured truck photo — full-width banner below intro */
.about-feature-img {
  margin: 32px 0 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-feature-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Family section — text left, portrait right */
.about-family-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .about-family-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about-family-text p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #3a4656;
}
.about-family-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-family-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   HUB LOCATION CARDS (/junk-removal/)
   ============================================================ */
.hub-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}
.hub-location-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hub-location-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,92,175,0.10);
  transform: translateY(-2px);
  color: var(--blue);
}
.hub-location-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.hub-location-card:hover .hub-location-card__icon {
  background: rgba(26,92,175,0.08);
}
.hub-location-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hub-location-card__body strong {
  font-size: 1rem;
  font-weight: 600;
}
.hub-location-card__body span {
  font-size: 0.8rem;
  color: #6b7280;
}
.hub-location-card:hover .hub-location-card__body span {
  color: var(--blue);
  opacity: 0.7;
}
.hub-location-card__arrow {
  flex-shrink: 0;
  color: #9ca3af;
}
.hub-location-card:hover .hub-location-card__arrow {
  color: var(--blue);
}
@media (max-width: 600px) {
  .hub-location-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE AREA HUB (/service-area/)
   ============================================================ */
.sa-county-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sa-county-group {}
.sa-county-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
}
