/* ============================================
   DESIGN SYSTEM — City Wide Pest Control
   Primary: #356738 (Forest Green)
   Accent: #2a5230 (Dark Green)
   Light: #e8f0e9 (Soft Green Tint)
   White: #ffffff
   Text: #1a1a1a
   Muted: #555555
============================================ */

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

:root {
  --green: #356738;
  --green-dark: #2a5230;
  --green-light: #e8f0e9;
  --green-mid: #4a8a4e;
  --white: #ffffff;
  --off-white: #f8f9f8;
  --text: #1a1a1a;
  --muted: #555555;
  --border: #dde8de;
  --shadow: 0 4px 24px rgba(53,103,56,0.10);
  --shadow-lg: 0 8px 40px rgba(53,103,56,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(53,103,56,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}
.btn--white {
  background: #fff;
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 12px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar .top-bar__inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}
.header__logo img {
  height: 76px;
  width: auto;
  display: block;
}
/* ============================================
   NAVIGATION — MEGA MENU (Tycho-style)
============================================ */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav > li {
  list-style: none;
  position: relative;
}
/* Top-level link / trigger */
.header__nav > li > a,
.header__nav > li > button.nav-trigger {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
  height: 36px;
}
.header__nav > li > a:hover,
.header__nav > li > button.nav-trigger:hover,
.header__nav > li.is-open > button.nav-trigger {
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
}
/* Chevron */
.nav-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.header__nav > li.is-open .nav-chevron { transform: rotate(180deg); }

/* ---- Mega panel ---- */
.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  padding: 20px;
  z-index: 300;
  width: 760px;
  /* Animate in/out */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4,0,0.2,1), visibility 0.2s;
}
.header__nav > li.is-open .mega-panel,
.header__nav > li:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Small panel (single column) */
.mega-panel--sm {
  width: 280px;
  left: 0;
  transform: translateX(0) translateY(-6px);
}
.header__nav > li.is-open .mega-panel--sm,
.header__nav > li:focus-within .mega-panel--sm {
  transform: translateX(0) translateY(0);
}

/* Mega panel grid */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mega-grid--2col { grid-template-columns: repeat(2, 1fr); }
.mega-grid--1col { grid-template-columns: 1fr; }

/* Section label inside panel */
.mega-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  padding: 0 10px 8px;
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

/* Card-style menu item (Tycho pattern) */
.mega-item {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.mega-item:hover {
  background: var(--green);
  text-decoration: none;
}
.mega-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.mega-item:hover .mega-item__title { color: #fff; }
.mega-item__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}
.mega-item:hover .mega-item__desc { color: rgba(255,255,255,0.85); }
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}
.header__phone:hover { text-decoration: none; color: var(--green); }

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--green); }
.breadcrumb__sep { margin: 0 6px; color: #aaa; }

/* ============================================
   SECTION STYLES
============================================ */
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--green { background: var(--green); color: #fff; }
.section--dark { background: #1a2e1b; color: #fff; }

.section__label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section--green .section__label,
.section--dark .section__label {
  background: rgba(255,255,255,0.15);
  color: #a8d5ab;
}

.section__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.6;
}
.section--green .section__subtitle,
.section--dark .section__subtitle {
  color: rgba(255,255,255,0.75);
}
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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.04'%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");
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-banner__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner__phone {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.cta-banner__phone:hover { color: #a8d5ab; text-decoration: none; }

/* ============================================
   FAQ ACCORDION
============================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  font-family: var(--font);
}
.faq__question:hover { background: var(--off-white); }
.faq__question.open { color: var(--green-dark); background: var(--green-light); }
.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq__question.open .faq__icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq__answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.faq__answer.open { display: block; }

/* ============================================
   SERVICE AREAS
============================================ */
.areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.area-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  transition: all 0.2s;
}
.area-tag:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  text-decoration: none;
}

/* ============================================
   RELATED SERVICES
============================================ */
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.related-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
  color: var(--text);
}
.related-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.related-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  font-size: 20px;
}
.related-card__name {
  font-weight: 700;
  font-size: 15px;
}
.related-card__arrow {
  margin-left: auto;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #111d12;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__phone-link {
  font-size: 20px;
  font-weight: 800;
  color: #a8d5ab;
}
.footer__phone-link:hover { color: #fff; }
.footer__col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.2s;
}
.footer__links a:hover { color: #a8d5ab; text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: #a8d5ab; }

/* ============================================
   STICKY MOBILE CTA
============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 14px 20px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

/* ============================================
   UTILITY
============================================ */
.text-green { color: var(--green); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { border: none; border-top: 1.5px solid var(--border); margin: 0; }

/* ============================================
   RESPONSIVE — GLOBAL
============================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   MOBILE MENU BUTTON + DRAWER
============================================ */
/* Base: hidden on desktop — shown only via media query below */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-btn:hover {
  background: var(--green-light);
  border-color: var(--green);
}
.mobile-menu-btn svg { width: 22px; height: 22px; }
/* Swap icon when open */
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn.is-open .icon-hamburger { display: none; }
.mobile-menu-btn.is-open .icon-close { display: block; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer.is-open .mobile-drawer__overlay { opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 92vw);
  background: #fff;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
  background: var(--green-dark);
}
.mobile-drawer__logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.mobile-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}
.mobile-drawer__close svg { width: 24px; height: 24px; }

/* Mobile nav sections */
.mobile-nav { padding: 8px 0 24px; flex: 1; }
.mobile-nav__section { border-bottom: 1px solid var(--border); }
.mobile-nav__section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.mobile-nav__section-toggle:hover { background: var(--off-white); }
.mobile-nav__section-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: var(--muted);
}
.mobile-nav__section.is-open .mobile-nav__section-toggle svg { transform: rotate(180deg); }
.mobile-nav__links {
  display: none;
  padding: 4px 0 12px;
  background: var(--off-white);
}
.mobile-nav__section.is-open .mobile-nav__links { display: block; }
.mobile-nav__links a {
  display: block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav__links a:hover {
  color: var(--green-dark);
  background: var(--green-light);
  text-decoration: none;
}
/* Direct links (no accordion) */
.mobile-nav__direct {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mobile-nav__direct:hover {
  background: var(--off-white);
  text-decoration: none;
}
/* Mobile CTA */
.mobile-drawer__cta {
  padding: 20px;
  border-top: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer__cta .btn { width: 100%; justify-content: center; }

/* ============================================
   RESPONSIVE BREAKPOINTS (after mobile components)
============================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  /* Header: clean logo-left / hamburger-right layout */
  .header__inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .header__logo img { height: 52px; }
  .header__nav { display: none; }
  .header__cta { display: none; }      /* hide phone + Free Quote button entirely */
  .mobile-menu-btn { display: flex; }  /* show hamburger — must come AFTER base display:none */
  .sticky-cta { display: block; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .header__phone { display: none; }
}

@media (max-width: 480px) {
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* Hide inline CTA bars on mobile — sticky bar + hero CTAs are sufficient */
@media (max-width: 768px) {
  .cta-inline-bar { display: none; }
}

/* ── Extra content sections (about, city pages, specialty pages) ─────────── */
.extra-section { background: var(--white); }
.extra-section:nth-child(even) { background: var(--off-white); }
.extra__body { max-width: 820px; }
.extra__body p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: 15px; }
.extra__body p:last-child { margin-bottom: 0; }
.extra__subheading {
  font-size: 18px; font-weight: 700; color: var(--green-dark);
  margin: 28px 0 10px; padding-left: 14px;
  border-left: 3px solid var(--green);
}
.extra__list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.extra__list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text); font-size: 15px; line-height: 1.6;
  padding: 12px 16px;
  background: var(--off-white); border-radius: 8px;
  border-left: 3px solid var(--green-light);
}
.extra__list li::before {
  content: '';
  display: inline-block; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 1px;
  background: var(--green-light); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23356738' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.extra__list li a { color: var(--green); font-weight: 600; }
.extra__list li a:hover { color: var(--green-dark); text-decoration: underline; }
/* Two columns on desktop only */
@media (min-width: 640px) {
  .extra__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── Legal pages (privacy policy, terms of service) ─────────────────────── */
.legal-body { max-width: 820px; }
.legal-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 15px; }
.legal-body h2 {
  font-size: 20px; font-weight: 800; color: var(--green-dark);
  margin: 40px 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}
.legal-body h3 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin: 24px 0 8px; padding-left: 12px;
  border-left: 3px solid var(--green);
}
.legal-body ul {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.legal-body ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  color: var(--muted); font-size: 15px; line-height: 1.6;
}
.legal-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
}
.legal-body a { color: var(--green); text-decoration: underline; }
.legal-body a:hover { color: var(--green-dark); }
.legal-contact {
  background: var(--green-light); border-radius: 10px;
  padding: 20px 24px; margin-top: 20px;
  border-left: 4px solid var(--green);
}
.legal-contact p { margin: 0; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}

/* ── Pest card grid (Most Common Pests sections) ─────────────────────────── */
.pest-card-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.pest-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff;
  border: 1px solid #e0ebe0;
  border-top: 3px solid var(--green);
  border-radius: 8px;
  padding: 16px 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pest-card:hover {
  box-shadow: 0 4px 16px rgba(53,103,56,0.10);
  border-color: var(--green);
}
.pest-card__name {
  font-size: 15px; font-weight: 700; color: var(--green-dark);
  text-decoration: none; line-height: 1.3;
}
.pest-card__name:hover { color: var(--green); text-decoration: underline; }
a.pest-card__name { cursor: pointer; }
.pest-card__desc {
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
@media (max-width: 500px) {
  .pest-card-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pest-card { padding: 12px 14px; }
  .pest-card__name { font-size: 13px; }
  .pest-card__desc { font-size: 12px; }
}
