/* ==========================================================================
   Advanced Pest Solutions, style.css
   Base styles, layout, and components (desktop-first structure).
   Breakpoints live in responsive.css. Keyframes/transitions live in animations.css.
   ========================================================================== */

:root {
  --color-primary: #0F4C5C;
  --color-primary-dark: #0A3844;
  --color-secondary: #2C7A7B;
  --color-accent: #D4A017;
  --color-bg: #F8FAFC;
  --color-card: #FFFFFF;
  --color-heading: #1F2937;
  --color-text: #6B7280;
  --color-success: #16A34A;
  --color-danger: #DC2626;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(15, 76, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 76, 92, 0.12);
  --shadow-lg: 0 16px 40px rgba(15, 76, 92, 0.16);

  --container-width: 1200px;
  --header-height: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 1rem; font-size: 15px; }
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
.section-bg-alt { background: #EEF3F4; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--color-accent); color: #1F2937; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #c39415; }
.btn-call { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-call:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--color-primary-dark); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #1fb956; }
.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); padding: 13px 28px; }
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo .logo-mark svg { width: 24px; height: 24px; }
.logo .logo-text-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; color: var(--color-text); letter-spacing: 1.5px; text-transform: uppercase; }

.logo-img { height: 62px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.logo-fallback-text { display: none; }
.logo.logo-fallback-active .logo-img { display: none; }
.logo.logo-fallback-active .logo-fallback-text { display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 34px; }
.nav-list > li { position: relative; }
.nav-list a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--color-heading);
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}
.nav-list a:hover { color: var(--color-secondary); }
.nav-list a:hover::after { width: 100%; }

.has-dropdown { display: flex; align-items: center; gap: 5px; }
.has-dropdown .chevron { width: 12px; height: 12px; transition: transform 0.25s ease; }
.dropdown-parent:hover .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.dropdown-parent:hover .dropdown-menu,
.dropdown-parent:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 500; }
.dropdown-menu li a:hover { background: var(--color-bg); color: var(--color-secondary); }
.dropdown-menu li a::after { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta .btn { padding: 12px 20px; font-size: 0.88rem; }

.hamburger {
  display: none;
  position: relative;
  z-index: 700;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger span { display: block; width: 100%; height: 2.5px; background: var(--color-primary); border-radius: 2px; transition: all 0.3s ease; }
.mobile-nav-overlay { display: none; }
.mobile-nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border-radius: 50%;
}
.mobile-nav-close:hover { background: var(--color-bg); }
.mobile-nav-close svg { width: 24px; height: 24px; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Floating Buttons ---------- */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.floating-btn svg { width: 26px; height: 26px; }
.floating-btn.call-btn { background: var(--color-primary); }
.floating-btn.whatsapp-btn { background: #25D366; }

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 600;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-heading);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Mobile sticky CTA bar (defined here, positioned via responsive.css) ---------- */
.mobile-cta-bar { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(30px, 6vw, 70px) 0 clamp(64px, 8vw, 100px);
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 55%, #082C36 100%);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(212, 160, 23, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(44, 122, 123, 0.35) 0%, transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,160,23,0.4);
  padding: 8px 18px 8px 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  white-space: nowrap;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(212,160,23,0.6);
  animation: badgePulse 2.2s ease-out infinite;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
.hero-badge svg { width: 16px; height: 16px; color: var(--color-accent); }
.hero h1 { font-size: clamp(2.1rem, 1.35rem + 3vw, 3.15rem); line-height: 1.14; color: #fff; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero h1 span { color: var(--color-accent); background: linear-gradient(120deg, var(--color-accent), #F0C85C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .hero-sub { font-size: clamp(0.98rem, 0.85rem + 0.4vw, 1.12rem); color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 34px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero .btn-call { background: linear-gradient(120deg, var(--color-accent), #C4930F); color: #1F2937; box-shadow: 0 10px 24px rgba(212,160,23,0.3); }
.hero .btn-call:hover { background: linear-gradient(120deg, #E0B12A, var(--color-accent)); color: #1F2937; }
.hero .btn-primary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); box-shadow: none; }
.hero .btn-primary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 10px 0; }
.hero-trust-row .trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 500; font-size: 0.86rem; color: rgba(255,255,255,0.88);
  padding: 0 18px 0 0; margin-right: 18px; border-right: 1px solid rgba(255,255,255,0.16);
}
.hero-trust-row .trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-trust-row svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 60% 30%, rgba(212,160,23,0.22), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}
.hero-visual .visual-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  padding-left: 4px;
}
.hero-visual .visual-panel {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
.hero-visual .stat-box {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-visual .stat-box:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 18px 30px -10px rgba(0,0,0,0.25); }
.hero-visual .stat-box .stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-visual .stat-box:nth-child(2) .stat-icon { background: linear-gradient(135deg, var(--color-accent), #B4820C); }
.hero-visual .stat-box:nth-child(3) .stat-icon { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); }
.hero-visual .stat-icon svg { width: 22px; height: 22px; color: #fff; }
.hero-visual .stat-box .stat-content { display: flex; flex-direction: column; gap: 2px; }
.hero-visual .stat-box .stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.42rem; color: var(--color-heading); line-height: 1.2; }
.hero-visual .stat-box .stat-label { font-size: 0.83rem; color: var(--color-text); }

/* ---------- Image blocks ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-secondary);
}
.img-placeholder svg { width: 20%; max-width: 64px; opacity: 0.55; }
.img-placeholder img { width: 100%; height: auto; display: block; }

/* ---------- About summary / general two-col ---------- */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-block .eyebrow { display: inline-block; color: var(--color-secondary); font-family: var(--font-heading); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 12px; }
.split-block h2 { margin-bottom: 18px; }
.feature-check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.feature-check-list li { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-heading); font-weight: 500; color: var(--color-heading); font-size: 0.98rem; }
.feature-check-list svg { width: 22px; height: 22px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* ---------- Services overview grid (home) ---------- */
.services-grid, .why-grid, .industries-grid, .cities-grid {
  display: grid;
  gap: 28px;
}
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-tile {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,76,92,0.06);
}
.service-tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-tile .tile-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-tile .tile-icon svg { width: 30px; height: 30px; color: #fff; }
.service-tile h3 { margin-bottom: 10px; font-size: 1.18rem; }
.service-tile p { font-size: 0.94rem; margin-bottom: 14px; }
.service-tile .tile-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-secondary); display: inline-flex; align-items: center; gap: 6px; }
.service-tile .tile-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.service-tile .tile-link:hover svg { transform: translateX(4px); }
.services-overview-footer { text-align: center; margin-top: 46px; }

/* ---------- Why choose us ---------- */
.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-card { background: var(--color-card); border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .why-icon { width: 64px; height: 64px; border-radius: 50%; background: #EAF3F1; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.why-card .why-icon svg { width: 30px; height: 30px; color: var(--color-primary); }
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; }

/* ---------- Process steps ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-step { position: relative; text-align: center; padding: 0 10px; }
.process-step .step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* ---------- Industries ---------- */
.industries-grid { grid-template-columns: repeat(4, 1fr); }
.industry-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-card .industry-icon { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--color-secondary); }
.industry-card .industry-icon svg { width: 100%; height: 100%; }
.industry-card h3 { font-size: 0.98rem; }

/* ---------- Cities ---------- */
.cities-grid { grid-template-columns: repeat(3, 1fr); }
.city-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.city-card .img-placeholder { border-radius: 0; }
.city-card .city-card-body { background: var(--color-card); padding: 22px 24px; }
.city-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.city-card p { font-size: 0.88rem; margin-bottom: 14px; }
.city-card .tile-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--color-secondary); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.city-card .tile-link svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s ease; }
.city-card .tile-link:hover svg { transform: translateX(4px); }

/* ---------- Testimonial slider ---------- */
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; }
.testimonial-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; box-sizing: border-box; padding: 6px; }
.testimonial-card { background: var(--color-card); border-radius: var(--radius-lg); padding: 44px 46px; box-shadow: var(--shadow-md); text-align: center; }
.testimonial-card .quote-icon { width: 40px; height: 40px; color: var(--color-accent); margin: 0 auto 20px; }
.testimonial-card p.quote-text { font-size: 1.08rem; color: var(--color-heading); font-style: italic; margin-bottom: 22px; }
.testimonial-card .stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 16px; }
.testimonial-card .stars svg { width: 18px; height: 18px; color: var(--color-accent); }
.testimonial-card .reviewer-name { font-family: var(--font-heading); font-weight: 600; color: var(--color-heading); }
.testimonial-card .reviewer-loc { font-size: 0.85rem; color: var(--color-text); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--color-card); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease, transform 0.2s ease; }
.slider-arrow:hover { background: var(--color-primary); color: #fff; transform: scale(1.06); }
.slider-arrow svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: #D1D9DB; transition: background 0.25s ease, transform 0.25s ease; }
.slider-dot.is-active { background: var(--color-primary); transform: scale(1.25); }

/* ---------- Google rating ---------- */
.rating-banner { background: var(--color-primary); color: #fff; border-radius: var(--radius-lg); padding: 46px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rating-banner .rating-score { display: flex; align-items: center; gap: 18px; }
.rating-banner .score-num { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; }
.rating-banner .stars svg { width: 22px; height: 22px; color: var(--color-accent); }
.rating-banner p { color: rgba(255,255,255,0.85); margin: 0; max-width: 420px; }

/* ---------- Before / After ---------- */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ba-card { background: var(--color-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-card .ba-compare { display: grid; grid-template-columns: 1fr 1fr; }
.ba-card .ba-compare .img-placeholder { aspect-ratio: 1/1; border-radius: 0; }
.ba-card .ba-compare .ba-before { background: linear-gradient(135deg, #E9DCC3, #DCCBA3); }
.ba-card .ba-compare .ba-after { background: linear-gradient(135deg, #D3E7E1, #B9DAD1); }
.ba-card .ba-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; text-align: center; padding: 6px; font-family: var(--font-heading); }
.ba-card .ba-body { padding: 20px 22px; }
.ba-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.ba-card p { font-size: 0.88rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--color-card); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-heading);
  font-size: 1.02rem;
}
.faq-question .faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--color-secondary); }
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 26px 22px; font-size: 0.95rem; }

/* ---------- Emergency banner ---------- */
.emergency-banner {
  background: linear-gradient(120deg, var(--color-danger), #B91C1C);
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.emergency-banner .emergency-text { display: flex; align-items: center; gap: 18px; }
.emergency-banner .emergency-icon { width: 56px; height: 56px; flex-shrink: 0; }
.emergency-banner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.emergency-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.emergency-banner .emergency-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.emergency-banner .btn-primary { background: #fff; color: var(--color-danger); }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark)); text-align: center; color: #fff; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 32px; }
.final-cta .cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0B2E38; color: rgba(255,255,255,0.75); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo .logo-text-sub { color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 0.92rem; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.footer-social a:hover { background: var(--color-secondary); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; font-size: 0.9rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-list svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 22px 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom .footer-legal-links { display: flex; gap: 20px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark)); color: #fff; padding: 70px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; }
.page-hero .hero-cta-group { justify-content: center; margin: 28px auto 0; }
.page-hero .btn-call { background: #fff; color: var(--color-primary); padding: 12px 26px; font-size: 0.95rem; display: inline-flex; }
.page-hero .btn-call:hover { background: var(--color-accent); color: #fff; }

/* ---------- Services page ---------- */
.service-filter-note { text-align: center; max-width: 720px; margin: 0 auto 40px; color: var(--color-text); }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: var(--color-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 28px; display: flex; flex-direction: column; transition: box-shadow 0.3s ease; }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card .service-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card .service-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p.service-desc { font-size: 15px; margin-bottom: 14px; }
.service-card .benefit-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.service-card .benefit-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.86rem; color: var(--color-heading); }
.service-card .benefit-list svg { width: 16px; height: 16px; color: var(--color-success); flex-shrink: 0; margin-top: 3px; }
.service-card .read-more-btn { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--color-secondary); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px; align-self: flex-start; }
.service-card .read-more-btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.service-card[aria-expanded-state="true"] .read-more-btn svg,
.service-card .read-more-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.service-details { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.9rem; }
.service-details-inner { padding-top: 4px; padding-bottom: 12px; }
.service-details-inner p { font-size: 0.9rem; }
.service-card-actions { display: flex; gap: 10px; margin-top: auto; }
.service-card-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.82rem; }

/* ---------- Location pages ---------- */
.pest-problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pest-problem-card { background: var(--color-card); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; }
.pest-problem-card .pp-icon { width: 46px; height: 46px; border-radius: 12px; background: #EAF3F1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pest-problem-card .pp-icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.pest-problem-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.pest-problem-card p { font-size: 0.9rem; margin: 0; }

.areas-covered-list { display: flex; flex-wrap: wrap; gap: 12px; }
.areas-covered-list li { background: var(--color-card); border: 1px solid rgba(15,76,92,0.12); border-radius: 50px; padding: 9px 18px; font-size: 0.88rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-heading); }

.nearby-cities-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.nearby-cities-row a { background: var(--color-card); border-radius: 50px; padding: 10px 20px; font-size: 0.88rem; font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); box-shadow: var(--shadow-sm); transition: background 0.25s ease, color 0.25s ease; }
.nearby-cities-row a:hover { background: var(--color-primary); color: #fff; }

.benefits-list-two-col { columns: 2; column-gap: 40px; }
.benefits-list-two-col li { break-inside: avoid; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.94rem; color: var(--color-heading); }
.benefits-list-two-col svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; margin-top: 3px; }

/* ---------- Location page service cards ---------- */
.location-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.location-service-card { background: var(--color-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 26px 24px; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.location-service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.location-service-card .service-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--color-secondary), var(--color-primary)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.location-service-card .service-icon svg { width: 24px; height: 24px; }
.location-service-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.location-service-card p { font-size: 15px; margin-bottom: 0; color: var(--color-text); }
.location-service-cta { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 46px; align-items: start; }
.contact-info-card { background: var(--color-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 32px; margin-bottom: 24px; }
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.contact-info-card ul { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.94rem; color: var(--color-heading); }
.contact-info-card svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.hours-table { width: 100%; font-size: 0.92rem; }
.hours-table tr td { padding: 6px 0; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--color-heading); }

.contact-form-card { background: var(--color-card); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; color: var(--color-heading); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  background: #FBFCFD;
  color: var(--color-heading);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { display: none; color: var(--color-danger); font-size: 0.8rem; margin-top: 6px; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: var(--color-danger); }
.form-group.has-error .form-error { display: block; }
.form-note { font-size: 0.82rem; color: var(--color-text); margin-top: 14px; }
.map-embed-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 24px; }
.map-embed-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.98rem; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content ul li { list-style: disc; }
.legal-updated { color: var(--color-text); font-size: 0.9rem; margin-bottom: 40px; }

/* ---------- Thank you / 404 ---------- */
.status-page { text-align: center; padding: 130px 0; }
.status-page .status-icon { width: 100px; height: 100px; margin: 0 auto 30px; color: var(--color-secondary); }
.status-page h1 { margin-bottom: 16px; }
.status-page p { max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }
.status-page .status-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.status-page .status-code { font-family: var(--font-heading); font-weight: 700; font-size: 6rem; color: var(--color-primary); opacity: 0.15; line-height: 1; margin-bottom: 10px; }

/* ---------- Stats counter strip ---------- */
.stats-strip { background: var(--color-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 46px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -128px; position: relative; z-index: 5; }
.stat-item { text-align: center; }
.stat-item .counter { font-family: var(--font-heading); font-weight: 700; font-size: 2.4rem; color: var(--color-primary); }
.stat-item .stat-item-label { font-size: 0.88rem; color: var(--color-text); font-family: var(--font-heading); font-weight: 500; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
