/* ============================================================
   POWER PEST CONTROL — COMMON STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&family=Baloo+2:wght@500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #F97316;
  --primary-dark:   #EA6A0A;
  --primary-light:  #FDBA74;
  --secondary:      #16A34A;
  --secondary-dark: #15803D;
  --accent:         #FEF3C7;
  --accent2:        #DCFCE7;
  --dark:           #1C1917;
  --dark2:          #292524;
  --body-bg:        #FFFBF5;
  --muted:          #78716C;
  --muted-light:    #A8A29E;
  --white:          #FFFFFF;
  --cream:          #FFFBF5;
  --yellow-tint:    #FEF3C7;
  --wa-green:       #25D366;
  --wa-dark:        #1DA852;
  --border:         #E7E5E4;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:      0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl:      0 20px 40px rgba(0,0,0,0.15);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    999px;
  --font-heading:   'Nunito', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-accent:    'Baloo 2', sans-serif;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  display: none;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--white); transition: var(--transition); }
.top-bar a:hover { opacity: 0.8; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}
.nav-logo span { color: var(--secondary); }
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow-tint);
  color: var(--primary);
}
.btn-nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.btn-nav-cta:hover {
  background: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  border-radius: 8px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
  gap: 4px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--yellow-tint); color: var(--primary); }
.mobile-nav .btn-nav-cta {
  margin-top: 8px;
  background: var(--secondary) !important;
  color: var(--white) !important;
  text-align: center;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Styles ────────────────────────────────────────── */
section { padding: 90px 0; }
.section-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-label.green { background: var(--secondary); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.bg-cream    { background: var(--cream); }
.bg-yellow   { background: var(--yellow-tint); }
.bg-white    { background: var(--white); }
.bg-dark     { background: var(--dark2); }
.bg-green-soft { background: var(--accent2); }

/* ── Page Hero Banner (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #FB923C 60%, #FBBF24 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 580px; margin: 0 auto 18px; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.6; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.card-icon {
  width: 64px; height: 64px;
  background: var(--yellow-tint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--primary); transform: scale(1.08); }
.card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.card p  { font-size: 0.93rem; color: var(--muted); }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.card-link:hover { gap: 8px; }

/* ── Grid layouts ──────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-top: 4px solid var(--primary);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.stat-icon  { font-size: 2rem; margin-bottom: 8px; }

/* ── Floating WhatsApp Button ──────────────────────────────── */
.btn-float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}
.btn-float-wa:hover { background: var(--wa-dark); transform: scale(1.12); }
.btn-float-wa svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ── Scroll to Top ─────────────────────────────────────────── */
.btn-scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  width: 46px; height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.btn-scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.btn-scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Floating Call Now Button ──────────────────────────────── */
.btn-float-call {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 58px; height: 58px;
  background: #2563EB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  transition: var(--transition);
  animation: callPulse 2.5s infinite;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}
.btn-float-call:hover { background: #1D4ED8; transform: scale(1.12); }
@keyframes callPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,99,235,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,99,235,0.7), 0 0 0 10px rgba(37,99,235,0.12); }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo span { color: var(--primary); }
.footer p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(249,115,22,0.4);
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact .icon {
  width: 32px; height: 32px;
  background: rgba(249,115,22,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: white;
}
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom span { color: var(--primary); font-weight: 700; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  justify-content: space-between;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: rgba(249,115,22,0.1);
  border-radius: 4px;
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
.step-bubble {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--primary);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-bubble {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.process-step h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.process-step p  { font-size: 0.95rem; color: var(--muted); max-width: 260px; margin: 0 auto; }

/* ── Testimonial Cards ─────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: var(--dark); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FB923C);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.t-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.t-meta { font-size: 0.8rem; color: var(--muted); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #FB923C 50%, #FBBF24 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 auto 90px;
  width: 90%;
  max-width: 1200px;
  box-shadow: var(--shadow-xl);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; position: relative; font-weight: 900; text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.cta-banner p  { color: rgba(255,255,255,0.95); font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; font-weight: 500; }
.cta-banner-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--yellow-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}
.faq-question.open .faq-chevron { background: var(--primary); color: white; transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer.open { display: block; }
.faq-category {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

/* ── Form Styles ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
.form-control::placeholder { color: var(--muted-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 7px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.radio-label input { display: none; }
.radio-label:has(input:checked),
.radio-label.selected {
  background: var(--yellow-tint);
  border-color: var(--primary);
  color: var(--primary);
}
.radio-label:hover { border-color: var(--primary-light); }

/* ── Contact Info Card ─────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  height: fit-content;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--yellow-tint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 3px; font-size: 0.95rem; }
.contact-info-text span { font-size: 0.9rem; color: var(--muted); }

/* ── Map container ─────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.map-placeholder {
  background: linear-gradient(135deg, #e8f4f8, #d1ecf1);
  height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.map-placeholder .map-icon { font-size: 3rem; }

/* ── Feature Category Cards ────────────────────────────────── */
.feat-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.feat-card.residential { background: linear-gradient(145deg, #F97316, #FB923C); }
.feat-card.commercial  { background: linear-gradient(145deg, #16A34A, #22C55E); }
.feat-card.prevention  { background: linear-gradient(145deg, #7C3AED, #A855F7); }
.feat-card .feat-icon { font-size: 3.5rem; margin-bottom: 16px; }
.feat-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.feat-card p  { font-size: 0.92rem; opacity: 0.9; color: rgba(255,255,255,0.9); }
.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Benefit Tile ──────────────────────────────────────────── */
.benefit-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  display: flex; gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.benefit-tile:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon {
  width: 58px; height: 58px;
  background: var(--yellow-tint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.benefit-tile h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.benefit-tile p  { font-size: 0.9rem; color: var(--muted); }

/* ── AOS-like scroll animation ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-float-wa { bottom: 20px; right: 20px; }
  .btn-scroll-top { bottom: 20px; left: 20px; }
  .top-bar .container { flex-direction: column; text-align: center; gap: 4px; }
  .top-bar-right { justify-content: center; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 14px 24px; }
}
