/* ==========================================================================
   Eco Pest Control Care - ecopestcontrolcare.in
   Color Scheme: Pest Defender Theme (#0d6838 Forest Green & Mint)
   Phone: +91 88822 37653
   ========================================================================== */

:root {
  /* Color Palette - Pest Defender Inspired Theme */
  --royal-950: #04190c; /* Deepest Forest (Footer BG) */
  --royal-900: #062a16; /* Dark Forest Green (Banners & Dark Headings) */
  --royal-850: #07351c; /* Topbar & Pre-footer Gradient */
  --royal-800: #074724; /* Deep Forest Green (Button Hovers & Accents) */
  --royal-700: #0d6838; /* Pest Defender Main Brand Green */
  --royal-600: #127943; /* Medium Forest Green */
  --royal-500: #168045; /* Vibrant Emerald Green */
  --royal-400: #22c55e; /* Accent Mint Green */

  --light-blue-50: #edfbf2; /* Pest Defender Light Mint BG */
  --light-blue-100: #e2f8eb; /* Soft Mint Accent */
  --light-blue-200: #bbf7d0; /* Pest Defender Light Green Border */
  --light-blue-300: #86efac; /* Soft Green */
  --light-blue-400: #34d399; /* Mint highlight */
  --light-blue-500: #0d6838; /* Primary action / Links */
  --light-blue-600: #074724;

  --pure-white: #ffffff;
  --off-white: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --whatsapp-green: #25d366;
  --whatsapp-hover: #1ebd5a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --rose-500: #ef4444;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows - Ambient Forest Green Glow */
  --shadow-sm: 0 1px 2px 0 rgba(7, 71, 36, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(7, 71, 36, 0.08), 0 2px 6px -2px rgba(7, 71, 36, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(7, 71, 36, 0.12), 0 4px 10px -2px rgba(7, 71, 36, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(7, 71, 36, 0.16), 0 8px 16px -4px rgba(7, 71, 36, 0.08);
  --shadow-royal: 0 10px 30px rgba(13, 104, 56, 0.3);
  --shadow-glow: 0 0 25px rgba(34, 197, 94, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--pure-white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px;
}

img, svg {
  vertical-align: middle;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--royal-900), var(--royal-800));
  color: var(--pure-white);
  font-size: 0.84rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-badge {
  background: rgba(34, 197, 94, 0.18);
  color: var(--light-blue-400);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light-blue-100);
  font-weight: 600;
}

.top-contact-link:hover {
  color: var(--light-blue-400);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--amber-500);
  font-weight: 700;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(7, 71, 36, 0.08);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 6px 25px rgba(7, 71, 36, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}

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

.brand-icon-shield {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--royal-800), var(--royal-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  box-shadow: 0 4px 12px rgba(13, 104, 56, 0.28);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--royal-900);
}

.brand-name span.eco {
  color: var(--light-blue-500);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-600);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-600), var(--light-blue-400));
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Nav Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

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

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 290px;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(7, 71, 36, 0.18), 0 0 0 1px rgba(13, 104, 56, 0.12);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1050;
  animation: dropdownFade 0.2s ease;
}

/* Invisible bridge so mouse hover doesn't drop across gap */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: flex;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--light-blue-50);
}

.dropdown-icon {
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue-100);
  border-radius: 8px;
  flex-shrink: 0;
}

.dropdown-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--royal-900);
  line-height: 1.2;
}

.dropdown-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--slate-600);
}

.dropdown-item:hover strong {
  color: var(--royal-600);
}

/* Mobile Drawer Sublinks */
.mobile-drawer-group {
  padding: 8px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  margin: 4px 0;
}

.mobile-group-title {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--royal-700);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  padding-left: 6px;
}

.mobile-sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.mobile-sublink:hover {
  background: var(--light-blue-50);
  color: var(--royal-800);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-blue-50);
  border: 1.5px solid var(--light-blue-200);
  color: var(--royal-700);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.btn-header-call:hover {
  background: var(--royal-700);
  color: var(--pure-white);
  border-color: var(--royal-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-royal);
}

.btn-header-call .call-pulse-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--royal-600);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-header-call:hover .call-pulse-dot {
  background: var(--pure-white);
  color: var(--royal-700);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--royal-700), var(--royal-600));
  color: var(--pure-white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 4px 14px rgba(13, 104, 56, 0.28);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--royal-800), var(--royal-700));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 104, 56, 0.38);
}

.btn-light-blue {
  background: linear-gradient(135deg, var(--light-blue-500), var(--royal-600));
  color: var(--pure-white);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--pure-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.mobile-toggle,
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--royal-900);
  padding: 6px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer,
.mobile-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--pure-white);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  border-bottom: 3px solid var(--royal-600);
  z-index: 999;
}

@media (min-width: 992px) {
  .mobile-nav-drawer,
  .mobile-drawer,
  .mobile-toggle,
  .mobile-menu-btn {
    display: none !important;
  }
}

.mobile-nav-drawer.active,
.mobile-drawer.active {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-drawer .nav-link,
.mobile-drawer .mobile-link {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
  text-decoration: none;
  color: var(--slate-800);
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--light-blue-50) 0%, var(--pure-white) 60%, var(--light-blue-100) 100%);
  padding: 65px 0 60px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--light-blue-200);
}

.hero-bg-accent {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  border: 1.5px solid var(--light-blue-200);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--royal-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.hero-badge-pill .pill-star {
  color: var(--amber-500);
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--royal-900);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, var(--royal-700), var(--light-blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 600px;
}

/* Hero CTAs */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.02rem;
  transition: var(--transition-smooth);
}

.hero-cta-call {
  background: linear-gradient(135deg, var(--royal-800), var(--royal-600));
  color: var(--pure-white);
  box-shadow: 0 8px 24px rgba(7, 71, 36, 0.32);
}

.hero-cta-call:hover {
  background: linear-gradient(135deg, var(--royal-900), var(--royal-700));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 71, 36, 0.45);
}

.hero-cta-whatsapp {
  background: var(--whatsapp-green);
  color: var(--pure-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.hero-cta-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.cta-subtext {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.9;
}

.cta-maintext {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Hero Feature Points */
.hero-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--slate-200);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--light-blue-100);
  color: var(--royal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-info h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--royal-900);
  line-height: 1.1;
}

.feat-info p {
  font-size: 0.72rem;
  color: var(--slate-600);
}

/* Hero Booking Card */
.hero-form-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--light-blue-100);
  position: relative;
}

.form-badge-discount {
  position: absolute;
  top: -15px;
  right: 25px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--pure-white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.86rem;
  color: var(--slate-600);
  margin-bottom: 18px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-200);
  font-size: 0.92rem;
  color: var(--slate-800);
  background: var(--off-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--royal-600);
  background: var(--pure-white);
  box-shadow: 0 0 0 3px rgba(13, 104, 56, 0.15);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--royal-700), var(--royal-600));
  color: var(--pure-white);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(13, 104, 56, 0.3);
  transition: var(--transition-smooth);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--royal-800), var(--royal-700));
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 104, 56, 0.4);
}

.form-footer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-top: 8px;
}

.form-footer-guarantee svg {
  color: #16a34a;
}

/* ==========================================================================
   Trust Badges Bar
   ========================================================================== */
.trust-strip {
  background: var(--pure-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--slate-200);
}

.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue-50);
  border: 1.5px solid var(--light-blue-200);
  color: var(--royal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--royal-900);
  line-height: 1.2;
}

.trust-badge-text p {
  font-size: 0.78rem;
  color: var(--slate-600);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-bg-light {
  background-color: var(--light-blue-50);
}

.section-bg-white {
  background-color: var(--pure-white);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  background: var(--light-blue-100);
  color: var(--royal-700);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid var(--light-blue-200);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--royal-900);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-title span.blue {
  color: var(--light-blue-500);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   Interactive Cost Calculator
   ========================================================================== */
.calculator-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--light-blue-100);
  max-width: 1000px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.calc-step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 24px;
  height: 24px;
  background: var(--royal-600);
  color: var(--pure-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.calc-opt-btn {
  background: var(--off-white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate-700);
  transition: var(--transition-fast);
}

.calc-opt-btn:hover {
  border-color: var(--light-blue-400);
  background: var(--light-blue-50);
}

.calc-opt-btn.active {
  background: var(--royal-700);
  border-color: var(--royal-700);
  color: var(--pure-white);
  box-shadow: 0 4px 12px rgba(13, 104, 56, 0.25);
}

.calc-pest-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.calc-pest-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate-700);
  text-align: left;
  transition: var(--transition-fast);
}

.calc-pest-btn:hover {
  border-color: var(--light-blue-400);
  background: var(--light-blue-50);
}

.calc-pest-btn.active {
  background: var(--light-blue-50);
  border-color: var(--royal-600);
  color: var(--royal-900);
  box-shadow: 0 2px 8px rgba(13, 104, 56, 0.15);
}

.calc-pest-btn .pest-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
  margin-left: auto;
  flex-shrink: 0;
}

.calc-pest-btn.active .pest-radio {
  border-color: var(--royal-600);
  background: var(--royal-600);
  box-shadow: inset 0 0 0 3px var(--pure-white);
}

/* Calculator Result Box */
.calc-result-box {
  background: linear-gradient(145deg, var(--royal-900), var(--royal-800));
  color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-royal);
  position: relative;
  overflow: hidden;
}

.calc-result-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
}

.calc-result-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  color: var(--light-blue-400);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.calc-price-display {
  margin: 15px 0;
}

.calc-orig-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--light-blue-200);
  opacity: 0.7;
}

.calc-final-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pure-white);
  margin-top: 4px;
}

.calc-price-taxes {
  font-size: 0.78rem;
  color: var(--light-blue-200);
}

.calc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.calc-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-feature-list li svg {
  color: var(--light-blue-400);
  flex-shrink: 0;
}

.calc-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-book-btn {
  background: linear-gradient(135deg, var(--royal-600), var(--royal-500));
  color: var(--pure-white);
  font-weight: 800;
  font-size: 1rem;
  padding: 13px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.calc-book-btn:hover {
  background: linear-gradient(135deg, var(--royal-700), var(--royal-600));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.calc-call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--pure-white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px;
}

.calc-call-link:hover {
  color: var(--light-blue-400);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-600);
  box-shadow: var(--shadow-xl);
}

.service-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--light-blue-50);
  color: var(--royal-700);
  border: 1px solid var(--light-blue-200);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--light-blue-50), var(--light-blue-100));
  border: 1.5px solid var(--light-blue-200);
  color: var(--royal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card p.service-summary {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.55;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  color: var(--slate-700);
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-bullets li svg {
  color: var(--light-blue-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-start-price {
  font-size: 0.8rem;
  color: var(--slate-600);
}

.service-start-price strong {
  font-size: 1.15rem;
  color: var(--royal-900);
  font-weight: 800;
}

.service-warranty-pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Service Card Action Buttons */
.service-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-card-call {
  background: var(--light-blue-50);
  border: 1.5px solid var(--light-blue-200);
  color: var(--royal-700);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-card-call:hover {
  background: var(--royal-700);
  color: var(--pure-white);
  border-color: var(--royal-700);
}

.btn-card-book {
  background: linear-gradient(135deg, var(--royal-700), var(--royal-600));
  color: var(--pure-white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-card-book:hover {
  background: linear-gradient(135deg, var(--royal-800), var(--royal-700));
  box-shadow: 0 4px 12px rgba(13, 104, 56, 0.25);
}

/* ==========================================================================
   Interactive Before & After Comparison
   ========================================================================== */
.before-after-wrapper {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--light-blue-100);
  max-width: 1040px;
  margin: 0 auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px;
  align-items: center;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-after-view {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #094723, #042412);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--pure-white);
  padding: 20px;
  text-align: center;
}

.ba-before-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #3d2314, #271407);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--pure-white);
  padding: 20px;
  text-align: center;
  border-right: 3px solid var(--pure-white);
}

.ba-badge {
  position: absolute;
  top: 15px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 5;
}

.ba-badge.before {
  left: 15px;
  background: rgba(239, 68, 68, 0.9);
  color: var(--pure-white);
}

.ba-badge.after {
  right: 15px;
  background: rgba(34, 197, 94, 0.9);
  color: var(--pure-white);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--pure-white);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pure-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-800);
}

.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
}

.ba-visual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ba-visual-card svg {
  width: 80px;
  height: 80px;
}

.ba-visual-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
}

.ba-visual-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 280px;
}

.ba-content-col h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 12px;
  line-height: 1.25;
}

.ba-content-col p {
  font-size: 0.94rem;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.ba-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.ba-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-700);
}

.ba-checklist li svg {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Pest Diagnostic Finder (30-Second Identifier)
   ========================================================================== */
.diagnostic-container {
  max-width: 1040px;
  margin: 0 auto;
}

.diagnostic-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.diag-tab-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--pure-white);
  border: 1.5px solid var(--slate-200);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--slate-700);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.diag-tab-btn:hover {
  border-color: var(--light-blue-400);
  color: var(--royal-700);
}

.diag-tab-btn.active {
  background: var(--royal-700);
  border-color: var(--royal-700);
  color: var(--pure-white);
  box-shadow: 0 4px 14px rgba(13, 104, 56, 0.28);
}

.diag-card {
  display: none;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-blue-100);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}

.diag-card.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.diag-symptoms h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 8px;
}

.diag-species {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--light-blue-600);
  margin-bottom: 14px;
}

.diag-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.diag-symptom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.diag-symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--slate-700);
}

.diag-symptom-list li svg {
  color: var(--amber-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.diag-solution-box {
  background: var(--light-blue-50);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-blue-200);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.diag-solution-badge {
  display: inline-block;
  background: var(--royal-700);
  color: var(--pure-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.diag-solution-box h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 8px;
}

.diag-solution-box p {
  font-size: 0.88rem;
  color: var(--slate-700);
  margin-bottom: 20px;
}

.diag-actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   Why Us / Unique Selling Propositions
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light-blue-50);
  color: var(--royal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--light-blue-200);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   4-Stage Protocol / Process
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: var(--light-blue-400);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--light-blue-200);
  line-height: 1;
  margin-bottom: 12px;
}

.process-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ==========================================================================
   Testimonials / Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--light-blue-300);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--amber-500);
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--slate-700);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reviewer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-700), var(--light-blue-500));
  color: var(--pure-white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-meta h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--royal-900);
}

.reviewer-meta p {
  font-size: 0.76rem;
  color: var(--slate-600);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.74rem;
  margin-left: 4px;
}

/* ==========================================================================
   Service Areas Grid
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.area-card:hover {
  border-color: var(--royal-600);
  box-shadow: var(--shadow-md);
}

.area-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.area-header svg {
  color: var(--royal-600);
}

.area-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--royal-900);
}

.area-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.8;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-200);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--royal-600);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--royal-900);
  background: none;
  cursor: pointer;
}

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

.faq-chevron {
  transition: var(--transition-smooth);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--royal-600);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.65;
}

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

/* ==========================================================================
   Pre-Footer Urgency Banner
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--royal-900) 0%, var(--royal-800) 50%, var(--royal-700) 100%);
  color: var(--pure-white);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner-text h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-banner-text p {
  font-size: 1.08rem;
  color: var(--light-blue-100);
  max-width: 620px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #04190c;
  color: var(--slate-300);
  padding: 70px 0 25px 0;
  border-top: 3px solid var(--royal-700);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-brand .brand-name {
  color: var(--pure-white);
  margin-bottom: 14px;
}

.footer-col-brand p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--slate-300);
}

.footer-col h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-300);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--light-blue-400);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info li svg {
  color: var(--light-blue-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-info a {
  color: var(--pure-white);
  font-weight: 700;
}

/* Footer Quick Action Strip */
.footer-action-strip {
  background: linear-gradient(135deg, rgba(7, 53, 28, 0.75), rgba(4, 25, 12, 0.95));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 45px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.footer-action-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.18);
  color: var(--light-blue-400);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.footer-action-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-action-sub {
  color: var(--light-blue-200);
  font-size: 0.92rem;
  max-width: 620px;
  margin: 0 auto 24px auto;
  line-height: 1.5;
}

.footer-action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.footer-btn-call {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.footer-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.footer-btn-inspection {
  background: var(--royal-600);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 104, 56, 0.35);
}

.footer-btn-calc {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ==========================================================================
   Mid-Page Call To Action Strips
   ========================================================================== */
.mid-page-cta {
  margin: 35px 0 10px 0;
  background: linear-gradient(135deg, var(--royal-900) 0%, var(--royal-800) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  color: var(--pure-white);
  box-shadow: 0 12px 30px rgba(7, 71, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  position: relative;
  overflow: hidden;
}

.mid-page-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.mid-cta-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.mid-cta-text p {
  font-size: 0.92rem;
  color: var(--light-blue-100);
  margin: 0;
}

.mid-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.mid-cta-btn-call {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.mid-cta-btn-call:hover {
  background: #047857;
  transform: translateY(-2px);
  color: #ffffff;
}

.mid-cta-btn-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.mid-cta-btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.mid-cta-btn-modal {
  background: linear-gradient(135deg, var(--royal-500), var(--royal-600));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(13, 104, 56, 0.4);
}

.mid-cta-btn-modal:hover {
  background: linear-gradient(135deg, var(--royal-600), var(--royal-700));
  transform: translateY(-2px);
  color: #ffffff;
}

.process-cta-box {
  margin-top: 40px;
  text-align: center;
  padding: 24px;
  background: var(--light-blue-50);
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--light-blue-200);
}

.process-cta-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--royal-900);
  margin-bottom: 6px;
}

.process-cta-box p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.process-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .mid-page-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .mid-cta-btns {
    justify-content: center;
    width: 100%;
  }
  .mid-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .process-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .process-cta-row .btn-primary,
  .process-cta-row .footer-btn {
    width: 100%;
    justify-content: center;
  }
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ==========================================================================
   Floating Action Buttons (Desktop)
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 85px;
  right: 22px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: var(--whatsapp-green);
  color: var(--pure-white);
  animation: pulse-ring 2.5s infinite;
}

.float-call {
  background: var(--royal-700);
  color: var(--pure-white);
}

.float-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--rose-500);
  color: var(--pure-white);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pure-white);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   PestAura-Style Sticky Floating Pill Bar (Call Now | WhatsApp | Free Audit)
   ========================================================================== */
.sticky-cta-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #04190c;
  padding: 6px 8px;
  border-radius: 9999px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: dock-slide-up 0.5s ease-out;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  user-select: none;
}

@keyframes dock-slide-up {
  from {
    opacity: 0;
    transform: translate(-50%, 25px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.sticky-dock-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.dock-btn svg {
  flex-shrink: 0;
}

/* 1. Call Now button (dark forest green like pestdefender) */
.dock-btn-call {
  background: linear-gradient(180deg, #0d6838 0%, #074724 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(13, 104, 56, 0.35);
}

.dock-btn-call:hover {
  background: linear-gradient(180deg, #127943 0%, #0d6838 100%);
  transform: translateY(-1px);
}

/* 2. WhatsApp button (vibrant WhatsApp green) */
.dock-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.dock-btn-whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-1px);
}

/* 3. Cost Calculator button (dark forest pill with soft green border like pestdefender) */
.dock-btn-calc,
.dock-btn-audit {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.dock-btn-calc:hover,
.dock-btn-audit:hover {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
  transform: translateY(-1px);
}

.dock-btn:active {
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .sticky-cta-dock {
    bottom: 12px;
    padding: 5px 6px;
    max-width: calc(100% - 16px);
  }
  .sticky-dock-inner {
    gap: 5px;
  }
  .dock-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 5px;
  }
  .dock-btn svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 360px) {
  .dock-btn {
    padding: 7px 8px;
    font-size: 0.72rem;
    gap: 4px;
  }
}

/* ==========================================================================
   Inspection Booking Modal
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 25, 12, 0.82);
  backdrop-filter: blur(5px);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modal-pop 0.3s ease-out;
}

@keyframes modal-pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--slate-100);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--rose-500);
  color: var(--pure-white);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1140px) {
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .btn-header-call {
    padding: 6px 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .diag-card.active {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-links, .btn-header-call {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-features-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-action-strip {
    padding: 24px 16px;
  }
  .footer-action-title {
    font-size: 1.35rem;
  }
  .footer-action-btns {
    flex-direction: column;
    width: 100%;
  }
  .footer-btn {
    width: 100%;
  }
  body {
    padding-bottom: 75px;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .calculator-card, .before-after-wrapper, .diag-card, .hero-form-card {
    padding: 20px;
  }
}
