/* ============================================================
   TASK FORCE PEST CONTROL — Main Stylesheet
   Family-Owned. Veteran-Operated. Northeast Georgia.
   ============================================================ */

:root {
  --charcoal:      #0F0E10;
  --charcoal-dark: #080709;
  --charcoal-light:#1E1D20;
  --charcoal-mid:  #3A3A3A;
  --crimson:       #CE1017;
  --crimson-dark:  #A80D13;
  --crimson-light: #fef2f2;
  --silver:        #8A8A8A;
  --silver-light:  #C8C8C8;
  /* Light-theme text + backgrounds */
  --text:          #2d2d2d;
  --text-mid:      #54595F;
  --text-muted:    #7A7A7A;
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --light-gray:    #f0f2f4;
  --card-bg:       #ffffff;
  --dark:          #0F0E10;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --radius:        12px;
  --radius-sm:     8px;
  --max-w:         1180px;
  --font:          'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Oswald', Impact, sans-serif;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }

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

/* ── Shared section header ─────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: .5px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.section-header .eyebrow {
  display: inline-block;
  background: rgba(206,16,23,.15);
  color: var(--crimson);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: .3px;
}
.btn:active { transform: scale(.97); }

@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.btn-primary {
  background: linear-gradient(105deg, var(--crimson) 40%, #e8404a 50%, var(--crimson) 60%);
  background-size: 200% auto;
  color: #fff;
  border-color: var(--crimson);
  animation: btn-shimmer 2.8s linear infinite;
  box-shadow: 0 4px 18px rgba(206,16,23,.40);
}
.btn-primary:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); box-shadow: 0 6px 22px rgba(206,16,23,.55); animation: none; }

.btn-outline-brand        { background: transparent; color: var(--silver-light); border-color: var(--charcoal-mid); }
.btn-outline-brand:hover  { background: var(--charcoal-light); color: #fff; border-color: var(--silver); }

.btn-outline-nav          { background: transparent; color: var(--crimson); border-color: var(--crimson); font-size: .88rem; padding: 8px 18px; }
.btn-outline-nav:hover    { background: var(--crimson); color: #fff; }

.btn-white        { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover  { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }

.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--crimson);
  color: #fff;
  font-size: .88rem;
  padding: 10px 28px;
}
.ann-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ann-cta {
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .83rem;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
  border: 1.5px solid rgba(255,255,255,.5);
}
.ann-cta:hover { background: rgba(255,255,255,.35); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-wrap {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.nav-logo { flex-shrink: 0; line-height: 0; }
.logo-img  { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a,
.nav-item > a {
  display: block;
  padding: 8px 13px;
  color: var(--text-mid);
  font-size: .92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-item > a:hover { color: var(--charcoal); background: var(--light-gray); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 350;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.has-drop.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 400;
  border-radius: 0;
}
.dropdown a:hover { color: var(--crimson); background: rgba(206,16,23,.05); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal-mid);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #fdfcfb;
  background-image: radial-gradient(ellipse at 90% 10%, rgba(206,16,23,.06) 0%, transparent 55%),
                    radial-gradient(ellipse at 10% 90%, rgba(206,16,23,.04) 0%, transparent 45%);
  padding: 72px 0 80px;
  border-bottom: 1px solid #ede9e4;
}
.hero-inner {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 56px;
  align-items: center;
  min-height: auto;
}
.hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #0F0E10;
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(206,16,23,.08);
  color: var(--crimson);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(206,16,23,.18);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.72;
  max-width: 460px;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
  border: 1px solid rgba(206,16,23,.12);
  border-radius: 28px;
  padding: 52px 40px;
  box-shadow: 0 6px 40px rgba(206,16,23,.08), 0 2px 12px rgba(0,0,0,.04);
}
.hero-mobile-photo { display: none; }
.hero-logo-img {
  width: 100%;
  max-width: 270px;
  height: auto;
  filter: none;
}

/* Hero zip-code form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.zip-input-group {
  display: inline-flex;
  align-items: stretch;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #dde0e4;
  background: #fff;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.zip-input {
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  width: 140px;
  min-width: 0;
  background: transparent;
  flex-shrink: 0;
}
.zip-input::placeholder { color: var(--text-muted); }
.zip-input-group .btn {
  border-radius: 0 48px 48px 0;
  border: none;
  flex-shrink: 0;
  margin: 0;
  animation: none;
  background: var(--crimson);
}
.zip-input-group .btn:hover { background: var(--crimson-dark); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: .2px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  color: var(--crimson);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.trust-icon svg { width: 20px; height: 20px; }

/* ============================================================
   VALUE PROP SECTION
   ============================================================ */
.valuprop-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.valuprop-inner {
  max-width: 780px;
  margin: 0 auto;
}
.valuprop-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.valuprop-inner p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.valuprop-inner .crimson-line {
  width: 60px;
  height: 4px;
  background: var(--crimson);
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* ============================================================
   COMMITMENT CARDS
   ============================================================ */
.commitment-section {
  background: var(--off-white);
  padding: 80px 0;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.commitment-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.commitment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(206,16,23,.25); }
.commitment-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(206,16,23,.12);
  border: 2px solid rgba(206,16,23,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  margin: 0 auto 22px;
}
.commitment-icon-wrap svg { width: 32px; height: 32px; }
.commitment-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.commitment-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   COMMON PESTS SECTION
   ============================================================ */
.pests-section {
  background: var(--dark);
  padding: 80px 0;
}
.pests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pest-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}
.pest-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pest-photo {
  width: 100%;
  height: 170px;
  background: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pest-card:hover .pest-photo img { transform: scale(1.05); }
.pest-photo-placeholder {
  color: var(--charcoal-mid);
}
.pest-photo-placeholder svg { width: 48px; height: 48px; }
.pest-label {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pest-label h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .3px;
}
.pest-label a {
  font-size: .82rem;
  color: var(--crimson);
  font-weight: 600;
  transition: opacity .2s;
}
.pest-label a:hover { opacity: .75; }

/* ============================================================
   PROCESS SECTION (4-step)
   ============================================================ */
.process-section {
  background: var(--off-white);
  padding: 80px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid var(--crimson);
}
.process-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .85;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.process-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SERVICE AREA — dark bg, Georgia map
   ============================================================ */
.sa-section {
  background: #f5f3f0;
  padding: 80px 0;
  overflow: hidden;
}
.sa-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.sa-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sa-eyebrow {
  display: inline-block;
  background: rgba(206,16,23,.15);
  color: var(--crimson);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
}
.sa-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: .4px;
}
.sa-left > p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.sa-city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  list-style: none;
  margin-bottom: 32px;
}
.sa-city-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.sa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

/* Zip input on dark bg */
.zip-input-group--dark {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.zip-input-group--dark .zip-input {
  background: transparent;
  color: #fff;
}
.zip-input-group--dark .zip-input::placeholder { color: rgba(255,255,255,.35); }

.sa-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sa-map-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.12));
}
.ga-outline {
  fill: #e2ddd8;
  stroke: #c8c3bc;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.ga-ref-txt {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  fill: rgba(0,0,0,.25);
  font-style: italic;
}
.ga-state-wm {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 6px;
  fill: rgba(0,0,0,.04);
  text-anchor: middle;
}
.ga-pin-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 600;
  fill: #3a3a3a;
}
.ga-pin-lbl--hero {
  font-size: 11px;
  font-weight: 800;
  fill: #1a1a1a;
}

/* ============================================================
   ABOUT SECTION (2-col story)
   ============================================================ */
.about-section {
  padding: 90px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 420px;
}
.about-logo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-logo-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-text .section-eyebrow {
  display: inline-block;
  background: rgba(206,16,23,.15);
  color: var(--crimson);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: .4px;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .97rem;
}
.about-text .btn { margin-top: 8px; }
.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 28px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(206,16,23,.1);
  border: 1px solid rgba(206,16,23,.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--silver-light);
}
.about-badge svg { width: 14px; height: 14px; color: var(--crimson); }

/* ============================================================
   WHY CHOOSE CARDS
   ============================================================ */
.why-choose {
  padding: 80px 0;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(206,16,23,.2); }
.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(206,16,23,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  margin-bottom: 16px;
}
.why-icon-wrap svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICES GRID (3-col)
   ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--off-white);
}
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  border-top: 4px solid var(--crimson);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 4px solid var(--crimson);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(206,16,23,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .3px;
}
.service-card > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: .9rem;
}
.service-link {
  font-size: .85rem;
  color: var(--crimson);
  font-weight: 700;
  transition: opacity .2s;
  letter-spacing: .2px;
}
.service-link:hover { opacity: .75; }

/* ============================================================
   SIGN UP CTA
   ============================================================ */
.signup-cta {
  padding: 90px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.signup-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(206,16,23,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
  letter-spacing: .5px;
}
.cta-text p { color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 32px; font-size: .97rem; }
.cta-logo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}
.cta-logo-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 90px 0;
  background: var(--off-white);
}
.reviews-head {
  text-align: center;
  margin-bottom: 52px;
}
.reviews-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .4px;
}
.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
}
.big-stars { font-size: 1.6rem; color: #f5a623; letter-spacing: 3px; }
.rating-detail { display: flex; flex-direction: column; line-height: 1.2; }
.rating-num { font-size: 1.8rem; font-weight: 700; color: #fff; }
.rating-of  { font-size: .85rem; color: var(--text-muted); }
.rating-count { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid transparent;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card--featured { border-top-color: var(--crimson); }
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card > p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: .93rem;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; font-weight: 600; color: #fff; }
.reviewer span { font-size: .8rem; color: var(--crimson); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background: var(--dark);
}
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-q[aria-expanded="true"] { color: var(--crimson); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--crimson);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open {
  max-height: 220px;
  padding-bottom: 20px;
}
.faq-a p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }

/* ============================================================
   CREDENTIALS / STATS
   ============================================================ */
.credentials-section {
  padding: 72px 0;
  background: var(--crimson);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 55%),
                    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,.08) 0%, transparent 55%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.stat-suffix {
  font-size: 2rem;
  color: rgba(255,255,255,.85);
}
.stat-label {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 28px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; max-width: 260px; color: rgba(255,255,255,.45); }
.footer-contact p {
  font-size: .88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.45);
}
.footer-contact a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact a:hover { color: var(--crimson); }
.fc-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--crimson);
}
.fc-icon svg { width: 14px; height: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--crimson); color: #fff; }
.social-link svg { width: 16px; height: 16px; }

.footer-nav h4 {
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--crimson); }

.footer-bottom {
  padding: 18px 0;
  background: #000;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-vet-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-vet-badge svg { color: var(--crimson); opacity: .6; width: 16px; height: 16px; }

/* ============================================================
   PAGE HERO — sub-page dark header
   ============================================================ */
.page-hero {
  background: var(--charcoal-dark);
  background-image: radial-gradient(ellipse at 50% 100%, rgba(206,16,23,.06) 0%, transparent 70%);
  padding: 84px 0 76px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(206,16,23,.15);
  color: var(--crimson);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.12;
  margin: 0 auto 16px;
  max-width: 720px;
  letter-spacing: .5px;
}
.page-hero > .container > p,
.page-hero p.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.page-hero .zip-input-group { margin: 0 auto; }

/* ============================================================
   HOW IT WORKS / PROCESS — 3-step numbered section
   ============================================================ */
.hiw-section { padding: 80px 0; background: var(--off-white); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hiw-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
}
.hiw-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .8;
}
.hiw-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.hiw-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   LOCATION INTRO
   ============================================================ */
.location-intro { padding: 80px 0; background: var(--dark); }
.location-intro-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.location-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: .4px;
}
.location-intro-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .97rem;
}
.location-services-list { list-style: none; margin: 20px 0 32px; }
.location-services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; font-weight: 500; color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.location-services-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
  display: block;
}
.location-services-list li span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}
.location-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.location-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   VALUES grid (About page)
   ============================================================ */
.values-section { padding: 80px 0; background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid var(--crimson);
}
.value-icon {
  width: 64px; height: 64px;
  background: rgba(206,16,23,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  margin: 0 auto 20px;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.value-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   LOCATION HUB CARD GRID
   ============================================================ */
.locations-hub-section { padding: 80px 0; background: var(--off-white); }
.locations-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location-hub-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.location-hub-card:hover { border-color: rgba(206,16,23,.35); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.location-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .3px;
}
.location-hub-card p { font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.location-hub-link { font-size: .82rem; color: var(--crimson); font-weight: 700; transition: opacity .2s; }
.location-hub-link:hover { opacity: .75; }

/* ============================================================
   QUOTE FORM PAGE
   ============================================================ */
.qpage {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 60px;
}
.qcard {
  width: 100%;
  max-width: 580px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.07);
  margin-top: 48px;
}
.qcard-header {
  background: var(--charcoal-dark);
  padding: 32px 36px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.qcard-logo { width: 80px; height: 80px; object-fit: cover; object-position: center top; border-radius: 50%; display: block; margin: 0 auto 16px; }
.qcard-header h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: .5px;
}
.qcard-header p { font-size: .9rem; color: var(--text-muted); }
.qform {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qfield label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--silver-light);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.qinput {
  background: var(--dark);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  font-family: var(--font);
  color: #fff;
  transition: border-color .2s;
}
.qinput:focus {
  outline: none;
  border-color: var(--crimson);
}
.qinput::placeholder { color: rgba(255,255,255,.2); }
.qinput[type="select"],
select.qinput {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
select.qinput option { background: var(--card-bg); color: #fff; }
textarea.qinput { resize: vertical; min-height: 90px; }
.qconsent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.06);
}
.qconsent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--crimson);
  cursor: pointer;
}
.qconsent p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }
.qsubmit {
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 17px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  letter-spacing: .3px;
  box-shadow: 0 4px 18px rgba(206,16,23,.35);
}
.qsubmit:hover { background: var(--crimson-dark); box-shadow: 0 6px 22px rgba(206,16,23,.5); }

/* ============================================================
   NOT IN AREA PAGE
   ============================================================ */
.nia-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  text-align: center;
}
.nia-icon {
  width: 80px;
  height: 80px;
  background: rgba(206,16,23,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  margin: 0 auto 24px;
}
.nia-icon svg { width: 36px; height: 36px; }
.nia-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .5px;
}
.nia-page p { color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.nia-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .locations-hub-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sa-inner              { grid-template-columns: 1fr; }
  .sa-right              { order: -1; }
  .sa-map-svg            { max-width: 300px; }
  .sa-city-list          { grid-template-columns: repeat(3, 1fr); }
  .hiw-grid              { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: 1fr 1fr; }
  .location-intro-inner  { grid-template-columns: 1fr; }
  .location-img-card     { order: -1; position: static; }
  .location-img-card img { height: 220px; }
  .hero                  { padding: 52px 0 60px; }
  .hero-inner            { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero-logo-wrap        { display: none; }
  .hero-content          { padding: 0; text-align: center; }
  .about-inner           { grid-template-columns: 1fr; }
  .about-logo-wrap       { display: none; }
  .commitment-grid       { grid-template-columns: 1fr; }
  .services-grid-3       { grid-template-columns: 1fr 1fr; }
  .why-grid              { grid-template-columns: 1fr 1fr; }
  .reviews-grid          { grid-template-columns: 1fr; }
  .cta-inner             { grid-template-columns: 1fr; }
  .cta-logo-wrap         { display: none; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand          { grid-column: 1 / -1; }
  .pests-grid            { grid-template-columns: 1fr 1fr; }
  .locations-hub-grid    { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE — 700px and below
   ============================================================ */
@media (max-width: 700px) {

  /* ── Navigation ─────────────────────── */
  .logo-img        { height: 42px; }
  .ann-bar         { text-align: center; font-size: .82rem; padding: 8px 16px; }
  .nav-links       { display: none; }
  .btn-outline-nav { display: none; }
  .hamburger       { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    gap: 0;
    z-index: 200;
  }
  .nav-links.open .nav-item > a,
  .nav-links.open > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 1rem;
    color: rgba(255,255,255,.8);
  }
  .has-drop .dropdown { display: none !important; }
  .has-drop.open .dropdown {
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 6px 0 8px 20px !important;
    min-width: 0 !important;
    background: transparent !important;
    border: none !important;
    z-index: 1 !important;
  }
  .has-drop.open .dropdown a {
    padding: 10px 0 !important;
    font-size: .95rem !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }

  /* ── Global section padding ─────────── */
  .container { padding: 0 18px; }
  .hero,
  .valuprop-section,
  .commitment-section,
  .pests-section,
  .process-section,
  .about-section,
  .services-section,
  .why-choose,
  .reviews-section,
  .signup-cta,
  .faq-section,
  .sa-section,
  .hiw-section,
  .values-section,
  .location-intro,
  .credentials-section,
  .locations-hub-section { padding: 48px 0; }
  .page-hero { padding: 48px 0 40px; }

  /* ── Section headers ────────────────── */
  .section-header  { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.7rem; }
  .section-header p  { font-size: .92rem; }

  /* ── Hero ───────────────────────────── */
  .hero            { padding: 0; }
  .hero-inner      { display: flex; flex-direction: column; gap: 0; min-height: auto; }
  .hero-eyebrow    { font-size: .7rem; }
  .hero-content    { text-align: center; padding: 36px 0 44px; }
  .hero-content h1 { font-size: 2.3rem; font-weight: 600; line-height: 1.08; margin-bottom: 14px; }
  .hero-sub        { font-size: .95rem; color: var(--text-mid); margin-bottom: 24px; }
  .hero-form       { align-items: center; gap: 14px; }

  .hero-mobile-photo {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    margin: 0 0 32px;
    box-shadow: 0 4px 24px rgba(206,16,23,.1);
    background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
    border: 1px solid rgba(206,16,23,.1);
  }
  .hero-mobile-logo {
    width: 160px;
    height: auto;
    filter: none;
    display: block;
    margin: 36px auto 32px;
  }

  /* ── Zip input ─────────────────────── */
  .zip-input-group {
    width: 100%;
    max-width: 340px;
  }
  /* Input grows to fill remaining space — button stays its natural size */
  .zip-input { flex: 1; width: auto; min-width: 0; font-size: .9rem; padding: 13px 16px; }
  .zip-input-group .btn { flex-shrink: 0; white-space: nowrap; }

  /* ── Trust bar ──────────────────────── */
  .trust-item { padding: 8px 18px; border-right: none; border-bottom: 1px solid #e8eaed; font-size: .82rem; }
  .trust-item:last-child { border-bottom: none; }
  .trust-bar-inner { flex-direction: column; }

  /* ── Grids ──────────────────────────── */
  .why-grid            { grid-template-columns: 1fr; }
  .services-grid-3     { grid-template-columns: 1fr; }
  .commitment-grid     { grid-template-columns: 1fr; }
  .pests-grid          { grid-template-columns: 1fr 1fr; }
  .process-grid        { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .locations-hub-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid        { grid-template-columns: 1fr; }

  /* ── Cards ──────────────────────────── */
  .why-card          { padding: 22px 18px; }
  .review-card       { padding: 24px 18px; }
  .hiw-card          { padding: 28px 20px 24px; }
  .service-card      { padding: 26px 20px; }
  .commitment-card   { padding: 32px 22px; }
  .process-card      { padding: 28px 18px; }
  .hiw-number        { font-size: 2.6rem; }
  .process-number    { font-size: 2.2rem; }

  /* ── About ──────────────────────────── */
  .about-inner { gap: 28px; }
  .about-text h2 { font-size: 1.5rem; }

  /* ── Service area ───────────────────── */
  .sa-city-list { grid-template-columns: 1fr 1fr; }

  /* ── Stats ──────────────────────────── */
  .stat-number { font-size: 2.8rem; }

  /* ── FAQ ────────────────────────────── */
  .faq-q { font-size: .93rem; padding: 18px 0; }

  /* ── Footer ─────────────────────────── */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 18px 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-brand p      { max-width: 100%; }

  /* ── Page heroes ─────────────────────── */
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero > .container > p,
  .page-hero p.page-hero-sub { font-size: .95rem; margin-bottom: 24px; }

  /* ── Buttons — bigger tap targets ───── */
  .btn    { padding: 13px 24px; font-size: .93rem; }
  .btn-lg { padding: 15px 32px; font-size: 1rem; }

  /* ── CTA ─────────────────────────────── */
  .cta-text h2 { font-size: 1.65rem; }
  .cta-text p  { font-size: .93rem; }

  /* ── Quote form ─────────────────────── */
  .qcard   { margin: 24px 16px 0; }
  .qform   { padding: 24px 22px; }
  .qrow    { grid-template-columns: 1fr; }
  .qcard-header { padding: 24px 22px 20px; }
}

/* ============================================================
   SMALL PHONES — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  .hero,
  .valuprop-section, .commitment-section, .pests-section, .process-section,
  .about-section, .services-section, .why-choose,
  .reviews-section, .signup-cta, .faq-section,
  .sa-section, .hiw-section, .values-section,
  .location-intro, .credentials-section, .locations-hub-section { padding: 36px 0; }
  .page-hero { padding: 36px 0 30px; }
  .container { padding: 0 16px; }

  .pests-grid          { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .locations-hub-grid  { grid-template-columns: 1fr 1fr; }

  /* Hero zip: stacked column layout — each element is its own pill */
  .hero-form .zip-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 100%;
    max-width: 340px;
    overflow: visible;
    margin: 0 auto;
  }
  .hero-form .zip-input {
    width: 100%;
    border-radius: 50px;
    border: 2px solid #dde0e4;
    padding: 15px 22px;
    font-size: 1rem;
    background: #fff;
    color: var(--text);
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
  }
  .hero-form .zip-input::placeholder { color: var(--text-muted); }
  .hero-form .zip-input:focus { border-color: var(--crimson); outline: none; }
  .hero-form .zip-input-group .btn {
    width: 100%;
    border-radius: 50px;
    padding: 15px 22px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
  }
  .page-hero h1  { font-size: 1.65rem; }
  .stat-number   { font-size: 2.4rem; }

  /* Hero photo strip: slightly shorter on very small screens */
  .hero-mobile-photo-img { height: 200px; }
}

/* ============================================================
   LIGHT THEME — Section & Component Overrides
   Dark sections: cta (signup-cta), footer, page-hero
   Crimson section: credentials-section (stats)
   Light sections: everything else (hero, nav, sa-section, and all content)
   ============================================================ */

/* ── Section header: dark text by default ─────────────────── */
.section-header h2 { color: #1a1a1a; }
.section-header p { color: var(--text-mid); }

/* Override: headers inside dark/crimson sections stay white */
.credentials-section .section-header h2,
.credentials-section .section-header p,
.signup-cta .section-header h2,
.signup-cta .section-header p { color: #fff; }
.credentials-section .section-header p,
.signup-cta .section-header p { color: rgba(255,255,255,.75); }

/* SA section is now light */
.sa-section .section-header h2 { color: #1a1a1a; }
.sa-section .section-header p { color: var(--text-mid); }

/* ── Value prop section ────────────────────────────────────── */
.valuprop-section { background: #fff; }
.valuprop-inner h2 { color: #1a1a1a; }

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar { background: var(--light-gray); border-color: #e8eaed; }
.trust-item { color: var(--text-mid); border-right-color: #dde0e4; }

/* ── Commitment section ────────────────────────────────────── */
.commitment-section { background: var(--light-gray); }
.commitment-card {
  background: #fff;
  border: 1px solid #e8eaed;
  box-shadow: var(--shadow-sm);
}
.commitment-card:hover { border-color: rgba(206,16,23,.25); box-shadow: var(--shadow-md); }
.commitment-card h3 { color: #1a1a1a; }
.commitment-icon-wrap { background: var(--crimson-light); border-color: rgba(206,16,23,.2); }

/* ── Pests section ─────────────────────────────────────────── */
.pests-section { background: #f7f6f4; }
.pest-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.pest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pest-photo { background: #f0ede8; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.pest-photo-placeholder { font-size: 3.5rem; line-height: 1; }
.pest-label h3 { color: #1a1a1a; }
.pest-label a { color: var(--crimson); font-weight: 600; font-size: .88rem; }

/* Warm per-pest tints */
.pest-card:nth-child(1) .pest-photo { background: #fef3e8; } /* ants - warm amber */
.pest-card:nth-child(2) .pest-photo { background: #f5f0eb; } /* roaches - warm stone */
.pest-card:nth-child(3) .pest-photo { background: #eaf5f0; } /* mosquitoes - cool mint */
.pest-card:nth-child(4) .pest-photo { background: #fef8e8; } /* termites - warm yellow */
.pest-card:nth-child(5) .pest-photo { background: #f2eef8; } /* rodents - light lavender */
.pest-card:nth-child(6) .pest-photo { background: #fef2f2; } /* spiders - light crimson */

/* ── Process section ───────────────────────────────────────── */
.process-section { background: var(--light-gray); }
.process-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-top: 3px solid var(--crimson);
}
.process-card h3 { color: #1a1a1a; }

/* ── About section ─────────────────────────────────────────── */
.about-section { background: #fff; }
.about-text h2 { color: #1a1a1a; }
.about-badge { background: rgba(206,16,23,.06); border-color: rgba(206,16,23,.15); color: var(--text-mid); }

/* ── Why choose ────────────────────────────────────────────── */
.why-choose { background: var(--light-gray); }
.why-card {
  background: #fff;
  border: 1px solid #e8eaed;
}
.why-card:hover { border-color: rgba(206,16,23,.2); box-shadow: var(--shadow-md); }
.why-card h3 { color: #1a1a1a; }
.why-icon-wrap { background: var(--crimson-light); }

/* ── Services section ──────────────────────────────────────── */
.services-section { background: #fff; }
.service-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-top: 4px solid var(--crimson);
}
.service-card h3 { color: #1a1a1a; }
.service-icon { background: var(--crimson-light); }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-section { background: var(--light-gray); }
.reviews-head h2 { color: #1a1a1a; }
.review-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-top: 3px solid transparent;
}
.review-card--featured { border-top-color: var(--crimson); }
.reviewer strong { color: #1a1a1a; }
.overall-rating { background: #fff; border: 1px solid #e8eaed; }
.rating-num { color: #1a1a1a; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-item { border-bottom: 1px solid #e8eaed; }
.faq-q { color: var(--text); }
.faq-q:hover { color: #1a1a1a; }

/* ── Location intro ────────────────────────────────────────── */
.location-intro { background: var(--light-gray); }
.location-intro-text h2 { color: #1a1a1a; }
.location-intro-text p { color: #4a4a4a; }
.location-services-list li { border-bottom: 1px solid #e8eaed; color: #2a2a2a; }
.location-services-list li::before { background: var(--crimson); }
.location-services-list li span { background: var(--crimson); }
.location-img-card { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

/* ── Values section ────────────────────────────────────────── */
.values-section { background: #fff; }
.value-card {
  background: var(--light-gray);
  border: 1px solid #e8eaed;
  border-top: 3px solid var(--crimson);
}
.value-card h3 { color: #1a1a1a; }
.value-icon { background: var(--crimson-light); }

/* ── HIW section ───────────────────────────────────────────── */
.hiw-section { background: var(--light-gray); }
.hiw-card { background: #fff; border: 1px solid #e8eaed; }
.hiw-card h3 { color: #1a1a1a; }

/* ── Locations hub ─────────────────────────────────────────── */
.locations-hub-section { background: var(--light-gray); }
.location-hub-card { background: #fff; border: 1px solid #e8eaed; }
.location-hub-card:hover { border-color: rgba(206,16,23,.3); box-shadow: var(--shadow-sm); }
.location-hub-card h3 { color: #1a1a1a; }
.location-hub-card p { color: var(--text-muted); }

/* ── Quote form ─────────────────────────────────────────────── */
.qcard { background: #fff; border: 1px solid #e8eaed; }
.qfield label { color: var(--text-mid); letter-spacing: .5px; }
.qinput {
  background: var(--light-gray);
  border-color: #dde0e4;
  color: var(--text);
}
.qinput:focus { border-color: var(--crimson); }
.qinput::placeholder { color: var(--text-muted); }
select.qinput {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237A7A7A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-color: var(--light-gray);
}
select.qinput option { background: #fff; color: var(--text); }
.qconsent { background: var(--light-gray); border-color: #e8eaed; }
.qconsent p { color: var(--text-muted); }

/* ── Mobile: dropdown stays light on mobile menu (dark bg context) ── */
@media (max-width: 700px) {
  .nav-links.open { background: #fff; border-top: 1px solid #e8eaed; }
  .nav-links.open .nav-item > a,
  .nav-links.open > a { color: var(--text-mid); border-bottom-color: #e8eaed; }
  .has-drop.open .dropdown {
    background: var(--light-gray) !important;
    border: 1px solid #e8eaed !important;
    border-radius: var(--radius-sm) !important;
    margin: 4px 0 8px !important;
  }
  .has-drop.open .dropdown a { color: var(--text-mid) !important; border-bottom-color: #e8eaed; }
  .has-drop.open .dropdown a:hover { color: var(--crimson) !important; background: rgba(206,16,23,.04) !important; }
}

/* ============================================================
   PHOTO SLOTS — Hero, About, Pests
   Each slot shows a photo when the file exists;
   falls back gracefully (logo card / emoji) when it doesn't.
   ============================================================ */

/* ── Hero photo column (desktop right panel) ────────────────── */
.hero-photo-col {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
  border: 1px solid rgba(206,16,23,.12);
  box-shadow: 0 6px 40px rgba(206,16,23,.08), 0 2px 12px rgba(0,0,0,.04);
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Logo fallback: hidden when photo loads, shown when .no-photo */
.hero-logo-fallback {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 52px 40px;
  height: 100%;
}
.hero-logo-fallback .hero-logo-img { max-width: 260px; }
.hero-photo-col.no-photo .hero-photo-img { display: none; }
.hero-photo-col:not(.no-photo) .hero-logo-fallback { display: none; }

/* ── Hero mobile photo strip ─────────────────────────────────── */
.hero-mobile-photo-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}
/* When photo fails: show the logo card instead */
.hero-mobile-photo.no-photo {
  background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
  border: 1px solid rgba(206,16,23,.1);
  border-radius: 16px;
  padding: 36px 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 24px rgba(206,16,23,.07);
}
.hero-mobile-photo.no-photo .hero-mobile-photo-img { display: none; }
.hero-mobile-photo:not(.no-photo) .hero-mobile-logo { display: none; }

/* ── About — owner portrait ──────────────────────────────────── */
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-owner-photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
/* Logo fallback */
.about-photo-fallback {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, #fff5f5 0%, #fdeaea 100%);
  border: 1px solid rgba(206,16,23,.1);
  border-radius: var(--radius);
}
.about-photo-wrap.no-photo .about-owner-photo { display: none; }
.about-photo-wrap:not(.no-photo) .about-photo-fallback { display: none; }

/* ── Pest card photos ────────────────────────────────────────── */
.pest-photo {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.pest-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform .35s ease;
}
.pest-card:hover .pest-img { transform: scale(1.04); }
.pest-photo-placeholder {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Tablet: hero becomes single-column, hide desktop photo col */
@media (max-width: 1100px) {
  .hero-photo-col { display: none; }
  .hero-mobile-photo { display: flex; }
}

/* btn-outline-brand on light sections (about, etc.) */
.about-section .btn-outline-brand,
.why-choose .btn-outline-brand,
.values-section .btn-outline-brand {
  color: var(--charcoal);
  border-color: var(--charcoal-mid);
}
.about-section .btn-outline-brand:hover,
.why-choose .btn-outline-brand:hover,
.values-section .btn-outline-brand:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

/* ── CTA section tech photo ──────────────────────────────────── */
.cta-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
}
.cta-tech-photo {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
  position: absolute;
  inset: 0;
}
.cta-logo-fallback {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px;
}
.cta-photo-wrap.no-photo .cta-tech-photo { display: none; }
.cta-photo-wrap:not(.no-photo) .cta-logo-fallback { display: none; }

/* ============================================================
   LOCATION PAGE CONTAINER FIX
   Location pages omit .container wrappers; these selectors
   apply max-width + padding to direct children of each section
   so content is constrained identically to service pages.
   ============================================================ */

/* page-hero: constrain direct-child elements */
.page-hero > h1,
.page-hero > .page-hero-eyebrow,
.page-hero > p {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  box-sizing: border-box;
}
.page-hero > .zip-input-group {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* why-choose: constrain section-header + why-grid when direct children */
.why-choose > .section-header,
.why-choose > .why-grid,
.locations-hub-section > .section-header,
.locations-hub-section > .locations-hub-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  box-sizing: border-box;
}

/* ── Mobile overrides for location-page container-fix elements ── */
@media (max-width: 700px) {
  /* Reduce horizontal padding from 28px → 16px to match container */
  .page-hero > h1,
  .page-hero > .page-hero-eyebrow,
  .page-hero > p {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Zip pill in location page-hero: full width, centered */
  .page-hero > .zip-input-group {
    width: 100%;
    max-width: 320px;
    display: flex;
  }
  /* Location intro inner: reduce side padding */
  .location-intro-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* CTA inner: reduce side padding */
  .cta-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Location hub / why-choose direct children: reduce padding */
  .why-choose > .section-header,
  .why-choose > .why-grid,
  .locations-hub-section > .section-header,
  .locations-hub-section > .locations-hub-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
