/* ============================================================
   Best Carpet Cleaning Services — Shared Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --blue:        #1e3a8a;
  --blue-mid:    #2348b0;
  --blue-dark:   #0f1f4d;
  --blue-footer: #0a1628;
  --yellow:      #f0b429;
  --yellow-dk:   #d99e0f;
  --yellow-lt:   #fef3c7;
  --white:       #ffffff;
  --off-white:   #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --font:        'Poppins', system-ui, sans-serif;
  --max-w:       1200px;
  --r-sm:        6px;
  --r:           10px;
  --r-lg:        16px;
  --r-pill:      9999px;
  --sh:          0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --sh-md:       0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.06);
  --sh-lg:       0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.05);
  --tr:          200ms ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: .625rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: .875rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 580px;
  text-wrap: pretty;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  transition: all var(--tr);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-yellow  { background: var(--yellow);  color: var(--gray-900); border-color: var(--yellow); }
.btn-yellow:hover  { background: var(--yellow-dk); border-color: var(--yellow-dk); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-white-outline:hover { background: #fff; color: var(--blue); }
.btn-dark-outline  { background: transparent; color: var(--gray-900); border-color: var(--gray-900); }
.btn-dark-outline:hover  { background: var(--gray-900); color: #fff; }
.btn-blue  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover  { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-1px); }
.btn-full  { width: 100%; justify-content: center; }
.btn-lg    { padding: .875rem 2rem; font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow .3s;
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .5rem 0;
}
.site-logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo-badge { width: auto; height: 54px; flex-shrink: 0; }
.logo-text-wrap { line-height: 1.2; }
.logo-name { display: block; font-size: .875rem; font-weight: 700; color: var(--gray-900); }
.logo-tagline { display: block; font-size: .6rem; font-weight: 700; color: var(--yellow); letter-spacing: .07em; text-transform: uppercase; }

.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: .125rem; }
.nav-list > li { position: relative; }
.nav-list a {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .75rem;
  font-size: .875rem; font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}
.nav-list a:hover, .nav-list li.active > a { color: var(--blue); background: var(--gray-100); }
.nav-list li.active > a { font-weight: 600; }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--tr), transform var(--tr);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { padding: .5rem .75rem; font-size: .875rem; border-radius: var(--r-sm); display: block; }
.chev { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Header right */
.header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.hdr-phone {
  display: flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--gray-900);
  transition: color var(--tr);
}
.hdr-phone:hover { color: var(--blue); }
.hdr-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px; flex-shrink: 0;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }
.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Hero (interior pages) ─────────────────────────────── */
.page-hero {
  background: var(--blue);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-top: .875rem; max-width: 600px; }

/* ── Home Hero ───────────────────────────────────────────────── */
.home-hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 540px;
  align-items: stretch;
}
.home-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  position: relative; z-index: 1;
}
.home-hero-text h1 { color: #fff; margin-bottom: .875rem; }
.home-hero-text h1 span { color: var(--yellow); }
.home-hero-text p { color: rgba(255,255,255,.82); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.8); font-weight: 500; }
.hero-trust-icon { font-size: 1rem; }
.home-hero-img { position: relative; overflow: hidden; }
.home-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--blue) 0%, transparent 25%);
}

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.stats-bar-grid {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  justify-content: space-around;
}
.stats-bar-item { display: flex; align-items: center; gap: .75rem; padding: .5rem 1.5rem; }
.stats-bar-val { font-size: 1.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stats-bar-label { font-size: .8125rem; color: var(--gray-500); font-weight: 500; }
.stats-bar-stars { color: var(--yellow); font-size: 1rem; }
.stats-bar-divider { width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0; }

/* ── Before/After Section ───────────────────────────────────── */
.ba-section { background: #1a1f2e; padding: 80px 0; }
.ba-section .eyebrow { color: var(--yellow); }
.ba-section h2 { color: #fff; }
.ba-section .section-sub { color: rgba(255,255,255,.65); }
.ba-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ba-card { position: relative; border-radius: var(--r); overflow: hidden; }
.ba-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.ba-label {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--yellow); color: var(--gray-900);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .6rem; border-radius: var(--r-pill);
}
.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff; font-size: .8125rem; font-weight: 500;
}

/* ── Content Split (text + image) ────────────────────────────── */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-split.flip > :first-child { order: 2; }
.content-split.flip > :last-child  { order: 1; }
.split-image { border-radius: var(--r-lg); overflow: hidden; }
.split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.split-text h2 { color: var(--blue); }
.split-text p  { color: var(--gray-500); font-size: .9375rem; margin-bottom: 1.5rem; }
.check-list { margin: 1.25rem 0 2rem; display: flex; flex-direction: column; gap: .5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: .625rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: .9375rem; color: var(--gray-700);
}
.check-list li:last-child { border: none; }
.check-bullet {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: .75rem; font-weight: 700;
}
.split-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.sc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 1.25rem 1.375rem; }
.sc-body h3 { color: var(--blue); margin-bottom: .5rem; }
.sc-body p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }
.learn-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--blue);
  transition: gap var(--tr);
}
.learn-link:hover { gap: .625rem; }
.arrow-icon { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Process Steps ───────────────────────────────────────────── */
.steps-section { background: var(--off-white); }
.steps-header { text-align: center; margin-bottom: 3.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(16.66% + 44px); right: calc(16.66% + 44px);
  height: 2px; background: var(--gray-200);
  pointer-events: none;
}
.step-card { text-align: center; padding: 0 1.5rem; }
.step-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(240,180,41,.4);
}
.step-num svg { width: 36px; height: 36px; }
.step-card h3 { margin-bottom: .5rem; }
.step-card p  { font-size: .9375rem; color: var(--gray-500); }

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section { background: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-val { font-size: 2.875rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: .375rem; }
.stat-label { font-size: .875rem; color: var(--gray-500); font-weight: 500; }

/* ── Team / Local Section ────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.team-img-col { position: relative; }
.team-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.team-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.team-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: #fff; border-radius: var(--r); padding: .875rem 1.125rem;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: .75rem;
}
.team-badge-icon { width: 40px; height: 40px; }
.team-badge-text { line-height: 1.3; }
.team-badge-num  { font-size: 1.25rem; font-weight: 800; color: var(--blue); }
.team-badge-lbl  { font-size: .75rem; color: var(--gray-500); }
.team-text h2 { color: var(--blue); }
.team-text p  { color: var(--gray-500); font-size: .9375rem; margin-bottom: 1.75rem; }
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.team-stat {
  text-align: center; padding: 1.25rem; background: var(--off-white);
  border: 1px solid var(--gray-200); border-radius: var(--r);
}
.team-stat-val { font-size: 1.875rem; font-weight: 800; color: var(--blue); line-height: 1; }
.team-stat-lbl { font-size: .8125rem; color: var(--gray-500); margin-top: .25rem; }

/* ── Service Area Map ────────────────────────────────────────── */
.area-map-section { background: var(--off-white); }
.area-map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); margin-bottom: 2.5rem; }
.area-map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }
.area-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.area-chip {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.area-chip:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,58,138,.1); }
.area-pin { color: var(--blue); flex-shrink: 0; }
.area-pin svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.area-info span { display: block; }
.area-name { font-size: .875rem; font-weight: 600; color: var(--gray-900); }
.area-sub  { font-size: .75rem; color: var(--gray-500); }

/* ── Benefits ────────────────────────────────────────────────── */
.benefits-section { background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--r);
  transition: box-shadow var(--tr), transform var(--tr);
}
.benefit-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.benefit-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--yellow-lt); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.125rem; font-size: 1.5rem;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.benefit-card p  { font-size: .875rem; color: var(--gray-500); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--off-white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 3rem; }
.faq-list { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .9375rem; font-weight: 600; color: var(--gray-900);
  text-align: left; cursor: pointer;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow); color: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.25rem; line-height: 1;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 1.5rem;
  font-size: .9375rem; color: var(--gray-500); line-height: 1.75;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--blue);
  padding: 80px 0; text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); }
.cta-band p  { color: rgba(255,255,255,.75); margin: 1rem auto 2.25rem; max-width: 520px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 1.5rem; display: flex; flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.review-stars { color: var(--yellow); font-size: 1rem; margin-bottom: .875rem; }
.review-text { font-size: .9375rem; color: var(--gray-700); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.reviewer-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-100); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: .9375rem; font-weight: 700; color: var(--blue);
}
.reviewer-av img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-size: .9375rem; font-weight: 600; color: var(--blue); }
.reviewer-loc  { font-size: .8125rem; color: var(--gray-500); }
.google-hero-badge {
  background: #fff; border-radius: var(--r-pill);
  padding: .5rem 1.25rem;
  display: inline-flex; align-items: center; gap: .375rem;
  box-shadow: var(--sh-md); margin-bottom: 1.5rem;
}
.g-b { color: #4285F4; font-size: 1.375rem; font-weight: 700; font-family: var(--font); }
.g-r { color: #EA4335; font-size: 1.375rem; font-weight: 700; font-family: var(--font); }
.g-y { color: #FBBC05; font-size: 1.375rem; font-weight: 700; font-family: var(--font); }
.g-g { color: #34A853; font-size: 1.375rem; font-weight: 700; font-family: var(--font); }
.reviews-count { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: .875rem; }
.hero-stars { color: var(--yellow); font-size: 1.375rem; margin-bottom: .5rem; }
.hero-stars-label { color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pricing-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 2rem; display: flex; flex-direction: column;
}
.pricing-card.featured { background: var(--blue); border-color: var(--blue); color: #fff; }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.pricing-card.featured h3 { color: #fff; }
.price-list { flex: 1; }
.price-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: .4rem 0; font-size: .9375rem;
  border-bottom: 1px solid var(--gray-200);
}
.price-list li:last-child { border: none; }
.pricing-card.featured .price-list li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.15); }
.price-bullet { color: var(--yellow); font-size: 1.25rem; line-height: 1.2; flex-shrink: 0; }
.price-note { font-size: .8rem; font-style: italic; color: var(--gray-500); margin: .75rem 0 1.5rem; }
.pricing-card.featured .price-note { color: rgba(255,255,255,.6); }
.why-list { flex: 1; margin-bottom: 2rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: .625rem;
  padding: .625rem 0; border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: .9375rem; color: rgba(255,255,255,.9);
}
.why-list li:last-child { border: none; }
.why-check { color: var(--yellow); font-weight: 700; flex-shrink: 0; }
.pricing-text-section { text-align: center; max-width: 720px; margin: 0 auto; }
.deposit-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 2.5rem; max-width: 720px; margin: 0 auto;
}
.deposit-card h2 { color: var(--blue); font-size: 1.875rem; margin-bottom: .75rem; }
.deposit-card > p { color: var(--gray-500); margin-bottom: 1.5rem; }
.deposit-card h4 { color: var(--gray-900); margin-bottom: .875rem; font-size: .9375rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.deposit-list { margin-bottom: 2rem; }
.deposit-list li {
  padding: .375rem 0 .375rem 1.25rem; position: relative;
  font-size: .9375rem; color: var(--gray-700);
}
.deposit-list li::before { content: '•'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.deposit-link { display: block; text-align: center; margin-top: 1rem; color: var(--yellow-dk); font-weight: 600; font-size: .9rem; }

/* ── Service Areas Page ──────────────────────────────────────── */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.city-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}
.city-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.city-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.city-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.city-card:hover .city-img img { transform: scale(1.05); }

/* City placeholder image (branded, consistent across cards) */
.city-ph {
  position: relative; height: 100%; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2348b0 100%);
}
.city-ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(240,180,41,.20) 0%, transparent 55%);
}
.city-ph svg { width: 40px; height: 40px; stroke: var(--yellow); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .55rem; position: relative; z-index: 1; }
.city-ph .city-ph-name { font-size: 1.0625rem; font-weight: 700; position: relative; z-index: 1; line-height: 1.2; }
.city-ph .city-ph-sub { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: .3rem; position: relative; z-index: 1; }
.cities-grid .city-card:nth-child(3n+2) .city-ph { background: linear-gradient(135deg, #0f1f4d 0%, #1e3a8a 100%); }
.cities-grid .city-card:nth-child(3n+3) .city-ph { background: linear-gradient(135deg, #2348b0 0%, #16307a 100%); }

/* Pricing hero — center the intro paragraph block */
.page-hero.pricing-hero p { margin-left: auto; margin-right: auto; }

/* Location / area map embed */
.loc-map-wrap {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200);
  box-shadow: var(--sh); background: var(--gray-100);
}
.loc-map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 600px) { .loc-map-wrap iframe { height: 300px; } }
.city-body {
  padding: .875rem 1.125rem;
  display: flex; align-items: center; justify-content: space-between;
}
.city-title { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; }
.city-title svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.city-arrow { color: var(--gray-400); font-size: .875rem; }

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 1.375rem 1.5rem;
}
.contact-card-hdr { display: flex; align-items: center; gap: .875rem; margin-bottom: .625rem; }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--gray-900); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-card h3 { font-size: 1rem; margin: 0; }
.contact-info-card a { color: var(--blue); font-weight: 600; }
.hours-grid { display: grid; gap: .25rem; margin-top: .375rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--gray-500); }
.hours-row span:first-child { font-weight: 600; color: var(--gray-700); }
.contact-areas { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.contact-areas a { color: var(--blue); }
.form-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 2rem 2.25rem;
}
.form-card h2 { font-size: 1.625rem; margin-bottom: .375rem; }
.form-card .form-sub { color: var(--gray-500); font-size: .9375rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
label {
  display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700);
  margin-bottom: .375rem;
}
.req { color: #ef4444; }
.form-control {
  width: 100%; padding: .6875rem .875rem;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  font-size: .9375rem; color: var(--gray-900);
  outline: none; transition: border-color var(--tr), box-shadow var(--tr);
  background: #fff;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,58,138,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-status {
  display: block;
  margin: 0 0 1rem;
  padding: .875rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-status[hidden] { display: none; }
.form-status.success { background: #ecfdf5; border-color: #bbf7d0; color: #166534; }
.form-status.error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.form-foot { text-align: center; font-size: .875rem; color: var(--gray-500); margin-top: 1rem; }
.form-foot a { color: var(--blue); font-weight: 600; }

/* ── About Page ──────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-chip {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.125rem;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  font-size: .875rem; font-weight: 500;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.feature-chip:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,58,138,.09); }
.feature-chip-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--yellow-lt); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .875rem;
}
.commitment-band { background: var(--blue); padding: 80px 0; text-align: center; }
.commitment-band h2 { color: #fff; }
.commitment-band p  { color: rgba(255,255,255,.78); margin: 1rem auto 2.25rem; max-width: 660px; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--blue-footer); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1.5fr 2fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer-logo-name { font-size: .9375rem; font-weight: 700; color: #fff; display: block; }
.footer-logo-tag  { font-size: .6rem; font-weight: 700; color: var(--yellow); letter-spacing: .08em; text-transform: uppercase; display: block; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1rem; }
.footer-stars { color: var(--yellow); font-size: .9375rem; margin-bottom: .625rem; }
.footer-creds { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .25rem; }
.footer-cred  { font-size: .8rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: all var(--tr);
}
.social-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-col h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 1.125rem; }
.footer-links { display: flex; flex-direction: column; gap: .375rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--tr); }
.footer-links a:hover { color: #fff; }
.footer-areas-intro { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: .875rem; }
.footer-areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem .75rem; }
.footer-areas-cols a { font-size: .8125rem; color: rgba(255,255,255,.6); transition: color var(--tr); }
.footer-areas-cols a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.375rem; }
.footer-ci { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-ci svg { width: 15px; height: 15px; stroke: var(--yellow); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-cta-btns { display: flex; flex-direction: column; gap: .625rem; }
.footer-cta-btns .btn { justify-content: center; padding: .625rem 1rem; font-size: .875rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.4); transition: color var(--tr); }
.footer-bottom-links a:hover { color: #fff; }

/* ── Animate on scroll ───────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.anim.in { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* ── Utility ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.bg-white { background: #fff; }
.bg-offwhite { background: var(--off-white); }
.bg-blue  { background: var(--blue); }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================================
   ADDITIONS — reviews hero, home sections, service & area pages
   ============================================================ */

/* ── Reviews page hero (fixed) ───────────────────────────────── */
.reviews-hero { text-align: center; }
.reviews-hero .container {
  display: flex; flex-direction: column; align-items: center;
}
.reviews-hero .eyebrow { text-align: center; }
.reviews-hero h1 { color: #fff; margin: .25rem 0 .5rem; max-width: 16ch; }
.reviews-hero .reviews-count { color: rgba(255,255,255,.82); font-size: 1.0625rem; margin-bottom: 1.125rem; }
.reviews-hero .hero-stars { color: var(--yellow); font-size: 1.5rem; letter-spacing: .15em; margin-bottom: .5rem; }
.reviews-hero .hero-stars-label { color: rgba(255,255,255,.7); font-size: .9375rem; }
.google-hero-badge { margin: 0 0 1.25rem; }

/* ── Google rating badge (light backgrounds) ─────────────────── */
.gbadge {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-pill);
  padding: .5rem 1.25rem; box-shadow: var(--sh);
}
.gbadge-logo { font-weight: 700; font-size: 1.125rem; letter-spacing: -.02em; }
.gbadge-logo .g-b { color: #4285F4; } .gbadge-logo .g-r { color: #EA4335; }
.gbadge-logo .g-y { color: #FBBC05; } .gbadge-logo .g-g { color: #34A853; }
.gbadge-score { display: flex; align-items: center; gap: .375rem; font-size: .9375rem; font-weight: 600; color: var(--gray-700); }
.gbadge-score .stars { color: var(--yellow); letter-spacing: .05em; }
.home-reviews-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 2.5rem; }
.home-reviews-head .section-sub { margin: .25rem auto 0; }

/* ── Why Us grid ─────────────────────────────────────────────── */
.whyus-section { background: var(--off-white); }
.whyus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.whyus-item { text-align: left; }
.whyus-ico {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--yellow-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.whyus-ico svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.whyus-item h3 { color: var(--gray-900); margin-bottom: .5rem; }
.whyus-item p { font-size: .9375rem; color: var(--gray-500); }

/* ── Atlanta Area Cleaning band ──────────────────────────────── */
.area-cleaning { background: var(--blue-footer); color: #fff; }
.area-cleaning .ac-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.area-cleaning .eyebrow { color: var(--yellow); }
.area-cleaning h2 { color: #fff; }
.area-cleaning p { color: rgba(255,255,255,.72); font-size: .9375rem; margin-top: 1rem; }
.ac-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.ac-tag {
  font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-pill);
  padding: .375rem .875rem; transition: border-color var(--tr), background var(--tr);
}
.ac-tag:hover { border-color: var(--yellow); background: rgba(240,180,41,.12); }

/* ── Fast Response / get a free quote ────────────────────────── */
.fast-response { background: var(--off-white); }
.fr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fr-text .eyebrow { color: var(--blue); }
.fr-text h2 { color: var(--gray-900); }
.fr-text p { color: var(--gray-500); margin-top: 1rem; font-size: 1rem; }
.fr-points { display: flex; flex-direction: column; gap: .625rem; margin-top: 1.5rem; }
.fr-point { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; color: var(--gray-700); }
.fr-point .check-bullet { width: 22px; height: 22px; }
.quote-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-md); }
.quote-card h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.quote-card .quote-sub { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.25rem; }

/* ── Estimate / lead form (shared) ───────────────────────────── */
.lead-form .form-group { margin-bottom: .875rem; }
.lead-form textarea.form-control { min-height: 96px; }

/* ── Service detail page ─────────────────────────────────────── */
.service-hero {
  position: relative; min-height: 320px;
  display: flex; align-items: center;
  background: var(--blue-footer); overflow: hidden;
}
.service-hero-img { position: absolute; inset: 0; }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,31,77,.92) 30%, rgba(15,31,77,.55) 100%);
}
.service-hero .container { position: relative; z-index: 1; padding-top: 56px; padding-bottom: 56px; }
.service-hero .eyebrow { color: var(--yellow); }
.service-hero h1 { color: #fff; max-width: 18ch; }
.service-hero p { color: rgba(255,255,255,.82); font-size: 1.0625rem; margin-top: .875rem; max-width: 560px; }

.service-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.service-main h2 { color: var(--gray-900); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
.service-main p { color: var(--gray-700); font-size: 1rem; margin-bottom: 1.125rem; line-height: 1.75; }
.service-main-img { border-radius: var(--r-lg); overflow: hidden; margin-top: 1.5rem; box-shadow: var(--sh-md); }
.service-main-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 84px; }
.estimate-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--sh-md); }
.estimate-card h3 { font-size: 1.125rem; margin-bottom: 1.125rem; }
.estimate-card .form-note { font-size: .8125rem; color: var(--gray-500); margin-top: 1rem; }
.estimate-card .form-note a { color: var(--blue); font-weight: 600; }
.other-services { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; }
.other-services h3 { background: var(--blue); color: #fff; font-size: 1rem; padding: 1rem 1.25rem; }
.other-services ul { display: flex; flex-direction: column; }
.other-services li + li { border-top: 1px solid var(--gray-200); }
.other-services a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .875rem 1.25rem; font-size: .9375rem; font-weight: 500; color: var(--blue);
  transition: background var(--tr);
}
.other-services a::after { content: '›'; color: var(--gray-400); font-size: 1.25rem; line-height: 1; }
.other-services a:hover { background: var(--gray-100); }
.other-services li.current a { background: var(--blue); color: #fff; }
.other-services li.current a::after { color: rgba(255,255,255,.7); }

/* See the Difference (large before/after) */
.see-diff { background: var(--off-white); text-align: center; }
.see-diff h2 { margin-bottom: 2.5rem; }
.see-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.see-diff-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.see-diff-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.see-diff-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .75rem; border-radius: var(--r-pill);
}
.see-diff-card.after .see-diff-tag { background: var(--yellow); color: var(--gray-900); }

/* Service CTA band */
.service-cta { background: var(--blue); text-align: center; padding: 64px 0; }
.service-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .75rem; }
.service-cta p { color: rgba(255,255,255,.8); margin: 0 auto 1.75rem; max-width: 560px; }

/* ── Area (city) detail page ─────────────────────────────────── */
.area-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.area-svc-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 1.5rem; transition: box-shadow var(--tr), transform var(--tr);
}
.area-svc-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.area-svc-ico {
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow-lt);
  display: flex; align-items: center; justify-content: center; margin-bottom: .875rem; font-size: 1.25rem;
}
.area-svc-card h3 { color: var(--blue); margin-bottom: .375rem; }
.area-svc-card p { font-size: .875rem; color: var(--gray-500); }
.area-nearby { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; margin-top: 1.5rem; }

/* ============================================================
   LOCATION (city) landing pages
   ============================================================ */
.loc-hero {
  position: relative; min-height: 460px;
  display: flex; align-items: center;
  background: var(--blue-footer); overflow: hidden;
}
.loc-hero-img { position: absolute; inset: 0; }
.loc-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,.85) 0%, rgba(10,22,40,.55) 45%, rgba(10,22,40,.25) 100%);
}
.loc-hero .container { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; }
.loc-hero .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: .4rem; }
.loc-hero .eyebrow svg { width: 15px; height: 15px; fill: none; stroke: var(--yellow); stroke-width: 2; }
.loc-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.5rem); max-width: 16ch; }
.loc-hero p { color: rgba(255,255,255,.85); font-size: 1.0625rem; margin: 1rem 0 1.75rem; max-width: 540px; }

/* What-we-do split */
.loc-do .content-split { gap: 4.5rem; }
.loc-do .split-text .eyebrow { color: var(--blue); }
.loc-do .split-text h2 { font-size: clamp(2rem, 4vw, 2.875rem); line-height: 1.1; margin-bottom: 1.25rem; }
.loc-do .split-text > p { font-size: 1rem; color: var(--gray-500); margin-bottom: 1.75rem; }
.loc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem 2rem; }
.loc-check { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; color: var(--gray-700); }
.loc-check svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Before / After slider */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 5/4;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  user-select: none; touch-action: none; cursor: ew-resize;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap { position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden; }
.ba-slider .ba-before-wrap img { width: 100vw; max-width: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
  width: 3px; background: #fff; transform: translateX(-50%);
}
.ba-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px; transform: translate(-50%, -50%);
  background: var(--yellow); border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ba-handle::after {
  content: '\21C4'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--gray-900);
  font-size: 1.1rem; font-weight: 700; z-index: 1;
}
.ba-tag {
  position: absolute; bottom: .875rem; z-index: 4;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .7rem; border-radius: var(--r-pill); color: #fff;
}
.ba-tag.before { left: .875rem; background: rgba(10,22,40,.8); }
.ba-tag.after  { right: .875rem; background: var(--yellow); color: var(--gray-900); }

/* Services-in-city grid */
.loc-services { background: var(--off-white); }
.loc-services .section-head { text-align: center; margin-bottom: 3rem; }
.loc-services .eyebrow { color: var(--blue); }
.loc-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.loc-svc-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 1.875rem; display: flex; flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.loc-svc-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--gray-300); }
.loc-svc-card h3 { color: var(--blue); font-size: 1.1875rem; line-height: 1.3; margin-bottom: .75rem; }
.loc-svc-card p { font-size: .9375rem; color: var(--gray-500); margin-bottom: 1.25rem; flex: 1; }
.loc-svc-card .learn-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9375rem; font-weight: 600; color: var(--blue);
  transition: gap var(--tr);
}
.loc-svc-card .learn-link:hover { gap: .65rem; }

/* Location CTA band */
.loc-cta {
  position: relative; overflow: hidden;
  background: var(--blue-footer); text-align: center; padding: 84px 0;
}
.loc-cta-img { position: absolute; inset: 0; }
.loc-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,31,77,.92), rgba(10,22,40,.92));
}
.loc-cta .container { position: relative; z-index: 1; }
.loc-cta h2 { color: #fff; font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1rem; }
.loc-cta p { color: rgba(255,255,255,.78); margin: 0 auto 2rem; max-width: 540px; }
.loc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ============================================================
   HERO CAROUSEL · TRUST BAR · HOME BEFORE/AFTER (reference match)
   ============================================================ */

/* ── Full-bleed hero carousel ───────────────────────────────── */
.hero-carousel {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(10,22,40,.93) 0%, rgba(10,22,40,.80) 40%, rgba(10,22,40,.42) 100%);
}
.hero-carousel .container { position: relative; z-index: 2; }
.hero-content { max-width: 660px; padding: 92px 0; }
.hero-content .eyebrow { color: var(--yellow); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  margin: .5rem 0 1.25rem;
}
.hero-content h1 .hl { color: var(--yellow); }
.hero-content .hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem; max-width: 560px; margin-bottom: 2rem;
}
.hero-content .hero-btns { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 1.75rem; }
.hero-rating { display: flex; align-items: center; gap: .625rem; color: #fff; font-size: .9375rem; font-weight: 500; flex-wrap: wrap; }
.hero-rating .stars { color: var(--yellow); letter-spacing: .12em; font-size: 1.0625rem; }
.hero-rating .hero-rating-sep { color: rgba(255,255,255,.3); }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background var(--tr), width var(--tr); padding: 0; }
.hero-dot.is-active { background: var(--yellow); width: 26px; border-radius: 5px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #fff; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.hero-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow:hover { background: rgba(255,255,255,.26); }
.hero-arrow.prev { left: 1.25rem; }
.hero-arrow.next { right: 1.25rem; }

/* ── Trust badge bar ────────────────────────────────────────── */
.trust-bar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: .875rem; }
.trust-badge-ico {
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-badge-ico svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-badge-txt strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.trust-badge-txt span { font-size: .8125rem; color: var(--gray-500); }

/* ── Before/After comparison slider (shared) ────────────────── */
.bac-slider {
  position: relative; width: 100%; aspect-ratio: 4/3;
  overflow: hidden; cursor: col-resize; user-select: none; background: #e5e7eb;
}
.bac-img-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.bac-after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.bac-after-wrap img { display: block; position: absolute; inset: 0; width: 200%; height: 100%; object-fit: cover; }
.bac-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; box-shadow: 0 0 6px rgba(0,0,0,.35); transform: translateX(-1px); pointer-events: none; }
.bac-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 2;
}
.bac-lbl { position: absolute; top: .75rem; font-size: .625rem; font-weight: 700; letter-spacing: .08em; padding: .275rem .625rem; border-radius: 99px; pointer-events: none; z-index: 3; }
.bac-lbl-before { left: .75rem; background: rgba(30,30,30,.75); color: #fff; }
.bac-lbl-after  { right: .75rem; background: var(--yellow); color: #111; }

/* ── Home "See the difference" dark section ─────────────────── */
.home-ba { background: var(--blue-footer); }
.home-ba .eyebrow { color: var(--yellow); }
.home-ba .section-title { color: #fff; }
.home-ba .section-sub { color: rgba(255,255,255,.7); }
.home-ba-head { text-align: center; margin-bottom: 2.5rem; }
.home-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.home-ba-card .bac-slider { border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.home-ba-cap { margin-top: 1rem; }
.home-ba-cap h3 { color: #fff; font-size: 1rem; margin-bottom: .25rem; }
.home-ba-cap p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }
.home-ba-foot { text-align: center; margin-top: 2.75rem; display: flex; flex-direction: column; align-items: center; gap: .875rem; }
.home-ba-foot a.ba-link { color: rgba(255,255,255,.7); font-size: .9375rem; font-weight: 500; text-decoration: underline; }
.home-ba-foot a.ba-link:hover { color: #fff; }

@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.5rem; }
  .home-ba-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-carousel  { min-height: 560px; }
  .hero-content   { padding: 64px 0 56px; }
  .hero-arrow     { display: none; }
  .home-ba-grid   { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .trust-bar-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .home-hero-text  { padding-right: 40px; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .area-chips      { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .cities-grid     { grid-template-columns: repeat(2, 1fr); }
  .ba-grid         { grid-template-columns: repeat(2, 1fr); }
  .feature-grid    { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid      { grid-template-columns: repeat(2, 1fr); }
  .loc-svc-grid    { grid-template-columns: repeat(2, 1fr); }
  .service-layout  { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .area-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav (≤1024px — collapse before the desktop row overflows) */
@media (max-width: 1024px) {
  .main-nav        { display: none; }
  .hdr-phone       { display: none; }
  .mobile-toggle   { display: flex; }

  /* Mobile nav open state */
  .nav-open .main-nav {
    display: block;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 1.5rem;
    overflow-y: auto; z-index: 999;
    border-top: 1px solid var(--gray-200);
  }
  .nav-open .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav-open .nav-list a { padding: .875rem 1rem; font-size: 1rem; }
  .nav-open .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--yellow); border-radius: 0; margin-left: 1rem; padding: .25rem 0; }

  .header-cta .btn { padding: .5rem 1rem; font-size: .8125rem; }

  /* Home hero */
  .home-hero-grid  { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-text  { padding: 56px 0 48px; }
  .home-hero-img   { height: 260px; }
  .home-hero-img-overlay { background: linear-gradient(to bottom, var(--blue) 0%, transparent 30%); }

  /* General */
  .content-split    { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-split.flip > :first-child { order: 0; }
  .content-split.flip > :last-child  { order: 0; }
  .team-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .area-chips       { grid-template-columns: 1fr 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .cities-grid      { grid-template-columns: repeat(2, 1fr); }
  .feature-grid     { grid-template-columns: 1fr; }
  .ba-grid          { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .loc-checks       { grid-template-columns: 1fr; }
  .loc-svc-grid     { grid-template-columns: 1fr; }
  .loc-hero         { min-height: 400px; }
  .whyus-grid       { grid-template-columns: 1fr 1fr; }
  .ac-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .fr-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .see-diff-grid    { grid-template-columns: 1fr; }
  .area-services-grid { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .stats-bar-divider { display: none; }
  .stats-bar-grid  { gap: 1.5rem; justify-content: flex-start; }
  .ba-header       { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-pad     { padding: 56px 0; }
  .section-pad-sm  { padding: 40px 0; }
}

@media (max-width: 480px) {
  .benefits-grid   { grid-template-columns: 1fr; }
  .area-chips      { grid-template-columns: 1fr; }
  .team-stats      { grid-template-columns: 1fr 1fr; }
}

/* Cities grid: desktop 3 → tablet/small 2 → phone 1 */
@media (max-width: 600px) {
  .cities-grid { grid-template-columns: 1fr; }
}
