/* ========================================
   JS Pest Control - Design System
   Brand Teal: #00838f / #006064
   ======================================== */

:root {
  --teal-50: #e0f7fa;
  --teal-100: #b2ebf2;
  --teal-200: #80deea;
  --teal-300: #4dd0e1;
  --teal-400: #26c6da;
  --teal-500: #00bcd4;
  --teal-600: #00acc1;
  --teal-700: #0097a7;
  --teal-800: #00838f;
  --teal-900: #006064;
  --primary: #00838f;
  --primary-dark: #006064;
  --primary-light: #4fb3bf;
  --accent: #ff6f00;
  --accent-light: #ff9e40;
  --text: #1a1a2e;
  --text-light: #4a4a68;
  --text-muted: #7a7a98;
  --bg: #ffffff;
  --bg-light: #f5f9fa;
  --bg-dark: #0d2137;
  --border: #e0e8ec;
  --success: #2e7d32;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo img { height: 48px; width: auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--primary-dark); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--teal-50); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; margin-left: 4px; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  z-index: 100;
}
.dropdown-menu a { padding: 8px 12px; font-size: 0.85rem; white-space: nowrap; border-radius: var(--radius-sm); }
.nav-dropdown:hover .dropdown-menu { display: block; animation: fadeDown 0.2s ease; }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary-dark); font-size: 1rem; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a3d5c 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,96,100,0.85) 0%, rgba(13,33,55,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--teal-300); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; max-width: 560px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--teal-300); flex-shrink: 0; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Floating stats on hero */
.hero-stats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  color: white;
  min-width: 180px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
.hero-stat:nth-child(2) { animation-delay: 0.5s; }
.hero-stat:nth-child(3) { animation-delay: 1s; }
.hero-stat-number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-display); color: var(--teal-300); }
.hero-stat-label { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font);
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #e65100; color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,111,0,0.3); }
.btn-secondary { background: white; color: var(--primary-dark); }
.btn-secondary:hover { background: var(--teal-50); color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }
.btn-teal { background: var(--primary); color: white; }
.btn-teal:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,131,143,0.3); }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal-50);
  color: var(--primary);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-dark .section-header .tag { background: rgba(255,255,255,0.1); color: var(--teal-300); }

/* ========================================
   PEST SERVICE CARDS
   ======================================== */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.pest-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.pest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  color: var(--primary);
}
.pest-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 12px; }
.pest-card h3 { font-size: 1rem; font-weight: 600; }

/* ========================================
   SERVICE PAGE HERO
   ======================================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0,188,212,0.08);
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--teal-300); }
.breadcrumb span { opacity: 0.5; }

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-img img { width: 100%; height: 400px; object-fit: cover; }

.check-list { list-style: none; margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; margin: 0; }

/* ========================================
   REVIEWS / TESTIMONIALS
   ======================================== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.reviews-big-number { font-size: 4rem; font-weight: 800; color: var(--primary); font-family: var(--font-display); line-height: 1; }
.reviews-stars { color: #ffc107; font-size: 1.5rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.9rem; color: var(--text-muted); }

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.review-stars { color: #ffc107; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.review-author { font-weight: 600; font-size: 0.85rem; }
.review-meta { font-size: 0.8rem; color: var(--text-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }

/* ========================================
   TEAM
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--teal-100);
}
.team-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.team-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
}
.trust-bar img { height: 50px; width: auto; opacity: 0.7; transition: opacity var(--transition); filter: grayscale(30%); }
.trust-bar img:hover { opacity: 1; filter: none; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  background: var(--bg-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 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,0.1);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); }

.site-footer h4 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-300); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal-400); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
}
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-badges img { height: 40px; width: auto; opacity: 0.7; }

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: scaleIn 0.3s ease;
}
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 { margin-bottom: 12px; }
.modal p { color: var(--text-muted); margin-bottom: 24px; }
.modal-close {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font);
  font-size: 0.95rem;
}

/* ========================================
   AREA PAGES
   ======================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.area-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.area-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.area-card .area-phone { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.area-card .area-reviews { font-size: 0.85rem; color: var(--text-muted); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ========================================
   SERVICE PAGE SPECIFIC
   ======================================== */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.sign-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.sign-item p { margin: 0; font-size: 0.9rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-links.active .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--bg-light);
    margin-top: 4px;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero { min-height: auto; padding-top: 72px; }
  .hero-content { padding: 40px 0; }
  .hero-buttons { flex-direction: column; }
  .hero-badges { gap: 8px; }

  .section { padding: 48px 0; }
  .pest-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
  .trust-bar { gap: 20px; }
  .trust-bar img { height: 36px; }
}

@media (max-width: 375px) {
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .pest-card { padding: 16px 12px; }
  h1 { font-size: 1.8rem; }
}

/* ========================================
   UTILITY
   ======================================== */
.text-center { text-align: center; }
.text-teal { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
