@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #16a34a;
  --blue-dark:  #15803d;
  --blue-light: #f0fdf4;
  --navy:       #1A2332;
  --white:      #FFFFFF;
  --gray-light: #F5F6F8;
  --gray-mid:   #E2E5EA;
  --gray-text:  #666666;
  --text:       #2D2D2D;
  --gold:       #F5A623;
  --green:      #1DB954;

  --radius:     8px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);

  --max-w: 1200px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

[data-snippet] { display: contents; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

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

/* ─── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: auto;
  height: 64px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; fill: white; }

.logo-icon img {
  width: auto;
  height: 100px;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--blue); }

nav { display: flex; align-items: center; gap: 4px; }

nav a,
.nav-dropdown-trigger {
  appearance: none;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

nav a:hover,
.nav-dropdown-trigger:hover {
  background: var(--gray-light);
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 120;
  width: 640px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s, visibility 0.16s, transform 0.16s;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-col span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.nav-dropdown-col a {
  display: block;
  padding: 7px 8px;
  font-size: 14px;
  line-height: 1.25;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.header-phone svg { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: scale(0.98); }

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

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

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

.btn-outline:hover { background: var(--blue-light); }

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

.btn-white:hover { background: #f0f0f0; }

.btn-lg { font-size: 16px; padding: 14px 32px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── MOBILE NAV DRAWER ────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  margin-bottom: 8px;
}

.mobile-nav-panel a,
.mobile-nav-heading {
  display: block;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--text);
}

.mobile-service-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  padding: 10px 12px;
  background: var(--blue-light);
  border-radius: var(--radius);
}

.mobile-nav-panel .mobile-service-links a {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: none;
  color: var(--blue-dark);
}

.mobile-nav-panel .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  background: url('../img/hero-pest-control.jpg') center right / cover no-repeat;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after { display: none; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 span { color: #86efac; }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-callback {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-callback a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* hero card */
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group select { cursor: pointer; }

.form-submit { width: 100%; margin-top: 4px; }

.form-note {
  font-size: 12px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 10px;
}

/* ─── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 28px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 24px;
  border-right: 1px solid var(--gray-mid);
}

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

.trust-item-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.trust-item-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.trust-item-text span {
  display: block;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.4;
  margin-top: 3px;
}

/* ─── SECTION SHARED ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-label-white {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title-white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.6;
}

.section-sub-white { color: rgba(255,255,255,0.65); }

.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ─── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-cat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  padding: 6px 0 10px;
  border-bottom: 2px solid var(--blue-light);
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-cat-label:first-child { margin-top: 0; }

.service-cat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(22,163,74,0.1);
  transform: translateY(-4px);
}

.service-img {
  background: var(--blue-light);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.service-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0 0 10px;
  flex: 1;
}

.service-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ─── WHY US ───────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-mid);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { color: var(--blue); }

.benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ─── STATS ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  padding: 36px 24px;
  text-align: center;
}

.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-num span { color: #86efac; }

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

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

.review-stars svg { color: var(--gold); }

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-date {
  font-size: 12px;
  color: var(--gray-text);
}

.review-source {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--gray-light);
  padding: 3px 8px;
  border-radius: 100px;
}

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1.5px solid var(--gray-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--blue); }

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.15s, border-color 0.15s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue);
  border-color: var(--blue);
}

.faq-item.open .faq-chevron svg { stroke: white; }

.faq-answer {
  display: none;
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #152820;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.footer-logo-big img {
  width: 320px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-big span { color: #86efac; }

.footer-about-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-about-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-socials a:hover { color: var(--white); }

.footer-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-simple-nav {
  display: flex;
  flex-direction: column;
}

.footer-simple-nav a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.15s;
}

.footer-simple-nav a:first-child {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-simple-nav a:hover { color: var(--white); }

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

.footer-col h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 8px;
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ─── MOBILE STICKY BAR ────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy);
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 10px;
}

.mobile-cta-bar .btn { flex: 1; justify-content: center; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-cat-row { grid-template-columns: repeat(3, 1fr); }
  .services-grouped { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn:not(.btn-sm) { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero {
    background: url('../img/hero-pest-control.jpg') 62% center / cover no-repeat;
    padding: 56px 0;
  }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-card { padding: 24px 20px; }

  .trust-strip-inner { gap: 0; flex-direction: column; align-items: stretch; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-mid); padding: 18px 20px; }
  .trust-item:last-child { border-bottom: none; }

  /* Services — carousels per category */
  .services-grid { display: block; }

  .service-cat-label {
    margin-top: 28px;
    margin-bottom: 14px;
  }
  .service-cat-label:first-child { margin-top: 0; }

  .service-cat-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    margin: 0 -24px;
    padding: 0 24px 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .service-cat-row::-webkit-scrollbar { display: none; }

  .service-cat-row .service-card {
    flex: 0 0 clamp(240px, 78vw, 320px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .services-grouped { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

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

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-big { font-size: 48px; letter-spacing: -1px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-copyright .container { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 70px; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ─── SERVICE SUBPAGES ──────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

.service-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 72px 0 64px;
  color: #fff;
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.service-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.service-hero h1 em {
  font-style: normal;
  color: #86efac;
}

.service-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-hero-emoji {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-hero-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-img {
  background: var(--blue-light);
  border-radius: 20px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  overflow: hidden;
}

.overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.overview-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.overview-text p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 16px;
}

.fact-callout {
  background: var(--blue-light);
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 32px 40px;
}

.fact-callout blockquote {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.guarantee-band {
  background: #21c58e;
  color: #fff;
  text-align: center;
  padding: var(--section-py) 0;
}

.guarantee-band h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff !important;
}

.guarantee-band p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
  color: #fff !important;
}

@media (max-width: 768px) {
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-emoji { display: none; }
  .service-hero h1 { font-size: 30px; }
  .overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .overview-img { height: 220px; font-size: 72px; }
  .fact-callout { padding: 24px 20px; }
  .fact-callout blockquote { font-size: 17px; }
  .guarantee-band h2 { font-size: 26px; }
}
