/*
Theme Name: Smart pest Irving — AI Website Factory
Author: AI Website Factory
Description: High-converting local pest control site. Activate to auto-publish all 19 pages.
Version: 3.0.0
*/

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2140;
  --green:       #16a34a;
  --green-light: #22c55e;
  --green-pale:  #f0fdf4;
  --amber:       #f59e0b;
  --red:         #dc2626;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --muted:       #64748b;
  --light:       #f1f5f9;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.15);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.22; color: var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.55rem,3.5vw,2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; margin-bottom: .4rem; }
p { margin-bottom: 1rem; color: var(--text); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .35rem; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ─────────────────────────────────────────────
   TOP UTILITY BAR
───────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: #94a3b8;
  font-size: .82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #e2e8f0; font-weight: 600; }
.top-bar a:hover { color: var(--green-light); }
.top-bar-phone {
  background: #15803d;
  color: #fff !important;
  font-weight: 800 !important;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: .88rem;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo span { color: var(--green); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.site-nav > a:hover { background: var(--light); color: var(--green); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none;
  border: none;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background var(--transition), color var(--transition);
}
.nav-drop > button:hover,
.nav-drop.active > button { background: var(--light); color: var(--green); }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}
.nav-drop.active .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 9px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-drop-menu a:hover { background: var(--green-pale); color: var(--green); }

/* Nav CTA buttons */
.nav-cta {
  color: var(--navy) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
}
.nav-cta:hover { color: var(--green) !important; }
.nav-inspect {
  background: #15803d !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 800 !important;
  font-size: .88rem !important;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}
.nav-inspect:hover { background: #15803d !important; transform: translateY(-1px) !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}

/* ─────────────────────────────────────────────
   MOBILE STICKY CTA BAR
───────────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 10px 16px;
}
.mobile-cta-row { display: flex; gap: 10px; }
.mobile-cta-call {
  flex: 1;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 800;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.mobile-cta-quote {
  flex: 1;
  background: #15803d;
  color: var(--white) !important;
  font-weight: 800;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2f5a 60%, #0a3d2e 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  color: #86efac;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.hero-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.7;
}
.hero-sub a { color: var(--green-light); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero SM (inner pages) */
.hero-sm {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2f5a 100%);
  padding: 56px 0 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(34,197,94,.06));
}
.hero-sm .hero-inner { position: relative; z-index: 1; }
.hero-sm h1 { color: var(--white); font-size: clamp(1.7rem,4vw,2.6rem); margin-bottom: 16px; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #15803d;
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,.45);
  color: var(--white) !important;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.45);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn-sidebar {
  display: block;
  width: 100%;
  background: #15803d;
  color: var(--white) !important;
  font-weight: 800;
  font-size: .95rem;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}
.btn-sidebar:hover { background: #15803d; transform: translateY(-1px); color: #fff !important; }
.btn-sidebar-outline {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  text-align: center;
  margin-top: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-sidebar-outline:hover { border-color: var(--green); background: var(--green-pale); color: var(--navy) !important; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy) !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-cta-white:hover { background: #f0fdf4; transform: translateY(-2px); color: var(--navy) !important; }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.55);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ─────────────────────────────────────────────
   PROOF BAR (stats strip)
───────────────────────────────────────────── */
.proof-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.proof-bar-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.proof-item + .proof-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.proof-num {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label {
  font-size: .78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.trust-strip {
  background: var(--green-pale);
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
  padding: 16px 0;
}
.trust-strip-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  color: #15803d;
}
.trust-icon { font-size: 1.1rem; }

/* ─────────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ─────────────────────────────────────────────
   SERVICE CARDS GRID
───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--green); }
.card p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* ─────────────────────────────────────────────
   COMPARE / WHY US GRID
───────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.compare-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.compare-card.best {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.compare-card.alt { border-color: #e2e8f0; background: #fafafa; }
.compare-badge {
  display: inline-block;
  background: #15803d;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.compare-card ul { padding-left: 0; list-style: none; }
.compare-card li { padding: 5px 0; font-size: .92rem; border-bottom: 1px solid var(--border); }
.compare-card li:last-child { border-bottom: none; }

/* ─────────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0;
  position: relative;
  counter-reset: step;
  margin: 32px 0;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 38px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  margin: 0 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), #0f2f5a);
  color: var(--green-light);
  font-weight: 900;
  font-size: .95rem;
  border-radius: 50%;
  margin-bottom: 18px;
  letter-spacing: -.02em;
  box-shadow: 0 4px 12px rgba(10,22,40,.25);
}
.step h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.step p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* ─────────────────────────────────────────────
   ANSWER BOX (AEO)
───────────────────────────────────────────── */
.answer-box {
  background: linear-gradient(135deg, #f0fdf4, #e0f7ea);
  border: 2px solid #86efac;
  border-left: 5px solid var(--green);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
}
.answer-box p { margin-bottom: 0; color: var(--text); }
.answer-box a { font-weight: 700; color: var(--green); }

/* ─────────────────────────────────────────────
   PRICING TABLE
───────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 28px 0;
  font-size: .93rem;
}
.price-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.price-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--off-white); }
.price-table tbody tr:hover { background: var(--green-pale); }
.price-table strong { color: var(--navy); }

/* ─────────────────────────────────────────────
   REVIEW CARDS
───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 4rem;
  color: var(--green-light);
  opacity: .25;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 900;
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────── */
.faq-list { margin: 32px 0; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: #86efac; box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
  gap: 16px;
}
.faq-q span:first-child {
  font-weight: 700;
  font-size: .96rem;
  color: var(--navy);
  line-height: 1.4;
}
.faq-q.open { background: var(--green-pale); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.faq-q.open .faq-icon {
  background: #15803d;
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 18px 22px 22px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }
.faq-a p { font-size: .93rem; color: var(--text); margin-bottom: 0; line-height: 1.7; }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2f5a 50%, #0a3d2e 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(34,197,94,.1), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom: 12px; }
.cta-band p { color: #94a3b8; font-size: 1rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────────── */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-main { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}
.sidebar-card address { font-size: .9rem; line-height: 1.7; color: var(--text); }
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li {
  padding: 7px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--navy); font-weight: 600; }
.sidebar-list a:hover { color: var(--green); }

/* ─────────────────────────────────────────────
   LOCATIONS GRID
───────────────────────────────────────────── */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.location-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: .83rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--border); margin: 0 2px; }
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 72px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--green-light); }
.footer-col p { font-size: .9rem; line-height: 1.7; color: #94a3b8; margin-bottom: 0; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 4px 0; }
.footer-links a {
  color: #94a3b8;
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-links li:not(:has(a)) { font-size: .88rem; color: #64748b; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom p { font-size: .78rem; color: #4b5568; margin: 0; }
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #94a3b8; }

/* ─────────────────────────────────────────────
   SPEAKABLE (AEO)
───────────────────────────────────────────── */
.speakable { /* no visual change; semantic hook for AEO */ }

/* ─────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────── */
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .steps-grid::after { display: none; }
  .steps-grid { gap: 14px; }
  .step { margin: 0; }
}

@media (max-width: 768px) {
  /* Show hamburger */
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  /* Hide desktop nav */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-drop { width: 100%; }
  .nav-drop > button { width: 100%; justify-content: space-between; padding: 12px 16px; font-size: 1rem; }
  .nav-drop-menu { position: static; box-shadow: none; border: 1px solid var(--border); margin-top: 6px; }
  .nav-inspect { text-align: center; padding: 13px 20px !important; }

  /* Show mobile CTA bar */
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }

  .hero { padding: 56px 0 64px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; text-align: center; }

  .section { padding: 52px 0; }
  .proof-bar-grid { gap: 0; }
  .proof-item { min-width: 120px; padding: 0 16px; }
  .trust-strip-row { gap: 18px; }
  .compare-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .content-wrap { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .price-table { font-size: .82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { height: 58px; }
  .site-logo { font-size: 1.2rem; }
}

/* ─────────────────────────────────────────────
   STOCK IMAGE STYLES
───────────────────────────────────────────── */

/* Hero with background image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
}

/* Service card with top image */
.card-img-wrap {
  margin: -28px -24px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 160px;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.05); }

/* About / split section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-img-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.about-img-badge .badge-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
}

/* Process steps with image row */
.process-section { background: var(--off-white); }
.process-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  height: 320px;
  position: relative;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.process-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.65) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 40px;
}
.process-img-overlay h2 { color: var(--white); margin-bottom: 8px; }
.process-img-overlay p { color: #cbd5e1; font-size: 1rem; margin-bottom: 0; }

/* Gallery / before-after row */
.photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px 0;
}
.photo-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  position: relative;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,.75));
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 20px 12px 10px;
}

/* Hero SM with bg image */
.hero-sm { position: relative; }
.hero-sm .hero-img {
  opacity: .12;
}

/* Testimonial section with bg image */
.reviews-section-bg {
  position: relative;
  overflow: hidden;
}
.reviews-section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .06;
  z-index: 0;
}
.reviews-section-bg .container { position: relative; z-index: 1; }

/* CTA with background image */
.cta-band { position: relative; }
.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .08;
  z-index: 0;
}

/* Service hero image strip */
.service-hero-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .process-img { height: 200px; }
  .process-img-overlay { padding: 24px; }
  .service-hero-photo { height: 180px; }
}
@media (max-width: 480px) {
  .photo-row { grid-template-columns: 1fr 1fr; }
  .photo-tile { height: 130px; }
}

/* ─────────────────────────────────────────────
   PERFORMANCE & ACCESSIBILITY
───────────────────────────────────────────── */

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Improve image rendering on all screens */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure tap targets meet 44×44 px minimum on mobile */
@media (max-width: 768px) {
  .site-nav > a,
  .nav-drop > button {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* Prevent text overflow on small screens */
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* Focus visible for keyboard navigation (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}
