/* PESTINIL Modern Responsive & High-Readability Stylesheet
   Tailored for Senior UI/UX Standards & cPanel Static Deployment */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #022c22;        /* Deep Emerald 950 */
  --primary-light: #065f46;  /* Emerald 800 */
  --primary-accent: #059669; /* Emerald 600 */
  --emerald-accent: #10b981; /* Emerald 500 */
  --emerald-bg: #ecfdf5;     /* Emerald 50 */
  --brand-red: #c8102e;     /* Official Pestinil Red */
  --brand-red-dark: #990b22;
  --amber-gold: #f59e0b;    /* Gold 500 */
  --amber-light: #fef3c7;   /* Gold 100 */
  --slate-dark: #0f172a;    /* Slate 900 */
  --slate-body: #334155;    /* Slate 700 - High legibility body text */
  --slate-muted: #64748b;   /* Slate 500 */
  --slate-light: #f8fafc;   /* Slate 50 background */
  --border-color: #e2e8f0;
  
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 20px -4px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 30px -10px rgba(0,0,0,0.12);
  --shadow-emerald: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate-body);
  background-color: #ffffff;
  font-size: 18px; /* High legibility default for 40+ audience */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-dark);
  font-weight: 700;
  line-height: 1.3;
}

/* User Prompt Font Size Specification */
h1, .main-heading {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
}

h2, .section-heading {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}

h3, .subheading {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.4;
}

p, li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-body);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Live Counter & Performance Tracker Styles */
.live-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
}

.live-counter.counter-tick {
  transform: scale(1.08);
  color: var(--emerald-accent) !important;
}

.live-pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
  animation: livePulse 1.8s infinite;
  vertical-align: middle;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.stat-card {
  border-top: 3px solid var(--emerald-accent) !important;
}

/* Base Utility Classes */
.text-primary-accent { color: var(--primary-accent) !important; }
.text-brand-red { color: var(--brand-red) !important; }
.bg-slate-light { background-color: var(--slate-light) !important; }

/* Seasonal Pest Calendar Styles */
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.risk-very-high { background-color: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
.risk-high { background-color: #ffedd5; color: #ea580c; border: 1px solid #fdba74; }
.risk-moderate { background-color: #fef9c3; color: #ca8a04; border: 1px solid #fde047; }
.risk-low { background-color: #dcfce7; color: #16a34a; border: 1px solid #86efac; }

.month-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.month-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-accent);
  box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.15);
}
.month-card.active-month {
  border-color: var(--emerald-accent);
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.month-card.is-current-month {
  border: 2.5px solid var(--primary);
}
.month-card.is-current-month::before {
  content: 'CURRENT MONTH';
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.pest-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f5f9;
  color: var(--slate-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  margin: 3px;
}
.amc-recommended-badge {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Header & Top Bar */
.header-top {
  background-color: var(--primary);
  color: #a7f3d0;
  font-size: 14px;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top a {
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
}

.header-top a:hover {
  background: var(--emerald-accent);
  color: #022c22;
}

/* Sticky Main Navigation */
.main-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 16px; /* High legibility navigation text */
  color: var(--slate-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--emerald-accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-accent);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Buttons - Large 18px Target for Senior UX */
.btn-cta, .btn-brand-red, .btn-emerald, .btn-outline {
  font-family: var(--font-heading);
  font-size: 17px !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-cta {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #022c22 !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.4);
}

.btn-brand-red {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3);
}

.btn-brand-red:hover {
  background: linear-gradient(135deg, #dc2626 0%, #88071b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.45);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-accent) 0%, var(--primary-light) 100%);
  color: #ffffff !important;
  box-shadow: var(--shadow-emerald);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #022c22 100%);
  color: #ffffff;
  padding: 72px 24px 88px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(110, 231, 183, 0.3);
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  color: #d1fae5;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h4 {
  font-size: 32px;
  color: var(--amber-gold);
  font-weight: 800;
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 14px;
  color: #d1fae5;
  margin-bottom: 0;
  font-weight: 500;
}

/* Hero Quick Form Card */
.hero-form-card {
  background: #ffffff;
  color: var(--slate-dark);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.hero-form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-form-card p {
  font-size: 15px;
  color: var(--slate-muted);
  margin-bottom: 20px;
}

.form-control, .form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--slate-dark);
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--emerald-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Sections & Whitespace */
.section {
  padding: 88px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  color: var(--slate-muted);
  font-size: 18px;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: var(--slate-light);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Comparison Card for Annual Contracts Flagship */
.comparison-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.recommended {
  border-color: var(--emerald-accent);
  box-shadow: var(--shadow-emerald);
}

.comparison-badge {
  position: absolute;
  top: -16px;
  right: 32px;
  background: var(--emerald-accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Professional Affiliations & Certifications Cards */
.affiliation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.affiliation-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.affiliation-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: 0 12px 28px -6px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.affiliation-card.featured-card {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.affiliation-logo-wrapper {
  width: 100%;
  height: 110px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

.affiliation-logo-img {
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 75px;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.affiliation-card:hover .affiliation-logo-img {
  transform: scale(1.03);
}

.affiliation-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.affiliation-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--emerald-bg);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 14px;
}

.affiliation-desc {
  font-size: 14px;
  color: var(--slate-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.affiliation-disclaimer-box {
  background: #f8fafc;
  border-left: 3px solid #00a896;
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.45;
  margin-top: 8px;
}

.affiliation-disclaimer-box i {
  color: #00a896;
  margin-right: 5px;
}

/* Client Logo Grid & Marquee Normalization */
.logo-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
  user-select: none;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: logoMarqueeScroll 32s linear infinite;
  will-change: transform;
}

.logo-marquee-wrapper:hover .logo-marquee-track,
.logo-marquee-wrapper:active .logo-marquee-track,
.logo-marquee-track:hover,
.logo-marquee-track:active {
  animation-play-state: paused;
}

@keyframes logoMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Equal-Sized Normalized Container (220px x 120px) */
.client-logo-box,
.client-logo-card {
  width: 220px;
  height: 120px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
}

.client-logo-box:hover,
.client-logo-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
  background-color: #ffffff;
  transform: none !important; /* STRICTLY DO NOT ENLARGE OR TRANSLATE ON HOVER */
}

.client-logo-img {
  width: 100%;
  height: 100%;
  max-width: 170px;
  max-height: 85px;
  object-fit: contain;
  filter: none !important; /* ALL LOGOS COLORFUL */
  opacity: 1 !important;
  transition: opacity 0.3s ease;
  transform: none !important; /* STRICTLY PREVENT LOGO SCALING ON HOVER */
  margin: 0 auto;
}

.client-logo-box:hover .client-logo-img,
.client-logo-card:hover .client-logo-img {
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Our Clients Gallery Layout */
.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .client-logo-box,
  .client-logo-card {
    width: 180px;
    height: 100px;
    min-width: 180px;
    padding: 12px 18px;
  }
  
  .client-logo-img {
    max-width: 140px;
    max-height: 65px;
  }
  
  .client-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 414px) {
  .client-logo-box,
  .client-logo-card {
    width: 150px;
    height: 90px;
    min-width: 150px;
    padding: 10px 14px;
  }
  
  .client-logo-img {
    max-width: 120px;
    max-height: 55px;
  }
  
  .client-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}

/* Sticky Action Bar & Floating Contact Buttons */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none !important;
}

.float-whatsapp {
  background: #25d366;
  animation: pulseGlow 2s infinite;
}

.float-whatsapp:hover {
  background: #1eb956;
  transform: scale(1.12);
}

.float-phone {
  background: var(--brand-red);
}

.float-phone:hover {
  background: #a00c24;
  transform: scale(1.12);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: #ffffff;
  padding: 88px 24px 36px;
  border-top: 4px solid var(--amber-gold);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h3 {
  font-size: 20px;
  color: var(--amber-gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #a7f3d0;
}

.footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 15px;
  color: #6ee7b7;
}

/* Inspection Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 44, 34, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: #ffffff;
  max-width: 560px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--slate-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-dark);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }
  .header-top {
    justify-content: center;
    text-align: center;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-bottom: 3px solid var(--emerald-accent);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .section {
    padding: 56px 16px;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .btn-cta, .btn-brand-red, .btn-emerald, .btn-outline {
    width: 100%;
  }
}

/* Compliance & Audit Support Page Styles */
.audit-standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.audit-standard-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.audit-standard-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: 0 12px 28px -6px rgba(16, 185, 129, 0.16);
  transform: translateY(-4px);
}

.audit-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--emerald-bg);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

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

.audit-service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.audit-service-card:hover {
  border-color: var(--emerald-accent);
  background: #f0fdf4;
  box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.audit-service-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--emerald-bg);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.industry-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.industry-support-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.industry-support-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

.industry-support-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.25s ease;
}

.industry-support-card:hover .industry-support-icon {
  background: var(--emerald-bg);
  color: var(--primary-light);
}

.audit-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.audit-doc-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--emerald-accent);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.audit-doc-card:hover {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
  transform: translateX(4px);
  background: #fafafa;
}

.disclaimer-banner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #00a896;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0 20px;
  box-shadow: var(--shadow-sm);
}

/* How We Protect Your Property - Process Timeline Styles */
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .process-timeline-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.process-step-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: var(--shadow-emerald);
  transform: translateY(-5px);
  background: #ffffff;
}

.process-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--amber-gold);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid var(--amber-gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--emerald-bg);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.process-step-card:hover .process-step-icon {
  background: var(--primary-light);
  color: #ffffff;
}

.process-step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 15px;
  color: var(--slate-body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Desktop Connector Line / Arrow */
@media (min-width: 1025px) {
  .process-step-card:not(:last-child)::after {
    content: "\f054"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -15px;
    top: 48px;
    font-size: 16px;
    color: var(--emerald-accent);
    background: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  }
}

/* Who We Help - Clean Icon Grid Styles */
.who-we-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.who-we-help-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  cursor: default;
}

.who-we-help-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: 0 10px 24px -4px rgba(16, 185, 129, 0.15);
  transform: translateY(-3px);
  background: #f0fdf4;
}

.who-we-help-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--emerald-bg);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.25s ease;
}

.who-we-help-card:hover .who-we-help-icon {
  background: var(--primary);
  color: var(--amber-gold);
}

.who-we-help-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-dark);
  margin: 0;
  line-height: 1.2;
}

/* Emergency Pest Control Section */
.emergency-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius);
  border-left: 6px solid var(--brand-red);
  padding: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.emergency-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.emergency-item:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
}

.emergency-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.emergency-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Pricing Guide Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--emerald-accent);
  box-shadow: var(--shadow-emerald);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-accent);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-muted);
}

/* Service Areas Grid */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-area-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.service-area-card:hover {
  border-color: var(--emerald-accent);
  background: #f0fdf4;
  transform: translateY(-2px);
}

.service-area-icon {
  color: var(--emerald-accent);
  font-size: 18px;
}

.service-area-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-dark);
  margin: 0;
}

/* Mobile Floating Contact Bar (Bottom) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
  }
  
  /* Add padding to body or footer so bottom bar doesn't cover content */
  body {
    padding-bottom: 60px;
  }

  .floating-contact-widget {
    bottom: 75px !important; /* adjust widget above bar on mobile */
  }
}

.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.mobile-bar-call {
  background: var(--brand-red);
  color: #ffffff;
}

.mobile-bar-wa {
  background: #25d366;
  color: #ffffff;
}

.mobile-bar-inspect {
  background: var(--emerald-accent);
  color: #ffffff;
}

