/* SAVE AS: base-styles.css */

/* ============================================================
   TERMITE PROS LOUISIANA — BASE STYLESHEET
   Shared across every page. No <style> tags in HTML files.
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Shared tokens */
  --navy:        #0D1B2A;
  --navy-mid:    #1a2f47;
  --slate:       #5B6F8A;
  --cloud:       #EDF2F7;
  --white:       #ffffff;
  --amber:       #D97706;
  --green:       #16a34a;
  --red:         #DC2626;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 2px 12px rgba(13,27,42,.10);
  --shadow-lg:   0 8px 32px rgba(13,27,42,.18);
  --transition:  all .22s ease;
  --font-body:   'Manrope', sans-serif;
  --font-head:   'Playfair Display', serif;
  --container:   1180px;
  --pad:         24px;
}

/* Theme — Pest Control (green) */
.theme-pest {
  --primary:       #14532D;
  --primary-mid:   #1a6b38;
  --accent:        #CA8A04;
  --accent-lit:    #F59E0B;
  --primary-pale:  #DCFCE7;
  --hero-bg:       #052E16;
}

/* Theme — Plumbing */
.theme-plumbing {
  --primary:       #1B4FD8;
  --primary-mid:   #2563eb;
  --accent:        #F59E0B;
  --accent-lit:    #FBBF24;
  --primary-pale:  #EFF6FF;
  --hero-bg:       #0F2460;
}

/* Theme — Roofing */
.theme-roofing {
  --primary:       #78350F;
  --primary-mid:   #92400e;
  --accent:        #DC2626;
  --accent-lit:    #EF4444;
  --primary-pale:  #FEF3C7;
  --hero-bg:       #3D1A07;
}

/* Theme — Garage */
.theme-garage {
  --primary:       #1E3A5F;
  --primary-mid:   #1e4976;
  --accent:        #F97316;
  --accent-lit:    #FB923C;
  --primary-pale:  #FFF7ED;
  --hero-bg:       #0F1E33;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Mobile sticky bar offset */
@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}

img, iframe, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-mid);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 64px 0;
}

.section-alt {
  padding: 64px 0;
  background: var(--cloud);
}

.section-dark {
  padding: 64px 0;
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-lit);
  border-color: var(--accent-lit);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--primary-pale);
  color: var(--primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: .85rem;
}


/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: .82rem;
  color: #cbd5e1;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-avail {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.topbar-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 600;
  color: #e2e8f0;
}

.topbar-phone a {
  color: var(--accent-lit);
  font-weight: 700;
  font-size: .88rem;
}

.topbar-phone a:hover {
  color: var(--white);
}

@media (max-width: 480px) {
  .topbar { display: none; }
}


/* ============================================================
   STICKY HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.15;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-item {
  position: relative;
}

.nav-link, .nav-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  border-radius: var(--radius);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-toggle:hover {
  background: var(--primary-pale);
  color: var(--primary);
}

.nav-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .22s;
}

.nav-item.open .nav-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown panels */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  transform-origin: top center;
  z-index: 300;
}

.dropdown-locations {
  min-width: 280px;
  left: auto;
  right: 0;
  transform: none;
  max-height: 420px;
  display: flex;
  flex-direction: column;
}

.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-search {
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .85rem;
  width: 100%;
  outline: none;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.dropdown-search:focus {
  border-color: var(--primary);
}

.dropdown-city-list {
  overflow-y: auto;
  flex: 1;
  max-height: 300px;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .87rem;
  color: var(--navy);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--primary-pale);
  color: var(--primary);
}



.dropdown-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 6px 0;
}

.dropdown-footer-link {
  display: flex !important;
  justify-content: space-between;
  font-weight: 600 !important;
  color: var(--primary) !important;
  border-top: 1px solid #e2e8f0;
  margin-top: 4px;
  padding-top: 8px !important;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.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); }

@media (max-width: 768px) {
  .desktop-nav  { display: none; }
  .header-phone { display: none; }
  .header-right .btn { display: none; }
  .hamburger    { display: flex; }
}

@media (max-width: 1024px) {
  .desktop-nav { gap: 2px; }
  .nav-link, .nav-toggle { padding: 7px 10px; font-size: .84rem; }
}


/* ============================================================
   MOBILE DRAWER
   ============================================================ */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  transition: var(--transition);
}

.drawer-close:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
}

.drawer-body {
  padding: 16px 20px;
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}

.drawer-link:hover {
  color: var(--primary);
}

/* Drawer accordion */
.drawer-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
}

.drawer-acc-icon {
  font-size: 1.1rem;
  transition: transform .22s;
  font-style: normal;
}

.drawer-acc-toggle.open .drawer-acc-icon {
  transform: rotate(45deg);
}

.drawer-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.drawer-acc-body.open {
  max-height: 1800px;
}

.drawer-acc-body a {
  display: block;
  padding: 10px 12px;
  font-size: .92rem;
  color: var(--slate);
  border-bottom: 1px solid #f8fafc;
  border-radius: 6px;
}

.drawer-acc-body a:hover {
  color: var(--primary);
  background: var(--primary-pale);
}

.drawer-city-search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  margin: 8px 0;
  outline: none;
}

.drawer-city-search:focus {
  border-color: var(--primary);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  position: sticky;
  bottom: 0;
  background: var(--white);
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.drawer-call-btn:hover {
  background: var(--primary-mid);
  color: var(--white);
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb-bar {
  background: var(--cloud);
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
  font-size: .82rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--slate);
}

.breadcrumb a {
  color: var(--slate);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: #cbd5e1;
}

.breadcrumb span:last-child {
  color: var(--navy);
  font-weight: 600;
}


/* ============================================================
   HERO — HOME PAGE
   ============================================================ */

.hero-home {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--primary) 50%, var(--navy) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-home::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");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}

.hero-home h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-home h1 span {
  color: var(--accent-lit);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

/* Stats row */
.stats-row {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-lit);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

@media (max-width: 600px) {
  .stats-row { padding: 18px 16px; gap: 12px; }
  .stat-item { padding: 8px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:last-child { border-bottom: none; }
}


/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.hero-inner {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--primary) 100%);
  padding: 48px 0;
}

.hero-inner-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent-lit);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

.hero-inner h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.hero-inner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.hero-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
}

.hero-call-link:hover {
  background: var(--accent-lit);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.service-card .learn-more {
  font-size: .87rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card .learn-more:hover {
  gap: 8px;
}


/* ============================================================
   WHY US
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.why-card h3 {
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .9rem;
  color: var(--slate);
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.step-item {
  text-align: center;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--primary-pale);
}

.step-item h3 {
  margin-bottom: .5rem;
}

.step-item p {
  font-size: .9rem;
  color: var(--slate);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps-grid::before { display: none; }
}


/* ============================================================
   CITY GRID
   ============================================================ */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.city-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  text-decoration: none;
}

.city-card:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.city-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.2rem;
  font-size: .95rem;
}

.view-all-link:hover {
  gap: 10px;
}

/* City card (location hub) */
.location-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.location-card h3 {
  font-size: 1rem;
  margin-bottom: .3rem;
}

.location-card .county {
  font-size: .8rem;
  color: var(--slate);
  margin-bottom: .8rem;
}

.location-card .get-service {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.locations-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .locations-grid-4col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .locations-grid-4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .locations-grid-4col { grid-template-columns: 1fr; }
}


/* ============================================================
   REVIEW CARDS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  color: var(--accent-lit);
  font-size: 1.1rem;
}

.review-text {
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: .9rem;
}

.review-location {
  font-size: .8rem;
  color: var(--slate);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 100px;
  padding: 2px 9px;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 4px;
}


/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-thumb {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.blog-thumb-green  { background: linear-gradient(135deg, #14532D, #1a6b38); }
.blog-thumb-amber  { background: linear-gradient(135deg, #78350F, #CA8A04); }
.blog-thumb-blue   { background: linear-gradient(135deg, #1B4FD8, #0D1B2A); }
.blog-thumb-teal   { background: linear-gradient(135deg, #115e59, #0d9488); }
.blog-thumb-purple { background: linear-gradient(135deg, #4c1d95, #7c3aed); }

.blog-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.5);
  color: var(--white);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.blog-body {
  padding: 20px 22px;
}

.blog-date {
  font-size: .78rem;
  color: var(--slate);
  margin-bottom: .5rem;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--navy);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: .87rem;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.6;
}

.read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  gap: 8px;
}

/* Blog index category filters */
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.cat-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  background: transparent;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq-q:hover {
  background: var(--primary-pale);
}

.faq-q.open {
  background: var(--primary-pale);
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.faq-q.open .faq-icon {
  background: var(--primary);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a.open {
  max-height: 500px;
}

.faq-a-inner {
  padding: 4px 22px 20px;
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.75;
}

.faq-a-inner a {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ category groups */
.faq-group-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-pale);
}


/* ============================================================
   CTA BANDS
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-lit);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.cta-phone-link:hover {
  color: var(--white);
}

.cta-avail {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
}

.cta-band-mid {
  background: var(--primary-pale);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-band-mid h3 {
  color: var(--primary);
  margin-bottom: .5rem;
}

.cta-band-mid p {
  color: var(--slate);
  margin-bottom: 1.2rem;
  font-size: .95rem;
}


/* ============================================================
   PRICING TABLE
   ============================================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin: 1rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
}

.pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
  color: var(--navy);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: var(--cloud);
}

.price-range {
  font-weight: 700;
  color: var(--primary);
}


/* ============================================================
   TWO-COLUMN LAYOUT (city pages)
   ============================================================ */

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { order: -1; }
}

/* Sidebar */
.sidebar {}

.sidebar-call-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-call-box h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.sidebar-call-box p {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  margin-bottom: 1rem;
}

.sidebar-phone {
  display: block;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: .5rem;
}

.sidebar-phone:hover {
  background: var(--accent-lit);
  color: var(--white);
}

.sidebar-avail {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

.sidebar-box {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-box h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--slate);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 500;
}

.sidebar-link:last-child {
  border-bottom: none;
}

.sidebar-link:hover {
  color: var(--primary);
}

.sidebar-city-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .87rem;
  color: var(--navy);
}

.sidebar-city-link:last-child {
  border-bottom: none;
}

.sidebar-city-link:hover {
  color: var(--primary);
}


/* ============================================================
   MAP WRAPPER
   ============================================================ */

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 1.5rem 0;
  line-height: 0;
}

.map-wrap iframe {
  display: block;
  width: 100%;
}


/* ============================================================
   STATS COUNTER BOXES
   ============================================================ */

.stats-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stats-box {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.stats-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.stats-box-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stats-box-label {
  font-size: .82rem;
  color: var(--slate);
  margin-top: 6px;
  font-weight: 600;
}


/* ============================================================
   LOCATION SEARCH BAR
   ============================================================ */

.loc-search-wrap {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.loc-search-input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.loc-search-input:focus {
  box-shadow: 0 0 0 4px rgba(20,83,45,.15);
}

.loc-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}


/* ============================================================
   "CAN'T FIND YOUR CITY" BOX
   ============================================================ */

.cant-find-box {
  background: var(--primary-pale);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 3rem 0;
}

.cant-find-box h2 {
  color: var(--primary);
  margin-bottom: .75rem;
}

.cant-find-box p {
  color: var(--navy);
  margin-bottom: 1.2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cant-find-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: .75rem;
}

.cant-find-phone:hover {
  background: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.cant-find-sub {
  font-size: .85rem;
  color: var(--slate);
  margin-top: .5rem;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo-col .logo-text {
  color: var(--white);
}

.footer-logo-col .logo-text small {
  color: rgba(255,255,255,.5);
}

.footer-desc {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  line-height: 1.7;
  margin: 12px 0;
}

.footer-phone-link {
  color: var(--accent-lit);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-phone-link:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  transition: var(--transition);
  padding: 3px 0;
}

.footer-link:hover {
  color: var(--accent-lit);
}

/* Follow us row */
.follow-us-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.follow-label {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.7);
}

.social-btn:hover svg {
  fill: var(--white);
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

.footer-privacy {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

.footer-privacy:hover {
  color: var(--accent-lit);
}

/* Disclaimer */
.footer-disclaimer {
  background: rgba(0,0,0,.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-disclaimer p {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  line-height: 1.65;
  max-width: 900px;
}


/* ============================================================
   STICKY CALL BAR
   ============================================================ */

.sticky-call-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(20,83,45,.45);
  transition: var(--transition);
}

.sticky-call-bar:hover {
  background: var(--primary-mid);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(20,83,45,.55);
}

/* Pulse ring animation */
.sticky-call-bar::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--primary);
  animation: ring-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0%   { opacity: .8; transform: scale(1); }
  80%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.12); }
}

/* Mobile: full-width bar at bottom */
@media (max-width: 768px) {
  .sticky-call-bar {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    justify-content: center;
    padding: 18px 24px;
    font-size: 1.05rem;
  }

  .sticky-call-bar::before {
    display: none;
  }
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }

.text-muted { color: var(--slate); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

/* Bullet list style for content */
.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .93rem;
  color: var(--slate);
}

.content-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Numbered list for process steps in content */
.process-list {
  counter-reset: process;
  list-style: none;
  padding: 0;
}

.process-list li {
  counter-increment: process;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: .93rem;
}

.process-list li:last-child {
  border-bottom: none;
}

.process-list li::before {
  content: counter(process);
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ZIP code list */
.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: .75rem 0;
}

.zip-tag {
  background: var(--cloud);
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: .8rem;
  color: var(--slate);
  font-family: monospace;
}

/* Nearby cities strip */
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.nearby-city-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.nearby-city-link:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
}

/* Warning signs list */
.signs-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.signs-list li {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--navy);
  line-height: 1.5;
}

/* Highlight info box */
.info-box {
  background: var(--primary-pale);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 1.5rem 0;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.7;
}

.info-box strong {
  color: var(--primary);
}

/* Page content prose area */
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .75rem; }
.prose p  { margin-bottom: 1rem; font-size: .97rem; line-height: 1.75; color: var(--slate); }
.prose strong { color: var(--navy); }
.prose a { color: var(--primary); font-weight: 600; }

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

@media (max-width: 1024px) {
  .section, .section-alt, .section-dark { padding: 48px 0; }
  .hero-home { padding: 60px 0 52px; }
}

@media (max-width: 768px) {
  :root { --pad: 16px; }
  .section, .section-alt, .section-dark { padding: 40px 0; }
  .hero-home { padding: 48px 0 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-boxes { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 40px 0; }
  .cta-band-mid { padding: 24px 18px; }
  .cant-find-box { padding: 24px 18px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-boxes { grid-template-columns: 1fr; }
  .trust-badges { gap: 7px; }
  .trust-badge { font-size: .75rem; padding: 5px 10px; }
}


/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */

@media (max-width: 768px) {
  /* Buttons */
  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Trust badges wrap properly */
  .trust-badges {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
  }

  .trust-badge {
    font-size: .75rem;
    padding: 5px 9px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Stats row */
  .stats-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 16px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 12px 8px;
    min-width: unset;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.12);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* Grids */
  .services-grid,
  .why-grid,
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* City grid */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero text */
  .hero-home h1 {
    font-size: 1.8rem;
  }

  /* Prevent horizontal scroll */
  .hero-home,
  .hero-inner,
  section,
  .container {
    overflow-x: hidden;
  }

  /* Helpful resources pills wrap */
  .helpful-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .helpful-pills a {
    width: 100%;
    justify-content: center;
  }

  .btn-sm {
    white-space: normal;
    text-align: center;
    width: 100%;
    justify-content: center;
    font-size: .82rem;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  /* Single column everything */
  .stats-boxes {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Smaller headings */
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }

  /* Trust badges single line scroll or wrap tightly */
  .trust-badges {
    gap: 6px;
  }

  .trust-badge {
    font-size: .72rem;
    padding: 5px 8px;
  }

  /* Blog cards */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
