/* ============================================================================
   BamaClean — Shared Stylesheet
   ============================================================================
   Used by: index.html, Carpet-Cleaning.html, all city carpet pages,
            and (eventually) every other service/city page.

   Sections:
     1. RESET & VARIABLES         (used by every page)
     2. UTILITY BAR               (used by every page)
     3. HEADER / NAV              (used by every page)
     4. BREADCRUMBS               (used by every page)
     5. HERO                      (used by every page — banner + content card)
     6. BUTTONS                   (used by every page)
     7. SECTION HELPERS           (used by every page — kicker/h2/inner)
     8. SERVICES GRID             (INDEX-PAGE ONLY — kept here for shared use)
     9. TRUST / WHY BAMACLEAN     (used by every page)
    10. CERTIFICATION BADGES      (used by every page)
    11. BEFORE & AFTER CAROUSEL   (INDEX-PAGE ONLY)
    12. VIDEO / WHY CHOOSE        (INDEX-PAGE ONLY)
    13. CTA BANNER                (used by every page)
    14. TESTIMONIALS              (used by every page)
    15. FAQ ACCORDION             (used by every page)
    16. AREAS SERVED              (used by every page)
    17. SEO CONTENT BLOCK         (used by every page)
    18. FOOTER                    (used by every page)
    19. STICKY MOBILE CTA         (used by every page)
    20. RESPONSIVE                (used by every page)
    21. ANIMATIONS                (used by every page)
    22. CARPET-PAGE SECTIONS      (NEW — process steps, small-details,
                                   proof stats, myths, offer callout)

   When making site-wide visual changes (e.g. brand color tweak), edit the
   CSS variables in section 1 only. Everything else cascades.
   ============================================================================ */


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

:root {
  --bc-green: #1B7A3D;
  --bc-green-dark: #145C2E;
  --bc-green-light: #E8F5EC;
  --bc-green-glow: #22C55E;
  --bc-navy: #0F1B2D;
  --bc-navy-light: #1A2A42;
  --bc-gold: #F59E0B;
  --bc-gold-light: #FEF3C7;
  --bc-white: #FFFFFF;
  --bc-off-white: #F8FAFB;
  --bc-gray-50: #F1F5F9;
  --bc-gray-100: #E2E8F0;
  --bc-gray-200: #CBD5E1;
  --bc-gray-400: #94A3B8;
  --bc-gray-600: #475569;
  --bc-gray-700: #334155;
  --bc-gray-800: #1E293B;
  --bc-red: #DC2626;
  --bc-red-light: #FEF2F2;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--bc-gray-800);
  background: var(--bc-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
p { font-size: 1rem; }

/* === Accessibility utilities === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--bc-green);
  color: var(--bc-white);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--bc-gold);
  outline-offset: 2px;
}

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

/* Visible focus ring for keyboard users — important for ADA */
*:focus-visible {
  outline: 3px solid var(--bc-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respect prefers-reduced-motion — turn off non-essential animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .pulse-dot { animation: none !important; }
}


/* ============================================================================
   2. UTILITY BAR (TOP)
   ============================================================================ */
.utility-bar {
  background: var(--bc-navy);
  color: var(--bc-white);
  font-size: 1rem;
  padding: 24px 0;
  position: relative;
  z-index: 100;
}
.utility-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.utility-bar__left span {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.utility-bar__left span strong {
  color: var(--bc-green-glow);
}
.utility-bar__phone-label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}
.utility-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.2);
}
.utility-bar__phone {
  font-family: var(--font-heading);
  font-size: 1.50rem;
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.utility-bar__phone:hover { color: var(--bc-green-glow); }
.utility-bar__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.utility-bar__btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 26px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.utility-bar__btn--solid {
  background: var(--bc-green);
  color: var(--bc-white);
  border-color: var(--bc-green);
}
.utility-bar__btn--solid:hover {
  background: var(--bc-green-dark);
  border-color: var(--bc-green-dark);
}
.utility-bar__btn--outline {
  background: transparent;
  color: var(--bc-white);
  border-color: rgba(255,255,255,.45);
}
.utility-bar__btn--outline:hover {
  border-color: var(--bc-white);
  background: rgba(255,255,255,.08);
}


/* ============================================================================
   3. HEADER / NAV
   ============================================================================ */
.site-header {
  background: var(--bc-white);
  border-bottom: 1px solid var(--bc-gray-100);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
.site-header__logo img { height: 80px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: 4px; }
.site-header__nav a {
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  color: var(--bc-gray-700);
}
.site-header__nav a:hover { background: var(--bc-gray-50); color: var(--bc-green); }
.site-header__nav .nav-cta {
  background: var(--bc-green);
  color: var(--bc-white) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  margin-left: 8px;
  font-size: 1rem;
}
.site-header__nav .nav-cta:hover { background: var(--bc-green-dark); }

/* Services mega dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--bc-gray-700);
  transition: background .2s, color .2s;
  cursor: pointer;
  text-decoration: none;
}
.nav-dropdown__trigger:hover,
.nav-dropdown:hover .nav-dropdown__trigger { background: var(--bc-gray-50); color: var(--bc-green); }
.nav-dropdown__trigger svg { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-100);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  padding: 24px 20px;
  gap: 32px;
  min-width: 620px;
  z-index: 500;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown__menu { display: grid; }
.nav-dropdown__heading {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bc-gray-400);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bc-gray-100);
}
.nav-dropdown__col a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bc-gray-700);
  padding: 5px 0;
  text-decoration: none;
  transition: color .15s;
  background: none;
  border-radius: 0;
}
.nav-dropdown__col a:hover { color: var(--bc-green); background: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bc-gray-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}


/* ============================================================================
   4. BREADCRUMBS
   ============================================================================ */
.breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: .8125rem;
  color: var(--bc-gray-400);
}
.breadcrumbs a { color: var(--bc-gray-600); }
.breadcrumbs a:hover { color: var(--bc-green); text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }


/* ============================================================================
   5. HERO (banner + content grid)
   ============================================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--bc-navy);
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,45,.15) 0%, rgba(15,27,45,.5) 100%);
  pointer-events: none;
}

/* Hero content below the banner */
.hero-content {
  background: var(--bc-white);
  padding: 0 0 48px;
}
.hero-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding-top: 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 12px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hero-content__serving {
  font-size: 1rem;
  color: var(--bc-gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}
.hero-content__serving strong { color: var(--bc-navy); }
.hero-content__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-content__urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--bc-green);
  font-weight: 600;
}
.hero-content__urgency .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-green-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero right-side info card */
.hero-info {
  background: var(--bc-gray-50);
  border: 1px solid var(--bc-gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
}
.hero-info__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-info__phone .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-info__phone a {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bc-navy);
}
.hero-info__phone a:hover { color: var(--bc-green); }
.hero-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--bc-gray-100);
  border-bottom: 1px solid var(--bc-gray-100);
  margin-bottom: 16px;
}
.hero-info__rating .rating-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bc-gold);
}
.hero-info__rating .stars { display: flex; gap: 1px; }
.hero-info__rating .stars svg { width: 18px; height: 18px; color: var(--bc-gold); }
.hero-info__rating .review-count {
  font-size: .8125rem;
  color: var(--bc-gray-400);
}
.hero-info__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--bc-gray-600);
  margin-bottom: 16px;
}
.hero-info__hours .open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-green-glow);
  flex-shrink: 0;
}


/* ============================================================================
   6. BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.btn--primary {
  background: var(--bc-green);
  color: var(--bc-white);
  box-shadow: 0 4px 20px rgba(27,122,61,.35);
}
.btn--primary:hover {
  background: var(--bc-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(27,122,61,.45);
}
.btn--outline {
  background: transparent;
  color: var(--bc-white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn--outline:hover {
  border-color: var(--bc-white);
  background: rgba(255,255,255,.08);
}
.btn--gold {
  background: var(--bc-gold);
  color: var(--bc-navy);
  box-shadow: 0 4px 20px rgba(245,158,11,.3);
}
.btn--gold:hover {
  background: #D97706;
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--bc-navy);
  color: var(--bc-white);
}
.btn--dark:hover { background: var(--bc-navy-light); }
.btn--sm { padding: 10px 20px; font-size: .8125rem; }
.btn--block { width: 100%; }


/* ============================================================================
   7. SECTION HELPERS (kicker + h2 + inner wrapper)
   ============================================================================ */
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .section-inner { padding: 0 20px; } }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .kicker {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bc-green);
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================================================
   8. SERVICES GRID  (INDEX-PAGE — used by homepage service tiles)
   ============================================================================ */
.services-section {
  padding: 80px 0;
  background: var(--bc-off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bc-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--bc-gray-100);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bc-green);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover {
  border-color: var(--bc-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bc-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .3s;
}
.service-card:hover .service-card__icon {
  background: var(--bc-green);
}
.service-card:hover .service-card__icon svg { color: var(--bc-white); }
.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--bc-green);
  transition: color .3s;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  margin-bottom: 14px;
  line-height: 1.6;
}
.service-card .card-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card:hover .card-link { gap: 8px; }


/* ============================================================================
   9. TRUST / WHY BAMACLEAN
   ============================================================================ */
.trust-section {
  padding: 80px 0;
  background: var(--bc-white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.trust-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--bc-gray-50);
  border: 1px solid var(--bc-gray-100);
  transition: all .3s;
}
.trust-card:hover { background: var(--bc-green-light); border-color: rgba(27,122,61,.2); }
.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.trust-card__icon svg { width: 24px; height: 24px; color: var(--bc-green); }

/* Trust card with logo image instead of SVG icon (BBB, IICRC, etc.) */
.trust-card__logo {
  width: 96px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-white);
  border-radius: 8px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.trust-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.trust-card__stat {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bc-green);
  margin-bottom: 4px;
}
.trust-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  line-height: 1.55;
}


/* ============================================================================
   10. CERTIFICATION BADGES
   ============================================================================ */
.cert-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  justify-content: center;
  padding: 40px 0 8px;
  border-top: 1px solid var(--bc-gray-100);
}
.cert-badge-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cert-badge-wrap:hover {
  border-color: var(--bc-green);
  box-shadow: 0 4px 14px rgba(27,122,61,.13);
  transform: translateY(-2px);
}
.cert-badge-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cert-badge-wrap--round {
  padding: 0;
  overflow: hidden;
}
.cert-badge-wrap--round img {
  transform: scale(1.20);
  width: 90%;
  height: 90%;
  object-fit: contain;
}


/* ============================================================================
   11. BEFORE & AFTER CAROUSEL  (INDEX-PAGE ONLY)
   ============================================================================ */
.ba-section {
  padding: 80px 0;
  background: var(--bc-white);
}
.ba-carousel {
  position: relative;
  overflow: hidden;
}
.ba-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.ba-slide {
  min-width: calc(33.333% - 16px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bc-gray-100);
  flex-shrink: 0;
}
.ba-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ba-slide__label {
  text-align: center;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-gray-600);
  background: var(--bc-gray-50);
}
.ba-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.ba-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bc-gray-200);
  background: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.ba-btn:hover { border-color: var(--bc-green); background: var(--bc-green-light); }
.ba-btn svg { width: 20px; height: 20px; color: var(--bc-gray-600); }
.ba-btn:hover svg { color: var(--bc-green); }
.ba-dots {
  display: flex;
  gap: 8px;
}
.ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bc-gray-200);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.ba-dot.active { background: var(--bc-gold); }


/* ============================================================================
   12. VIDEO / WHY CHOOSE  (INDEX-PAGE ONLY)
   ============================================================================ */
.video-section {
  padding: 80px 0;
  background: var(--bc-off-white);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--bc-navy);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrap__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bc-navy);
}
.video-wrap__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: opacity .3s;
}
.video-wrap__placeholder:hover img { opacity: .5; }
.video-play-btn {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: transform .3s, background .3s;
}
.video-wrap__placeholder:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--bc-green-dark);
}
.video-play-btn svg { width: 28px; height: 28px; color: var(--bc-white); margin-left: 3px; }
.video-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bc-navy);
  margin-bottom: 16px;
}
.video-content p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}
.video-features {
  margin-top: 20px;
}
.video-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.video-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.video-feature__icon svg { width: 18px; height: 18px; color: var(--bc-green); }
.video-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 2px;
}
.video-feature p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  margin-bottom: 0;
}


/* ============================================================================
   13. CTA BANNER (mid-page)
   ============================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--bc-green) 0%, var(--bc-green-dark) 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z' fill='%23ffffff' fill-opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--bc-white);
  margin-bottom: 8px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  position: relative;
}
.cta-banner .btn { position: relative; }
.cta-banner .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


/* ============================================================================
   14. TESTIMONIALS
   ============================================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bc-off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bc-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--bc-gray-100);
  position: relative;
}
.testimonial-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testimonial-card .stars svg { width: 18px; height: 18px; color: var(--bc-gold); }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--bc-gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-navy);
}
.testimonial-card .author span {
  font-weight: 400;
  color: var(--bc-gray-400);
}


/* ============================================================================
   15. FAQ ACCORDION
   ============================================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bc-gray-50);
}
.faq-two-col {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 56px;
  align-items: start;
}
.faq-list { }
.faq-photo {
  position: sticky;
  top: 130px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  max-height: 520px;
}
.faq-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 960px) {
  .faq-two-col { grid-template-columns: 1fr; gap: 36px; }
  .faq-photo { position: static; max-width: 420px; margin: 0 auto; }
  .faq-photo img { height: 380px; }
}
.faq-item {
  background: var(--bc-white);
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.faq-item:first-child { border-top: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-navy);
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: color .2s, background .2s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--bc-green); background: var(--bc-green-light); }
.faq-item.open .faq-q { color: var(--bc-green); background: var(--bc-green-light); }
.faq-q::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--bc-green);
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--bc-green-dark);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  line-height: 1.7;
  padding: 0 20px;
}


/* ============================================================================
   16. AREAS SERVED
   ============================================================================ */
.areas-section {
  padding: 60px 0;
  background: var(--bc-gray-50);
}
.areas-section h2 { margin-bottom: 8px; }
.areas-section .section-header p { margin-bottom: 0; }
.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.area-tag {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bc-gray-700);
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-100);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .2s;
}
.area-tag:hover { border-color: var(--bc-green); color: var(--bc-green); background: var(--bc-green-light); }


/* ============================================================================
   17. SEO CONTENT BLOCK
   ============================================================================ */
.seo-section {
  padding: 60px 0;
  background: var(--bc-white);
}
.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.seo-columns h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bc-navy);
  margin-bottom: 16px;
}
.seo-columns p {
  font-size: 1rem;
  color: var(--bc-gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.seo-columns h3 {
  font-size: 1.125rem;
  color: var(--bc-navy);
  margin: 24px 0 10px;
}


/* ============================================================================
   18. FOOTER
   ============================================================================ */
.site-footer {
  background: var(--bc-navy);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--bc-white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-grid p { font-size: .875rem; line-height: 1.7; }
.footer-grid a {
  display: block;
  font-size: .875rem;
  padding: 3px 0;
  transition: color .2s;
}
.footer-grid a:hover { color: var(--bc-green-glow); }
.footer-grid .footer-phone {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-green-glow);
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8125rem;
}
.footer-bottom a { margin-left: 16px; }
.footer-bottom a:hover { color: var(--bc-green-glow); }


/* ============================================================================
   19. STICKY MOBILE CTA
   ============================================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bc-white);
  border-top: 1px solid var(--bc-gray-100);
  padding: 12px 16px;
  z-index: 80;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-sticky-cta__inner {
  display: flex;
  gap: 10px;
}
.mobile-sticky-cta .btn { flex: 1; font-size: .8125rem; padding: 12px 16px; }


/* ============================================================================
   20. RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .hero-content__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-info { max-width: 420px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-columns { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; gap: 32px; }
  .ba-slide { min-width: calc(50% - 12px); }
}
@media (max-width: 768px) {
  .utility-bar__inner { justify-content: center; text-align: center; }
  .site-header__nav { display: none; }
  .mobile-toggle { display: block; }
  .site-header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bc-white);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--bc-gray-100);
  }
  .hero-banner { height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-card__icon { width: 48px; height: 48px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 24px 16px; }
  .trust-card__stat { font-size: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .cert-row { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cert-badge-wrap { width: 100%; height: auto; aspect-ratio: 1; }
  .ba-slide { min-width: calc(100% - 0px); }
  .ba-slide img { height: 180px; }

  /* === MOBILE UTILITY BAR — compact === */
  .utility-bar { padding: 12px 0; }
  .utility-bar__inner { gap: 6px; padding: 0 16px; }
  .utility-bar__location { display: flex; align-items: center; gap: 6px; }
  .utility-bar__location svg { width: 16px; height: 16px; flex-shrink: 0; }
  .utility-bar__location span {
    font-size: .9375rem !important;
    font-weight: 600 !important;
    line-height: 1.3;
  }
  .utility-bar__location span strong { font-size: inherit !important; }
  .utility-bar__phone {
    font-size: 1.125rem !important;
    gap: 6px;
  }
  .utility-bar__phone svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* === MOBILE HEADER — compact logo, tighter padding === */
  .site-header__inner {
    padding: 0 16px;
    height: 64px;
  }
  .site-header__logo img { height: 44px; }
  .mobile-toggle { padding: 6px; }

  /* === MOBILE NAV DROPDOWN — collapse mega-grid to single column === */
  .nav-dropdown { width: 100%; }
  .nav-dropdown__trigger {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: center;
  }
  .nav-dropdown__menu {
    position: static;
    transform: none;
    display: block !important;
    grid-template-columns: 1fr !important;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 8px 0 4px;
    gap: 0;
    white-space: normal;
  }
  /* Mega-dropdown only opens when its parent .nav-dropdown gets .open class on tap */
  .nav-dropdown__menu { display: none !important; }
  .nav-dropdown.open > .nav-dropdown__menu { display: block !important; }
  .nav-dropdown:hover .nav-dropdown__menu { display: none !important; }
  .nav-dropdown.open:hover .nav-dropdown__menu { display: block !important; }
  .nav-dropdown__col { padding: 8px 0; border-bottom: 1px solid var(--bc-gray-100); }
  .nav-dropdown__col:last-child { border-bottom: none; }
  .nav-dropdown__heading {
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: none;
    font-size: .6875rem;
  }
  .nav-dropdown__col a {
    padding: 8px 14px;
    font-size: .9375rem;
    border-radius: 6px;
  }
  .nav-dropdown__col a:hover { background: var(--bc-gray-50); }

  /* Mobile main nav anchors get a bit more breathing room */
  .site-header__nav.open a:not(.nav-dropdown__col a):not(.nav-cta) {
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .site-header__nav.open .nav-cta {
    margin-top: 8px;
    margin-left: 0;
    text-align: center;
    padding: 14px 22px;
  }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-content__ctas { flex-direction: column; }
  .hero-content__ctas .btn { width: 100%; }
  .hero-banner { height: 260px; }
  .cert-row { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================================
   21. ANIMATIONS
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }


/* ============================================================================
   22. CARPET-PAGE SECTIONS
   ============================================================================
   New sections specific to Carpet-Cleaning.html and city carpet pages:
     - Process steps (4-step "How It Works" + protector add-on)
     - Small details ("we care" section — corner guards, etc.)
     - Proof stats (3 big numbers)
     - Service variants cards (HWE / Pet / Commercial / Protection)
     - Carpet myths accordion (Shaw content, restyled)
     - Single-line satisfaction guarantee
     - Quiet $25-off offer callout
     - City link cards
   ============================================================================ */

/* --- Process steps --- */
.process-section {
  padding: 80px 0;
  background: var(--bc-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 28px 20px;
  background: var(--bc-gray-50);
  border: 1px solid var(--bc-gray-100);
  border-radius: var(--radius-md);
  transition: all .3s;
}
.process-step:hover {
  border-color: var(--bc-green);
  background: var(--bc-green-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-green);
  color: var(--bc-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27,122,61,.35);
}
.process-step__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 16px;
}
.process-step__icon svg { width: 26px; height: 26px; color: var(--bc-green); }
.process-step h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .9375rem;
  color: var(--bc-gray-600);
  line-height: 1.55;
}
.process-note {
  text-align: center;
  font-size: .9375rem;
  color: var(--bc-gray-600);
  font-style: italic;
  margin-top: 8px;
}
.process-note strong { color: var(--bc-navy); font-style: normal; }

/* --- Small details ("we care") section --- */
.details-section {
  padding: 80px 0;
  background: var(--bc-off-white);
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.details-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bc-gray-100);
}
.details-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.details-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--bc-navy);
  margin-bottom: 16px;
}
.details-content > p {
  font-size: 1.0625rem;
  color: var(--bc-gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.details-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bc-gray-100);
  font-size: 1rem;
  color: var(--bc-gray-700);
  line-height: 1.55;
}
.details-list li:last-child { border-bottom: none; }
.details-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--bc-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.details-list strong { color: var(--bc-navy); display: block; margin-bottom: 2px; }

/* --- Proof stats (3 big numbers) --- */
.stats-section {
  padding: 64px 0;
  background: var(--bc-navy);
  color: var(--bc-white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-block .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bc-green-glow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-block .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* --- Service variants cards (carpet-page specific, simpler than index) --- */
.variants-section {
  padding: 80px 0;
  background: var(--bc-white);
}
.variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.variant-card {
  background: var(--bc-gray-50);
  border: 1px solid var(--bc-gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .3s;
}
.variant-card:hover {
  background: var(--bc-white);
  border-color: var(--bc-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.variant-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bc-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.variant-card__icon svg { width: 22px; height: 22px; color: var(--bc-green); }
.variant-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 8px;
}
.variant-card p {
  font-size: .9375rem;
  color: var(--bc-gray-600);
  line-height: 1.6;
}

/* --- Carpet myths accordion (uses .faq-item styles + this for grouping) --- */
.myths-section {
  padding: 80px 0;
  background: var(--bc-gray-50);
}
.myths-section .faq-item .faq-a p {
  /* Multi-paragraph myth content needs more breathing room */
  margin-bottom: 12px;
}
.myths-section .faq-item.open .faq-a {
  max-height: 1200px; /* myths have longer answers than standard FAQ */
}
.myth-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bc-red);
  margin-right: 8px;
}
.myth-fact {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bc-green);
  margin-right: 8px;
}

/* --- Single-line satisfaction guarantee --- */
.guarantee-strip {
  background: var(--bc-green-light);
  border-top: 1px solid rgba(27,122,61,.15);
  border-bottom: 1px solid rgba(27,122,61,.15);
  padding: 24px 0;
  text-align: center;
}
.guarantee-strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.0625rem;
  color: var(--bc-navy);
}
.guarantee-strip__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-strip__icon svg { width: 18px; height: 18px; color: var(--bc-white); }
.guarantee-strip strong { color: var(--bc-navy); font-weight: 700; }

/* --- Quiet $25 off offer callout --- */
.offer-callout {
  margin: 0 auto;
  max-width: 720px;
  background: var(--bc-white);
  border: 2px solid var(--bc-green);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(27,122,61,.12);
}
.offer-callout__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bc-green);
  line-height: 1;
  flex-shrink: 0;
}
.offer-callout__body {
  flex: 1;
}
.offer-callout__body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 4px;
}
.offer-callout__body span {
  font-size: .9375rem;
  color: var(--bc-gray-600);
  line-height: 1.5;
}
.offer-callout__code {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--bc-green-light);
  color: var(--bc-green-dark);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* --- City link cards --- */
.cities-section {
  padding: 80px 0;
  background: var(--bc-white);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.city-card {
  display: block;
  background: var(--bc-gray-50);
  border: 1px solid var(--bc-gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
}
.city-card:hover {
  background: var(--bc-white);
  border-color: var(--bc-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.city-card__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bc-green-light);
  margin-bottom: 12px;
}
.city-card__pin svg { width: 16px; height: 16px; color: var(--bc-green); }
.city-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 8px;
}
.city-card p {
  font-size: .9375rem;
  color: var(--bc-gray-600);
  line-height: 1.55;
  margin-bottom: 12px;
}
.city-card__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--bc-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.city-card:hover .city-card__link { gap: 8px; }

/* --- Carpet-page responsive overrides --- */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .details-grid { grid-template-columns: 1fr; gap: 32px; }
  .details-photo { max-width: 480px; margin: 0 auto; }
  .stats-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer-callout { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
  .offer-callout__amount { font-size: 2.25rem; }
  .variants-grid { grid-template-columns: 1fr; }
}
