/* ==========================================================================
   Slap A Bug Pest Control — high-conversion landing page
   Design system: unified card spec, consistent spacing scale, scroll reveal.
   Palette: navy #0b1f3a · blue #0d6efd · orange #ff6a1a · green #1f9d55
   ========================================================================== */
:root {
  --blue: #0d6efd;
  --blue-dark: #0a58ca;
  --navy: #0b1f3a;
  --navy-2: #0f2c54;
  --orange: #ff6a1a;
  --orange-dark: #e85600;
  --green: #1f9d55;
  --ink: #16263d;
  --muted: #5c6d84;
  --line: #e2e9f5;
  --bg: #f5f8ff;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 22px;
  /* One shadow scale used everywhere */
  --shadow-sm: 0 4px 14px rgba(11,31,58,.07);
  --shadow: 0 8px 26px rgba(11,31,58,.10);
  --shadow-lg: 0 20px 52px rgba(11,31,58,.20);
  --max: 1180px;
  /* spacing scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 var(--sp-xs);
}
p { margin: 0 0 12px; }

.container { width: min(var(--max), 100% - 36px); margin: 0 auto; }
.container.narrow { width: min(820px, 100% - 36px); }

/* ── Scroll-reveal ────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .55s ease var(--delay, 0ms),
    transform .55s ease var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── Unified card ─────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card--hover {
  transition: transform .18s ease, box-shadow .18s ease;
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-xs); padding: 11px 22px;
  border-radius: 999px; font-weight: 800; font-size: 15px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn.full { width: 100%; display: flex; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 18px rgba(255,106,26,.32);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-call {
  background: var(--green); color: #fff;
  box-shadow: 0 6px 18px rgba(31,157,85,.28);
}
.btn-call:hover { background: #188144; }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar { background: var(--navy); color: #cfe0ff; font-size: 13px; }
.topbar-inner {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  padding: 7px 0; font-weight: 600;
}
.topbar-item { white-space: nowrap; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(11,31,58,.12); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 10px 0;
  transition: padding .25s ease;
}
.site-header.scrolled .nav { padding: 7px 0; }

.brand-wrap { display: flex; align-items: center; gap: 12px; }
.logo-image {
  height: 80px; width: 80px; object-fit: contain;
  mix-blend-mode: multiply;
  transition: height .25s ease, width .25s ease;
}
.site-header.scrolled .logo-image { height: 60px; width: 60px; }

.brand-text { display: flex; flex-direction: column; line-height: .92; }
.brand { font-size: 24px; color: var(--navy); letter-spacing: .5px; }
.subbrand {
  font-size: 12px; color: var(--blue); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 22px; font-weight: 700; font-size: 14px; }
.nav-links a { color: var(--ink); padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav-links a:hover,
.nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); }

.header-call { padding: 8px 16px; }
.call-icon { font-size: 17px; }
.call-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.call-text small { font-size: 10px; font-weight: 700; opacity: .9; text-transform: uppercase; letter-spacing: .5px; }
.call-text strong { font-size: 15px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 60px 0 56px;
  background:
    radial-gradient(circle at 85% -10%, rgba(13,110,253,.18), transparent 45%),
    linear-gradient(165deg, #0b1f3a 0%, #123a72 55%, #0d6efd 130%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.14); color: #dbe8ff;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(36px, 5vw, 60px); color: #fff; margin-bottom: 14px; }
.hero-sub { font-size: 17px; color: #d6e3f7; max-width: 520px; }
.hero-points {
  list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px;
}
.hero-points li {
  position: relative; padding-left: 28px; font-weight: 600; color: #eaf2ff; font-size: 15px;
}
.hero-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
}
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.cta-note { margin-top: 10px; font-size: 13px; color: #cdddf6; }
.cta-note a { color: #fff; font-weight: 800; text-decoration: underline; }

/* Contact card in hero */
.hero-contact-wrap { position: relative; z-index: 1; }
.form-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); padding: var(--sp-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.4);
}
.form-title { font-size: 26px; color: var(--navy); margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.form-trust { font-size: 12px; color: var(--muted); text-align: center; margin: 10px 0 0; }

.contact-rows { display: grid; gap: 10px; margin-bottom: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fbfcff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.contact-row:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(13,110,253,.12);
  transform: translateY(-1px);
}
.cr-ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: #e7f0ff; display: grid; place-items: center; font-size: 17px;
}
.cr-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.cr-text small {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .4px;
}
.cr-text strong { font-size: 19px; color: var(--navy); }
.cr-email { font-size: 14px !important; word-break: break-all; }

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 18px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; font-weight: 700; font-size: 14px; color: var(--navy);
}
.trust-ico { color: var(--blue); display: inline-flex; }
.trust-ico svg { width: 20px; height: 20px; }          /* ← was 28px */

/* ── Section base ────────────────────────────────────────────────────────── */
.section { padding: var(--sp-xl) 0; }
.section-head { margin-bottom: 34px; }
.section-head.center {
  text-align: center; max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.section-head h2 { font-size: clamp(28px, 3.8vw, 42px); color: var(--navy); }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }
.section-tag {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  background: #e7f0ff; color: var(--blue-dark);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 10px;
}
.section-tag.alt { background: rgba(255,255,255,.16); color: #eaf2ff; }

/* ── Services ─────────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: var(--sp-md); }
.service-ico {
  display: inline-flex; width: 40px; height: 40px; border-radius: 11px;  /* ← was 54px */
  background: linear-gradient(135deg, var(--blue), #4aa0ff); color: #fff;
  align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0;
}
.service-ico svg { width: 20px; height: 20px; }        /* ← was 28px */
.service-card h3 { font-size: 20px; color: var(--navy); }
.service-card p { color: var(--muted); margin: 0; font-size: 14px; }

/* ── Pests ────────────────────────────────────────────────────────────────── */
.pests-section { background: #fff; }
.pests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Pest photo cards match service card proportions */
.pest-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.pest-img-wrap { position: relative; overflow: hidden; }
.pest-img-wrap img {
  width: 100%; height: 190px; object-fit: cover;
  transition: transform .4s ease;
}
.pest-card:hover .pest-img-wrap img { transform: scale(1.04); }
.pest-body { padding: var(--sp-md); display: flex; flex-direction: column; flex: 1; }
.pest-body h3 { font-size: 22px; color: var(--navy); }
.pest-body p { color: var(--muted); font-size: 14px; flex: 1; }
.pest-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 700; font-size: 14px; margin-top: 10px;
}
.pest-cta:hover { color: var(--blue-dark); }

/* More-pests chips */
.more-pests-wrap { margin-top: 32px; text-align: center; }
.more-pests-label {
  font-size: 14px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px;
}
.pest-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pest-chip {
  position: relative; overflow: hidden;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font-weight: 700; font-size: 14px;
  transition: border-color .15s ease, color .15s ease, background .15s ease, transform .15s ease;
  cursor: pointer;
}
.pest-chip:hover {
  border-color: var(--orange); color: var(--orange);
  background: #fff7f3; transform: translateY(-2px);
}
.chip-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,106,26,.18);
  animation: ripple .6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(1); opacity: 0; }
}

/* ── Meet the Family ────────────────────────────────────────────────────── */
.family-section { background: var(--bg); }

.family-photo-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin-top: 32px;
}
.family-photo-wrap img {
  width: 100%; display: block;
  max-height: 520px; object-fit: cover; object-position: center 30%;
}
.family-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,31,58,.82) 0%, transparent 100%);
  padding: 36px 28px 22px;
}
.family-caption-inner {
  display: flex; flex-direction: column; gap: 4px;
  color: #fff;
}
.family-caption-inner strong { font-size: 18px; font-weight: 800; }
.family-caption-inner span { font-size: 13px; opacity: .88; letter-spacing: .3px; }

.family-values {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 32px;
}
.family-value-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--sp-md);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.family-value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fv-ico { font-size: 28px; line-height: 1; }
.family-value-item strong { font-size: 15px; color: var(--navy); }
.family-value-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

.family-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 32px;
}

/* ── Why us ──────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.why-media { position: relative; }
.why-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-height: 520px; object-fit: contain; background: #f0f6ff;
}
.why-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 13px;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow);
}
.why-copy h2 { font-size: clamp(28px, 3.8vw, 44px); color: var(--navy); }
.why-list { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 10px; }
.why-list li { position: relative; padding-left: 28px; color: var(--ink); font-size: 15px; }
.why-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 800; display: grid; place-items: center;
}
.why-list.light li { color: #e4efff; }
.why-list.light li::before { background: var(--orange); }

/* ── Process ──────────────────────────────────────────────────────────────── */
.process-section { background: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  position: relative;
}
/* Connector line between steps */
.steps-grid::before {
  content: "";
  position: absolute; top: 40px; left: calc(16.67% + 12px); right: calc(16.67% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 2px; z-index: 0;
}
.step-card {
  padding: var(--sp-md) var(--sp-sm) var(--sp-md);
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--orange), #ff9a5a); color: #fff;
  font-family: "Barlow Condensed", sans-serif; font-size: 24px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(255,106,26,.32);
}
.step-card h3 { font-size: 20px; color: var(--navy); }
.step-card p { color: var(--muted); margin: 0; font-size: 14px; }

/* ── Commercial ──────────────────────────────────────────────────────────── */
.commercial-section { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.commercial-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.commercial-copy h2 { font-size: clamp(26px, 3.4vw, 40px); color: #fff; }
.commercial-copy p { color: #cdddf6; font-size: 15px; }
.commercial-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-height: 520px; object-fit: contain; background: rgba(255,255,255,.06); }

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 10px;
  text-decoration: none; color: var(--ink); font-size: 15px;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 18px; transition: border-color .15s, box-shadow .15s;
}
.reviews-google-link:hover { border-color: #fbbc04; box-shadow: 0 2px 12px rgba(251,188,4,.18); }
.reviews-stars-lg { color: #fbbc04; font-size: 20px; letter-spacing: 1px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.reviews-grid .review-card:nth-child(4) { grid-column: 1 / 2; }
.reviews-grid .review-card:nth-child(5) { grid-column: 2 / 3; }
.reviews-cta { text-align: center; margin-top: 28px; }
.review-card { padding: var(--sp-md); display: flex; flex-direction: column; }
.stars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card p { font-size: 15px; color: var(--ink); flex: 1; font-style: italic; line-height: 1.6; }
.review-name { display: flex; flex-direction: column; gap: 2px; font-weight: 700; color: var(--navy); font-size: 14px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.review-location { font-weight: 400; color: var(--muted); font-size: 12px; }

/* ── Google badge (hero) ─────────────────────────────────────────────────── */
.social-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); font-size: 14px;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; background: #fff; transition: border-color .15s, box-shadow .15s;
  width: fit-content;
}
.google-badge:hover { border-color: #fbbc04; box-shadow: 0 2px 12px rgba(251,188,4,.2); }
.google-badge-stars { color: #fbbc04; font-size: 16px; letter-spacing: 1px; }
.google-badge-text { font-size: 13px; color: var(--ink); }
.facebook-badge {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); font-size: 14px;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.facebook-badge svg { color: #1877f2; flex-shrink: 0; }
.facebook-badge:hover { border-color: #1877f2; box-shadow: 0 2px 12px rgba(24,119,242,.2); }
.facebook-badge-text { font-size: 13px; color: var(--ink); }
.contact-row--facebook .cr-ico--facebook { color: #1877f2; display: flex; align-items: center; }

/* ── Topbar stars link ───────────────────────────────────────────────────── */
.topbar-stars { color: #fbbc04 !important; font-weight: 700; text-decoration: none; }
.topbar-stars:hover { text-decoration: underline; }

/* ── Areas ───────────────────────────────────────────────────────────────── */
.areas-section { background: #fff; }
.area-wrap { display: grid; grid-template-columns: 1fr .9fr; gap: 28px; align-items: stretch; }
.area-list { display: grid; gap: 14px; margin-top: 16px; }
.area-box { padding: var(--sp-sm) 20px; }
.area-box strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.area-phone { color: var(--blue); font-weight: 800; font-size: 17px; }
.cta-panel {
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cta-panel h3 { font-size: 28px; }
.cta-panel p { color: #e6f0ff; font-size: 15px; }
.cta-stack { display: grid; gap: 10px; margin: 10px 0 16px; }
.panel-meta { display: grid; gap: 6px; font-size: 13px; color: #e6f0ff; margin-top: auto; }
.panel-meta a { color: #fff; text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 20px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 800; color: var(--navy);
  font-size: 17px; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 16px; height: 16px; flex: none; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-mark::before { width: 14px; height: 2px; }
.faq-mark::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item[open] .faq-mark::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item p { color: var(--muted); margin: 0 0 14px; font-size: 15px; }

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; padding: 56px 0; text-align: center;
}
.final-cta h2 { font-size: clamp(28px, 4.2vw, 48px); }
.final-cta p { font-size: 17px; margin-bottom: 22px; color: #fff5ee; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #b9cae6; padding: 48px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; gap: 14px; }
.footer-logo {
  height: 80px; width: 80px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 4px; flex: none;
}
.footer-brand strong { color: #fff; font-size: 16px; display: block; margin-bottom: 4px; }
.footer-col h4 { color: #fff; font-size: 17px; margin: 0 0 10px; }
.footer-col p { margin: 0 0 8px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.social-link { display: inline-flex; align-items: center; gap: 7px; color: #8da6cc !important; font-size: 13px; font-weight: 600; text-decoration: none !important; transition: color .15s; }
.social-link:hover { color: #fff !important; }
.footer-bottom {
  margin-top: 30px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #8da6cc;
}

/* ── Mobile sticky bar ───────────────────────────────────────────────────── */
.mobile-bar { display: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
/* ── Hamburger button ────────────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px; border: none; background: none;
  cursor: pointer; border-radius: 8px; transition: background .15s;
}
.hamburger:hover { background: rgba(13,110,253,.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.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); }

/* ── Mobile nav drawer ───────────────────────────────────────────────────── */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--white); z-index: 200;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(11,31,58,.18);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(11,31,58,.5); opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer-inner { display: flex; flex-direction: column; gap: 0; height: 100%; }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
  background: var(--navy);
}
.drawer-brand { font-weight: 800; font-size: 15px; color: #fff; }
.drawer-close {
  background: none; border: none; color: #fff; font-size: 20px;
  cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.drawer-close:hover { background: rgba(255,255,255,.15); }

.drawer-calls { display: flex; flex-direction: column; gap: 0; }
.drawer-call-btn {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 20px; text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.drawer-call-btn:hover { background: #f0f6ff; }
.drawer-call-btn small { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.drawer-call-btn strong { font-size: 17px; color: var(--navy); font-weight: 800; }
.drawer-call-btn--alt strong { color: var(--blue); }

.drawer-links { display: flex; flex-direction: column; flex: 1; }
.drawer-link {
  display: block; padding: 16px 20px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: background .15s, color .15s;
}
.drawer-link:hover { background: #f0f6ff; color: var(--blue); }

.drawer-email { margin: 16px; }

/* ── Scroll-to-top button ────────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed; right: 16px; bottom: 88px; z-index: 58;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none;
  font-size: 20px; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px) scale(.9);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--blue); }

@media (max-width: 980px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .hero-grid,
  .why-grid,
  .commercial-grid,
  .area-wrap { grid-template-columns: 1fr; }
  .services-grid,
  .pests-grid,
  .steps-grid,
  .family-values { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .why-media { order: 2; }
  .commercial-media { order: -1; }
  .hero-contact-wrap { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps-grid::before { display: none; }
  /* Reviews: horizontal swipe carousel */
  .reviews-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; padding-bottom: 12px;
    margin-left: -16px; margin-right: -16px;
    padding-left: 16px; padding-right: 16px;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 80%; scroll-snap-align: start; }
  .reviews-grid .review-card:nth-child(4),
  .reviews-grid .review-card:nth-child(5) { grid-column: unset; }
}

@media (max-width: 600px) {
  .section { padding: 44px 0; }
  .hero { padding: 38px 0 40px; }
  /* Topbar: hide text items, show only stars on mobile */
  .topbar-hide-sm { display: none; }
  .topbar-stars { font-size: 13px; }
  .call-text { display: none; }
  .header-call { padding: 9px 14px; }
  .call-icon { font-size: 19px; }
  .services-grid,
  .pests-grid,
  .steps-grid,
  .family-values,
  .trust-grid { grid-template-columns: 1fr; }
  .family-photo-wrap img { max-height: 280px; object-position: center 20%; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 100%; }
  body { padding-bottom: 76px; }

  /* Pest chips: bigger tap targets */
  .pest-chip { padding: 13px 22px; font-size: 15px; }

  /* FAQ: bigger tap targets */
  .faq-item summary { padding: 18px 44px 18px 18px; font-size: 16px; min-height: 52px; }

  /* Body copy size bump */
  .review-card p, .service-card p, .pest-body p { font-size: 15px; }

  /* Mobile bar: two regional numbers */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    box-shadow: 0 -4px 20px rgba(11,31,58,.20);
  }
  .mbar-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 10px 8px; text-align: center; color: #fff; text-decoration: none;
    gap: 1px;
  }
  .mbar-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; opacity: .88; }
  .mbar-number { font-size: 13px; font-weight: 800; }
  .mbar-call { background: var(--green); }
  .mbar-area { background: var(--blue); }

  /* Scroll-to-top above mobile bar */
  .scroll-top-btn { bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card--hover:hover { transform: none; }
}
