/* ============================================================
   Clean & Green Pest Control — Homepage
   Fonts: Sora (display) + Inter (body)
   ============================================================ */

:root {
  --ink:        #14181d;   /* headings / near-black */
  --body:       #4a5560;   /* body text */
  --muted:      #7b8794;   /* secondary text */
  --line:       #e7eaee;   /* hairline borders */
  --bg:         #ffffff;
  --bg-soft:    #f5f8f6;   /* faint green-tinted panel */
  --bg-tint:    #eef4ee;

  --blue:       #0071bc;   /* brand blue */
  --blue-dark:  #005a96;
  --green:      #6fb63b;   /* brand green (slightly deepened) */
  --green-dark: #57962c;

  --hero-green: #14361d;   /* hero background dark forest green */
  --yellow:     #ecc94b;   /* hero accent yellow */
  --yellow-dark:#e0ba32;
  --lime:       #a9d84a;   /* highlight lime */

  --radius:     16px;
  --radius-sm:  12px;
  --shadow:     0 1px 2px rgba(20,24,29,.04), 0 12px 32px -12px rgba(20,24,29,.12);
  --shadow-lg:  0 24px 60px -20px rgba(20,24,29,.22);

  --maxw: 1830px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Sora", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* height:auto keeps the intrinsic width/height attributes from stretching images */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 2.2vw, 40px);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  isolation: isolate;
}
.btn .arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--green { --btn-bg: var(--green); --btn-fg: #fff; }
.btn--green:hover { --btn-bg: var(--green-dark); }

.btn--blue { --btn-bg: var(--blue); --btn-fg: #fff; }
.btn--blue:hover { --btn-bg: var(--blue-dark); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: transparent; }

.btn--white { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--white:hover { --btn-bg: #fff; }

.btn--yellow { --btn-bg: var(--yellow); --btn-fg: #16331c; }
.btn--yellow:hover { --btn-bg: var(--yellow-dark); }

.btn--outline-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.38);
}
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.08); border-color: #fff; }

/* text link with sliding arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--green-dark);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 11px; color: var(--green); }
.link-arrow:hover svg { transform: translateX(2px); }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section { padding: 112px 0; }
.section-head { max-width: 780px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
h2.title {
  font-size: clamp(32px, 3.4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
}
.section-head p {
  margin-top: 20px;
  font-size: 18.5px;
  color: var(--muted);
}

/* ============================================================
   Header
   ============================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,.85); transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 26px; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left svg { width: 15px; height: 15px; color: var(--green); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social svg { width: 15px; height: 15px; }

/* Floating white "pill" header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px max(20px, 3vw);
  transition: padding .3s var(--ease);
}
.site-header.scrolled { padding-top: 12px; padding-bottom: 12px; }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 0 18px 0 30px;
  box-shadow: 0 2px 6px rgba(20, 24, 29, .05), 0 18px 40px -22px rgba(20, 24, 29, .28);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled .header-inner {
  box-shadow: 0 2px 6px rgba(20, 24, 29, .06), 0 22px 46px -20px rgba(20, 24, 29, .34);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 52px; width: auto; }

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--body);
  padding: 9px 15px;
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.nav-links a:hover { background: var(--bg-tint); color: var(--green-dark); }

/* ---- Services dropdown ------------------------------------------------ */
.has-drop { position: relative; }

.drop-trigger { display: inline-flex; align-items: center; gap: 6px; }
.drop-caret {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease);
}
.has-drop:hover .drop-caret,
.has-drop:focus-within .drop-caret { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 14px;                 /* keeps hover alive across the gap */
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 120;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  width: 620px;
  max-height: calc(100vh - 140px);   /* short laptop screens scroll inside the panel */
  overflow-y: auto;
  max-width: calc(100vw - 40px);
}
.drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
}

/* one row in the panel — background sweeps in from the left, arrow slides in */
.nav-links .drop-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  background: none;                  /* cancels the pill hover from .nav-links a */
  transition: color .3s var(--ease);
}
.nav-links .drop-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-tint);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--ease);
  z-index: 0;
}
.nav-links .drop-link:hover,
.nav-links .drop-link:focus-visible { background: none; color: var(--green-dark); }
.nav-links .drop-link:hover::before,
.nav-links .drop-link:focus-visible::before { transform: scaleX(1); }

.nav-links .drop-link.is-current { color: var(--green-dark); font-weight: 600; }
.nav-links .drop-link.is-current::before { transform: scaleX(1); background: var(--bg-soft); }
.dl-t { position: relative; z-index: 1; }
.dl-a {
  position: relative;
  z-index: 1;
  width: 15px; height: 15px;
  flex: none;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav-links .drop-link:hover .dl-a,
.nav-links .drop-link:focus-visible .dl-a { opacity: 1; transform: translateX(0); }

/* footer row of the panel */
.drop-foot {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.nav-links .drop-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--green-dark);
  background: var(--bg-soft);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-links .drop-all svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.nav-links .drop-all:hover { background: var(--green); color: #fff; }
.nav-links .drop-all:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .drop, .drop-caret, .nav-links .drop-link::before, .dl-a, .nav-links .drop-all svg { transition: none; }
}

.nav-cta { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink); white-space: nowrap;
  transition: color .25s;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--green); }
.nav-phone:hover { color: var(--green-dark); }

/* "Book A Service" — solid pill button in the header */
.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(111, 182, 59, .55);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-book:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(111, 182, 59, .7);
}
.nav-book:active { transform: translateY(0); transition-duration: .1s; }
.nav-book-ic {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-book-ic svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.nav-book:hover .nav-book-ic { background: rgba(255, 255, 255, .32); transform: rotate(45deg); }
.nav-book:hover .nav-book-ic svg { transform: rotate(-45deg); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Mobile menu drawer
   ============================================================ */
.m-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  pointer-events: none;
}
.m-menu.open { visibility: visible; pointer-events: auto; }
.m-menu::before {                       /* backdrop */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 14, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.m-menu.open::before { opacity: 1; }

.m-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(90vw, 400px);
  background: var(--hero-green);
  color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px 26px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.5);
}
.m-menu.open .m-menu-panel { transform: translateX(0); }

.m-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.m-menu-logo { height: 44px; width: auto; }
.m-close {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.m-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }
.m-close svg { width: 19px; height: 19px; }

/* nav links */
.m-nav { display: flex; flex-direction: column; padding: 10px 0 4px; }
.m-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  /* staggered entrance */
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .25s;
}
.m-menu.open .m-nav a { opacity: 1; transform: translateX(0); }
.m-menu.open .m-nav a:nth-child(1) { transition-delay: .12s; }
.m-menu.open .m-nav a:nth-child(2) { transition-delay: .17s; }
.m-menu.open .m-nav a:nth-child(3) { transition-delay: .22s; }
.m-menu.open .m-nav a:nth-child(4) { transition-delay: .27s; }
.m-menu.open .m-nav a:nth-child(5) { transition-delay: .32s; }
.m-menu.open .m-nav a:nth-child(6) { transition-delay: .37s; }
.m-menu.open .m-nav a:nth-child(7) { transition-delay: .42s; }
.m-num {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--yellow);
  min-width: 22px;
}
.m-label {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.m-arrow {
  width: 18px; height: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.m-nav a:hover { color: var(--lime); }
.m-nav a:hover .m-arrow { opacity: 1; transform: translateX(0); }

/* CTA */
.m-cta {
  margin: 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--yellow);
  color: #16331c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  padding: 16px 16px 16px 22px;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.m-cta:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.m-cta-ic {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #16331c;
  color: var(--yellow);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.m-cta-ic svg { width: 16px; height: 16px; }
.m-cta:hover .m-cta-ic { transform: rotate(45deg); }

/* contact block */
.m-contact-head {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.m-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: #fff;
  margin-bottom: 10px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.m-row:not(.static):hover { background: rgba(255,255,255,.11); transform: translateX(3px); }
.m-row-ic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  color: var(--lime);
  display: grid; place-items: center;
}
.m-row-ic.wa { color: #25D366; }
.m-row-ic svg { width: 19px; height: 19px; }
.m-row i {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 2px;
}
.m-row b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  word-break: break-word;
}

.m-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.m-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(169,216,74,.22);
}

.m-social {
  display: flex;
  gap: 11px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.m-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.m-social a:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.m-social svg { width: 17px; height: 17px; }

@media (prefers-reduced-motion: reduce) {
  .m-menu-panel, .m-nav a { transition: none; }
  .m-menu .m-nav a { opacity: 1; transform: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  margin-top: -116px;                /* slide up under the floating header */
  padding: 0;
  background: var(--hero-green);
  color: #fff;
  overflow: hidden;
}
.hero-full { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 800px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* clears the floating header, and aligns text to the page gutter */
  padding: 160px 5vw 100px max(24px, calc((100vw - var(--maxw)) / 2 + clamp(20px, 2.2vw, 40px)));
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
/* fade the copy while the slider swaps */
.hero-eyebrow, .hero h1 { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.hero-copy.swapping .hero-eyebrow,
.hero-copy.swapping h1 { opacity: 0; transform: translateY(10px); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 4.4vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.hero h1 .hl {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 9px;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-rating {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-rating .avatars { display: flex; }
.hero-rating .avatars span {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  margin-left: -12px;
  background: #21492c;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--yellow);
}
.hero-rating .avatars span:first-child { margin-left: 0; }
.hero-rating .rate {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.hero-rating .rate b { color: #fff; }

.hero-visual { position: relative; min-height: 480px; }
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 6s ease-out;
}
.hero-slider img.active { opacity: 1; transform: scale(1); }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: #16331c;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: background .25s, transform .25s;
}
.hero-nav:hover { background: var(--yellow-dark); transform: translateY(-50%) scale(1.08); }
.hero-nav svg { width: 20px; height: 20px; }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }

.hero-slider-dots {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 2;
}
.hero-slider-dots button {
  width: 9px; height: 9px; border-radius: 999px;
  border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.5);
  transition: width .3s var(--ease), background .3s;
}
.hero-slider-dots button.active { width: 26px; background: var(--yellow); }

/* ============================================================
   Tabbed content (service page)
   ============================================================ */
.tabs-sec { background: var(--bg-soft); }
.tabs { margin-top: 54px; }

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease), transform .35s var(--ease);
}
.tab-btn:hover { border-color: rgba(111,182,59,.5); transform: translateY(-2px); }
.tab-btn.active {
  background: var(--hero-green);
  border-color: var(--hero-green);
  box-shadow: var(--shadow);
}
.tab-n {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.tab-btn.active .tab-n { background: var(--yellow); color: #16331c; }
.tab-l {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.3;
  transition: color .35s var(--ease);
}
.tab-btn.active .tab-l { color: #fff; }

/* panels */
.tabs-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.tab-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  animation: tabIn .45s var(--ease);
}
.tab-panel[hidden] { display: none; }
@keyframes tabIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.tab-copy { padding: clamp(28px, 3.2vw, 52px); }
.tab-copy h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.24;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.tab-copy p {
  font-size: 16.5px;
  line-height: 1.76;
  color: var(--body);
  margin-bottom: 16px;
}
.tab-copy p strong { color: var(--ink); font-weight: 600; }
.tab-copy a { color: var(--green-dark); font-weight: 600; }
.tab-copy a:hover { text-decoration: underline; text-underline-offset: 3px; }

.tab-list {
  list-style: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.tab-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.tab-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(111,182,59,.16);
}

.tab-media { position: relative; min-height: 320px; }
.tab-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   Comparison columns (why-us page)
   ============================================================ */
.cmp-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.cmp-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 32px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cmp-col:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cmp-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.cmp-tag--bad  { background: #fdeceb; color: #b23c33; }
.cmp-tag--good { background: var(--bg-tint); color: var(--green-dark); }
.cmp-col ul { list-style: none; display: grid; gap: 15px; }
.cmp-col li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}
.cmp-col li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.cmp-col--bad li::before  { content: "\00d7"; background: #fdeceb; color: #b23c33; }
.cmp-col--good li::before { content: "\2713"; background: var(--bg-tint); color: var(--green-dark); font-size: 11px; }
.cmp-col--good { border-color: rgba(111,182,59,.35); }

/* ============================================================
   FAQ groups (faqs page)
   ============================================================ */
.faq-group + .faq-group { margin-top: 76px; padding-top: 68px; border-top: 1px solid var(--line); }
.faq-group-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto 44px;
}
.faq-group-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
}
.faq-group-head .title { font-size: clamp(26px, 2.6vw, 36px); }
.faq-group-head p { margin-top: 10px; font-size: 16.5px; color: var(--muted); }

/* ============================================================
   Contact cards (contact page)
   ============================================================ */
.ct-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.ct-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.ct-ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.ct-ic svg { width: 27px; height: 27px; }
.ct-card:hover .ct-ic { background: var(--green); color: #fff; }
.ct-ic--wa { color: #25D366; }
.ct-card:hover .ct-ic--wa { background: #25D366; color: #fff; }
.ct-lbl {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.ct-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  word-break: break-word;
}
.ct-note { font-size: 14px; color: var(--muted); margin-top: auto; }

.ct-list { list-style: none; margin: 26px 0 32px; display: grid; gap: 16px; }
.ct-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.6; color: var(--body); }
.ct-list strong { color: var(--ink); font-weight: 600; }
.ct-list-ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  margin-top: 2px;
}
.ct-list-ic svg { width: 13px; height: 13px; }

/* ============================================================
   Inner-page hero (compact)
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: -116px;                 /* sits under the floating header */
  padding: 178px 0 84px;
  background: var(--hero-green);
  color: #fff;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  right: -120px; top: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(111,182,59,.3), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.crumbs a { color: rgba(255,255,255,.85); transition: color .25s; }
.crumbs a:hover { color: var(--yellow); }
.crumbs [aria-current] { color: var(--yellow); }

.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 3.8vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.page-hero h1 .hl {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 9px;
}
.page-hero-copy p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 60ch;
}
.page-hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero split: copy left, image right */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}
.page-hero-media { position: relative; }
.page-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Values cards (about page)
   ============================================================ */
.vals-sec { background: var(--bg-soft); }
.vals-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.val-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 32px 34px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.val-num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  color: var(--bg-tint);
  line-height: 1;
}
.val-ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.val-card:hover .val-ic { background: var(--green); color: #fff; }
.val-ic svg { width: 28px; height: 28px; }
.val-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.val-card p { font-size: 15.5px; line-height: 1.7; color: var(--muted); }

/* ============================================================
   What sets us apart (about page)
   ============================================================ */
.apart-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.apart-media { position: relative; }
.apart-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.apart-lead { margin-top: 20px; font-size: 17px; line-height: 1.7; color: var(--body); }
.apart-list { list-style: none; margin-top: 34px; display: grid; gap: 26px; counter-reset: apart; }
.apart-list li { display: flex; gap: 20px; align-items: flex-start; }
.apart-n {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  transition: transform .3s var(--ease);
}
.apart-list li:hover .apart-n { transform: scale(1.08); }
.apart-list h3 { font-size: 19px; font-weight: 600; margin-bottom: 7px; }
.apart-list p { font-size: 15.5px; line-height: 1.68; color: var(--muted); }

/* ============================================================
   Pests we handle (about page)
   ============================================================ */
.pests-wrap { margin-top: 96px; padding-top: 76px; border-top: 1px solid var(--line); }
.pest-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* matches the homepage service-card style: light panel, inset image */
.pest-item {
  background: #eff1ec;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.pest-item:hover {
  transform: translateY(-6px);
  background: var(--bg-tint);
  box-shadow: var(--shadow);
}
.pest-img {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background: #e3e8e1;
}
.pest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pest-item:hover .pest-img img { transform: scale(1.06); }
.pest-body {
  padding: 24px 10px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;                             /* keeps the footer aligned across a row */
}
.pest-item h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.pest-item p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin-bottom: 22px; }
.pest-item .sc-foot { margin-top: auto; }

/* ============================================================
   Treatment columns (service page)
   ============================================================ */
.treat-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.treat-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.treat-col:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.treat-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.treat-col .check-list { margin: 0; gap: 14px; }
.treat-col .check-list li { font-size: 15.5px; }

/* ============================================================
   Related service chips (service page)
   ============================================================ */
.rel-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.rel-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.rel-chip svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.rel-chip:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.rel-chip:hover svg { transform: translateX(3px); }

/* ============================================================
   About (intro) — text + stacked flyer images
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.about-intro-copy .title {
  font-size: clamp(32px, 3.2vw, 52px);
  margin-top: 14px;
}
.about-intro-text { margin-top: 24px; display: grid; gap: 17px; }
.about-intro-text p { font-size: 17px; line-height: 1.75; color: var(--body); }
.about-intro-text b { color: var(--ink); font-weight: 600; }

.about-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.about-call { display: flex; align-items: center; gap: 14px; }
.about-call .ic {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--green);
  transition: background .25s, color .25s, border-color .25s;
}
.about-call:hover .ic { background: var(--green); color: #fff; border-color: var(--green); }
.about-call .ic svg { width: 22px; height: 22px; }
.about-call .lbl {
  display: block;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.about-call .no { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--ink); }

.about-intro-media { position: sticky; top: 108px; }

/* single overview image (4:3 source, e.g. 800x600) */
.media-single {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-single img {
  display: block;
  width: 100%;
  height: auto;          /* keeps the native 4:3 ratio, no cropping */
}
.media-stack { position: relative; padding-bottom: 64px; }
.media-main {
  width: 82%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.media-sub {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Affordable — text + image
   ============================================================ */
.affordable-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.affordable-copy .title { font-size: clamp(32px, 3.2vw, 52px); }
.affordable-copy > p { margin-top: 22px; font-size: 17px; line-height: 1.75; color: var(--body); }
.affordable-copy > p b { color: var(--ink); font-weight: 600; }
.affordable-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin-top: 30px;
}
.check-list { list-style: none; margin: 22px 0 28px; display: grid; gap: 15px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--body);
  line-height: 1.55;
}
.check-list .ck {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  margin-top: 1px;
}
.check-list .ck svg { width: 15px; height: 15px; }
.affordable-actions { margin-top: 30px; }
.affordable-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Services
   ============================================================ */
.services-sec .section-head.center { margin-bottom: 54px; }

/* ============================================================
   Book a Service (inline) — image left, form right
   ============================================================ */
.book-sec { background: #eef6ee; }          /* very light green */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.book-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow-lg);
}
.book-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.book-panel {
  background: #fff;
  border-radius: 24px;
  padding: 44px 44px 38px;
  box-shadow: 0 1px 2px rgba(20,24,29,.04), 0 18px 44px -24px rgba(20,24,29,.22);
}
.book-panel .title { font-size: clamp(30px, 2.8vw, 44px); }
.book-lead { margin-top: 14px; font-size: 17px; color: var(--muted); }
.book-panel .booking-form { margin-top: 28px; }

/* ---- services grid ---- */
.services-grid3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card2 {
  display: flex;
  flex-direction: column;
  background: #eff1ec;                 /* light panel, image inset within it */
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 16px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.service-card2:hover {
  transform: translateY(-6px);
  background: var(--bg-tint);
  box-shadow: var(--shadow);
}
.sc-img {
  display: block;            /* it is an <a> — keep it behaving as a block */
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background: #e3e8e1;
}
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card2:hover .sc-img img { transform: scale(1.06); }

.sc-body {
  padding: 24px 10px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;                             /* keeps the footer row aligned across each row */
}
.sc-body h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em; }
.sc-body p { font-size: 15.5px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }

/* footer row: label left, hooked arrow right */
.sc-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 24, 29, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sc-foot-lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.service-card2:hover .sc-foot-lbl { color: var(--green-dark); }
.sc-foot-ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.sc-foot-ic svg { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.service-card2:hover .sc-foot-ic { background: var(--green); color: #fff; }
.service-card2:hover .sc-foot-ic svg { transform: translateX(2px); }


/* ============================================================
   About
   ============================================================ */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .main {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media .main img { width: 100%; height: 500px; object-fit: cover; }
.about-media .exp {
  position: absolute;
  right: -20px; bottom: -20px;
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 26px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-media .exp .n { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1; }
.about-media .exp .l { font-size: 13px; opacity: .92; margin-top: 6px; max-width: 120px; }

.about-list { list-style: none; margin: 28px 0 34px; display: grid; gap: 16px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .tick {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-tint); color: var(--green-dark);
  display: grid; place-items: center; margin-top: 1px;
}
.about-list .tick svg { width: 15px; height: 15px; }
.about-list li b { color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 15.5px; }
.about-list li p { font-size: 14.5px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   Why People Choose — photo band with green overlay
   ============================================================ */
.why-band {
  position: relative;
  padding: 100px 0;
  background: var(--hero-green) url("../images/pest-control-inspection-team.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.why-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 54, 29, .92), rgba(14, 40, 22, .95));
}
.why-band .container { position: relative; z-index: 1; }
.why-band-head { text-align: center; max-width: 760px; margin: 0 auto; }
.chip-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 7px;
  margin-bottom: 20px;
}
.why-band-title { color: #fff; font-size: clamp(32px, 3.4vw, 56px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
.why-band-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.wb-item { padding: 0 6px; }
.wb-ic { display: flex; justify-content: center; color: var(--yellow); margin-bottom: 24px; }
.wb-ic svg { width: 54px; height: 54px; }
.wb-item h3 { color: #fff; font-size: 23px; font-weight: 600; margin-bottom: 14px; }
.wb-item p { color: rgba(255, 255, 255, .72); font-size: 16.5px; line-height: 1.68; max-width: 320px; margin: 0 auto; }

/* ============================================================
   Process
   ============================================================ */
.hiw-sec { background: var(--bg-soft); }

/* rounded panel holding the background photo */
.hiw-panel {
  position: relative;
  margin-top: 56px;
  border-radius: 30px;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 56px);
  box-shadow: var(--shadow);
}
.hiw-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* soft light wash so the cards stay legible over the photo */
.hiw-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255,255,255,.94), rgba(255,255,255,.72) 55%, rgba(238,246,238,.6) 100%),
    linear-gradient(180deg, rgba(20,54,29,.10), rgba(20,54,29,.18));
}

/* cards — 3 to a row, remainder centres itself */
.hiw-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.hiw-card {
  flex: 1 1 calc(50% - 22px);   /* 2 to a row */
  min-width: 270px;
  max-width: 680px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(20,24,29,.04), 0 14px 32px -20px rgba(20,24,29,.28);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  /* staggered entrance */
  opacity: 0;
  transform: translateY(22px);
}
.hiw-panel.in .hiw-card { opacity: 1; transform: translateY(0); transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .4s var(--ease); }
.hiw-panel.in .hiw-card:nth-child(1) { transition-delay: .06s; }
.hiw-panel.in .hiw-card:nth-child(2) { transition-delay: .18s; }
.hiw-panel.in .hiw-card:nth-child(3) { transition-delay: .30s; }
.hiw-panel.in .hiw-card:nth-child(4) { transition-delay: .42s; }
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* icon tile with step number badge */
.hiw-ic {
  position: relative;
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 17px;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.hiw-ic svg { width: 28px; height: 28px; }
.hiw-card:hover .hiw-ic { background: var(--green); color: #fff; }
.hiw-num {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 24px;
  padding: 0 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  display: grid; place-items: center;
  border: 2px solid #fff;
  transition: background .4s var(--ease);
}
.hiw-card:hover .hiw-num { background: var(--green-dark); }

.hiw-txt h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.hiw-txt p { font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.hiw-txt a { color: var(--green-dark); font-weight: 600; }
.hiw-txt a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .hiw-card { opacity: 1; transform: none; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.tm-sec { background: var(--bg-soft); }
.tm-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  align-items: center;
}
.tm-aside .title { font-size: clamp(30px, 2.9vw, 46px); }
.tm-lead {
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 42ch;
}

/* google badge */
.g-badge {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.g-badge:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }
.g-logo { width: 30px; height: 30px; flex-shrink: 0; display: grid; place-items: center; }
.g-logo svg { width: 100%; height: 100%; }
.g-meta b { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--ink); }
.g-meta i { display: block; font-style: normal; font-size: 13px; color: var(--muted); margin-top: 2px; }
.g-go {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.g-go svg { width: 15px; height: 15px; }
.g-badge:hover .g-go { background: var(--green); color: #fff; }

/* arrows */
.tm-nav { display: flex; gap: 12px; margin-top: 34px; }
.tm-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.tm-btn svg { width: 20px; height: 20px; }
.tm-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.tm-btn[disabled] { opacity: .4; cursor: default; transform: none; background: #fff; color: var(--ink); border-color: var(--line); }

/* cards */
.tm-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tm-track::-webkit-scrollbar { display: none; }
.tm-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.tm-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.tm-stars { color: #f5a623; font-size: 17px; letter-spacing: 3px; margin-bottom: 18px; }
.tm-card p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--body);
  margin-bottom: 24px;
  flex: 1;
}
.tm-card footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tm-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}
.tm-src {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* ============================================================
   Property types
   ============================================================ */
.ptypes-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: var(--bg-tint);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-dark);
  margin-bottom: 22px;
}
.pill-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.ptypes-copy .title { letter-spacing: -0.02em; }
.hl-green { color: var(--green); }
.ptypes-lead {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  max-width: 62ch;
}
.ptypes-lead b { color: var(--ink); font-weight: 600; }

.ptype-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 32px;
}
.ptype { display: flex; gap: 18px; align-items: flex-start; }
.ptype-ic {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.ptype-ic svg { width: 26px; height: 26px; }
.ptype:hover .ptype-ic { background: var(--green-dark); transform: translateY(-3px); }
.ptype h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.ptype p { font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.ptype p b { color: var(--ink); font-weight: 600; }

/* image + rotating badge */
.ptypes-media { position: relative; }
.ptypes-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.spin-badge {
  position: absolute;
  left: -34px; bottom: 44px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.spin-badge:hover { background: var(--green-dark); transform: scale(1.05); }
.spin-text {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spinSlow 14s linear infinite;
}
.spin-text text {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: #fff;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.spin-ic {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  display: grid; place-items: center;
  transition: transform .35s var(--ease);
}
.spin-ic svg { width: 22px; height: 22px; }
.spin-badge:hover .spin-ic { transform: rotate(-45deg); }

@media (prefers-reduced-motion: reduce) {
  .spin-text { animation: none; }
}

/* ============================================================
   Annual maintenance packages (AMC)
   ============================================================ */
.amc-sec {
  position: relative;
  background: var(--hero-green);
  color: #fff;
  overflow: hidden;
}
.amc-glow {
  position: absolute;
  right: -140px; top: -140px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(111,182,59,.28), transparent 70%);
  pointer-events: none;
}
.amc-sec .container { position: relative; z-index: 1; }
.amc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.amc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.amc-eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.amc-title {
  color: #fff;
  font-size: clamp(30px, 3.1vw, 50px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.amc-copy p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,.76);
}
.amc-copy p b { color: #fff; font-weight: 600; }

.amc-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.amc-call { display: flex; align-items: center; gap: 14px; color: #fff; }
.amc-call-ic {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: var(--yellow);
  transition: background .3s var(--ease);
}
.amc-call:hover .amc-call-ic { background: rgba(255,255,255,.18); }
.amc-call-ic svg { width: 21px; height: 21px; }
.amc-call i { display: block; font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.6); }
.amc-call b { display: block; font-family: var(--font-display); font-size: 19px; margin-top: 2px; }

/* inclusions card */
.amc-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px 34px 32px;
  box-shadow: var(--shadow-lg);
}
.amc-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.amc-list { list-style: none; display: grid; gap: 17px; }
.amc-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}
.amc-list b { color: var(--ink); font-weight: 600; }
.amc-tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  margin-top: 2px;
}
.amc-tick svg { width: 13px; height: 13px; }
.amc-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   SEO content + FAQ
   ============================================================ */
.seo-sec { background: var(--bg-soft); }
.seo-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line);
}
.seo-intro-copy p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
}
.seo-areas {
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 1px 2px rgba(20,24,29,.04), 0 14px 34px -24px rgba(20,24,29,.2);
}
.seo-areas h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}
.area-list li {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--green-dark);
  font-weight: 500;
}

.faq-wrap { padding-top: 76px; }
.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.faq-item.open { border-color: transparent; box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--green-dark); }
.faq-ic {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--green-dark);
  display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.faq-ic svg { width: 17px; height: 17px; }
.faq-item.open .faq-ic {
  background: var(--green);
  color: #fff;
  transform: rotate(135deg);          /* + turns into × */
}
/* collapsible panel */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 26px 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 78ch;
}

/* ============================================================
   Local / Google map
   ============================================================ */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.local-copy .title { letter-spacing: -0.02em; }
.local-text {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--body);
}
.local-text b { color: var(--ink); font-weight: 600; }
.local-text a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.local-text a:hover { color: var(--green); }
.local-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.local-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-tint);
}
.local-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { padding: 20px 0 104px; }
.cta-inner {
  background: var(--ink);
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-inner::before {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(111,182,59,.35), transparent 70%);
}
.cta-inner::after {
  content: "";
  position: absolute; left: -60px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,113,188,.28), transparent 70%);
}
.cta-inner h2 { color: #fff; font-size: clamp(32px,3.2vw,52px); line-height: 1.12; position: relative; }
.cta-inner p { color: rgba(255,255,255,.7); margin-top: 18px; font-size: 18.5px; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; }
.cta-actions .btn { justify-content: center; }
.cta-phone {
  display: flex; align-items: center; gap: 14px;
  color: #fff; text-align: left;
}
.cta-phone .ic { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.cta-phone .ic svg { width: 22px; height: 22px; color: var(--green); }
.cta-phone .lbl { font-size: 13px; color: rgba(255,255,255,.6); }
.cta-phone .no { font-family: var(--font-display); font-weight: 700; font-size: 22px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 16px; max-width: 360px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 22px; font-family: var(--font-display); }
.footer-col ul { list-style: none; display: grid; gap: 13px; }
.footer-col a { font-size: 16px; transition: color .25s, padding .25s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; font-size: 16px; margin-bottom: 17px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.footer-bottom a:hover { color: #fff; }

/* Floating call + WhatsApp actions (right side) */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  /* label sits off to the left and slides in on hover */
  padding-left: 4px;
}
.fab-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
  background: var(--ink);
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 8px 22px -10px rgba(20,24,29,.55);
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.fab:hover .fab-label,
.fab:focus-visible .fab-label { opacity: 1; transform: translateX(0); }

.fab-btn {
  position: relative;
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .45s var(--ease);
  /* smooth entrance */
  opacity: 0;
  animation: fabIn .6s var(--ease) forwards;
}
.fab--call .fab-btn { animation-delay: .35s; }
.fab--wa   .fab-btn { animation-delay: .5s; }
@keyframes fabIn {
  from { opacity: 0; transform: translateY(16px) scale(.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* optical sizing: the WhatsApp glyph fills its box, the stroked phone has padding,
   so slightly different px values make them read as the same size */
.fab--call .fab-btn svg { width: 27px; height: 27px; }
.fab--wa   .fab-btn svg { width: 25px; height: 25px; }

.fab:hover .fab-btn { transform: translateY(-3px) scale(1.1); }
.fab:active .fab-btn { transform: translateY(-1px) scale(1.02); transition-duration: .12s; }

.fab--call .fab-btn {
  background: var(--green);
  box-shadow: 0 10px 26px -6px rgba(111,182,59,.6);
}
.fab--call:hover .fab-btn { box-shadow: 0 16px 34px -8px rgba(111,182,59,.75); }
.fab--wa .fab-btn {
  background: #25D366;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.6);
}
.fab--wa:hover .fab-btn { box-shadow: 0 16px 34px -8px rgba(37,211,102,.75); }

/* expanding halo — staggered so the two buttons breathe in turn */
.fab-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: fabHalo 2.8s ease-out infinite;
  pointer-events: none;
}
.fab--call .fab-btn::after { animation-delay: 1.2s; }
@keyframes fabHalo {
  0%   { transform: scale(1);   opacity: .55; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* gentle idle bob on the WhatsApp icon */
.fab--wa .fab-btn svg { animation: fabBob 3.2s ease-in-out 1.1s infinite; }
@keyframes fabBob {
  0%, 100% { transform: rotate(0deg); }
  8%       { transform: rotate(-9deg); }
  16%      { transform: rotate(7deg); }
  24%      { transform: rotate(-4deg); }
  32%      { transform: rotate(0deg); }
}
.fab:hover .fab-btn svg { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .fab-btn { opacity: 1; animation: none; }
  .fab-btn::after,
  .fab--wa .fab-btn svg { animation: none; }
}

@media (max-width: 640px) {
  .fab-stack { right: 14px; bottom: 14px; gap: 12px; }
  .fab-btn { width: 52px; height: 52px; }
  .fab--call .fab-btn svg { width: 25px; height: 25px; }
  .fab--wa   .fab-btn svg { width: 23px; height: 23px; }
  .fab-label { display: none; }   /* no hover on touch — keep it clean */
}

/* ============================================================
   Booking modal (lightbox)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.modal.open { display: grid; place-items: center; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 14, .55);
  backdrop-filter: blur(4px);
  animation: modalFade .25s var(--ease);
}
.modal-card {
  position: relative;
  width: min(94vw, 580px);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  padding: 38px 38px 30px;
  box-shadow: var(--shadow-lg);
  animation: modalPop .35s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
body.modal-lock { overflow: hidden; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--ink); color: #fff; }
.modal-close svg { width: 18px; height: 18px; }

.modal-head .eyebrow { margin-bottom: 10px; }
.modal-head h3 { font-size: 26px; font-weight: 700; }
.modal-head p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.booking-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.booking-form input::placeholder { color: #aeb6bf; }
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(111, 182, 59, .16);
}
.booking-form input.invalid,
.booking-form select.invalid {
  border-color: #e05353;
  box-shadow: 0 0 0 3px rgba(224, 83, 83, .14);
}
.modal-submit { grid-column: 1 / -1; justify-content: center; margin-top: 6px; }
.modal-note { grid-column: 1 / -1; text-align: center; font-size: 12.5px; color: var(--muted); margin-top: -2px; }

.modal-success { text-align: center; padding: 14px 6px 8px; }
.modal-success .ms-ic {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--bg-tint); color: var(--green);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px rgba(111, 182, 59, .12);
}
.modal-success .ms-ic svg { width: 34px; height: 34px; stroke-width: 3; }
.modal-success h3 { font-size: 26px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.modal-success p { font-size: 14.5px; color: var(--muted); max-width: 380px; margin: 0 auto 22px; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
/* Only hidden when JS is active; without JS everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .nav-phone { display: none; }
  .nav-links a { padding: 9px 11px; font-size: 14.5px; }
  .sc-img { height: 210px; }
  .sc-body { padding: 20px 8px 6px; }
  .sc-body h3 { font-size: 20px; }
  .sc-body p { font-size: 15px; }
  .sc-foot-lbl { font-size: 12.5px; }
  .sc-foot-ic { width: 38px; height: 38px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 150px max(24px, 5vw) 60px; }
  .hero-visual { min-height: 0; height: 560px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-media { position: static; }
  .media-stack { max-width: 560px; }
  .affordable-grid { grid-template-columns: 1fr; gap: 44px; }
  .affordable-media { max-width: 560px; }
  .book-grid { grid-template-columns: 1fr; gap: 32px; }
  .book-media { min-height: 380px; }
  .seo-intro { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .faq-wrap { padding-top: 56px; }
  .ptypes-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-media img { height: 340px; }
  .tabs-nav { grid-template-columns: repeat(2, 1fr); }
  .tab-panel { grid-template-columns: 1fr; }
  .tab-media { min-height: 260px; order: -1; }
  .cmp-grid { grid-template-columns: 1fr; gap: 18px; }
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: 1fr; gap: 20px; }
  .treat-grid { grid-template-columns: 1fr; gap: 18px; }
  .apart-grid { grid-template-columns: 1fr; gap: 44px; }
  .apart-media img { height: 420px; }
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .pests-wrap { margin-top: 68px; padding-top: 56px; }
  .local-grid { grid-template-columns: 1fr; gap: 44px; }
  .local-map iframe { height: 420px; }
  .tm-grid { grid-template-columns: 1fr; gap: 38px; }
  .tm-nav { margin-top: 26px; }
  .amc-grid { grid-template-columns: 1fr; gap: 44px; }
  .amc-title { max-width: none; }
  .ptypes-media img { height: 460px; }
  .spin-badge { left: auto; right: 24px; bottom: 24px; width: 112px; height: 112px; }
  .services-grid3 { grid-template-columns: repeat(3, 1fr); }
  .why-band-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header { padding: 14px 16px; }
  .header-inner { position: relative; padding: 0 14px 0 20px; border-radius: 34px; }
  .nav { display: flex; justify-content: space-between; min-height: 68px; }
  .logo img { height: 44px; }
  .nav-links, .nav-book { display: none; }
  .burger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .media-main { width: 88%; }
  .services-grid3 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .booking-form { grid-template-columns: 1fr; }
  .modal-card { padding: 30px 22px 26px; }
  .book-panel { padding: 30px 22px 26px; }
  .ptype-list { grid-template-columns: 1fr; gap: 28px; }
  .hiw-panel { border-radius: 20px; padding: 18px; }
  .hiw-card { flex-basis: 100%; min-width: 0; padding: 22px 20px; gap: 15px; }
  .hiw-ic { width: 52px; height: 52px; border-radius: 15px; }
  .hiw-ic svg { width: 25px; height: 25px; }
  .hiw-txt h3 { font-size: 18.5px; }
  .page-hero { padding: 150px 0 60px; }
  .page-hero h1 { max-width: none; }
  .page-hero-media img { height: 260px; }
  .pest-img { height: 210px; }
  .pest-body { padding: 20px 8px 6px; }
  .pest-item h3 { font-size: 20px; }
  .pest-item p { font-size: 15px; }
  .pest-grid { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .tabs-nav { grid-template-columns: 1fr; gap: 10px; }
  .tab-btn { padding: 15px 16px; }
  .tab-copy p { font-size: 15.5px; }
  .faq-group-head { flex-direction: column; gap: 14px; }
  .faq-group + .faq-group { margin-top: 52px; padding-top: 46px; }
  .apart-media img { height: 320px; }
  .val-card { padding: 30px 24px 28px; }
  .local-map iframe { height: 340px; }
  .tm-card { flex-basis: 86vw; padding: 26px 22px 22px; }
  .amc-card { padding: 30px 22px 26px; }
  .amc-copy p { font-size: 16px; }
  .local-text { font-size: 16px; }
  .ptypes-media img { height: 340px; }
  .spin-badge { width: 96px; height: 96px; right: 16px; bottom: 16px; }
  .spin-ic { width: 42px; height: 42px; }
  .faq-q { padding: 20px 18px; font-size: 16.5px; gap: 14px; }
  .faq-a p { padding: 0 18px 22px; font-size: 15.5px; }
  .seo-areas { padding: 26px 22px; }
  .book-media { min-height: 300px; }
  .why-band-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-media .exp { right: 12px; }
}

@media (max-width: 460px) {
  .services-grid3 { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- Booking form: spam trap + server error ---------------------------- */
/* Off-screen rather than display:none — some bots skip hidden fields. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-error {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fdeceb;
  border: 1px solid #f3c9c5;
  color: #b23c33;
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---- reCAPTCHA v3 ------------------------------------------------------- */
/* The badge is fixed bottom-right, exactly where the call/WhatsApp buttons
   sit. Google permits hiding it provided the attribution below is shown. */
.grecaptcha-badge { visibility: hidden; }

.recaptcha-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted, #7b8794);
}
.recaptcha-note a { text-decoration: underline; color: inherit; }
.recaptcha-note a:hover { color: var(--green-dark); }

/* ============================================================
   HTML sitemap + 404 page
   ============================================================ */
.smap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 40px;
  margin-top: 40px;
}
.smap-col h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--green);
}
.smap-col ul { list-style: none; }
.smap-col li { border-bottom: 1px solid var(--line); }
.smap-col li:last-child { border-bottom: 0; }
.smap-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 4px;
  font-size: 15px;
  color: var(--body);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.smap-col a svg {
  width: 15px; height: 15px;
  flex: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.smap-col a:hover { color: var(--green-dark); padding-left: 10px; }
.smap-col a:hover svg { opacity: 1; transform: translateX(0); }

/* ---- 404 ---- */
.nf-wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.nf-code {
  font-family: var(--font-display);
  font-size: clamp(88px, 16vw, 168px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  opacity: .18;
  margin-bottom: -18px;
}
.nf-wrap h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.nf-wrap > p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.nf-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 8px; }

.nf-services { margin-top: 66px; text-align: left; }
.nf-services > h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.nf-services > p { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 30px; }

.nf-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.nf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.nf-chip svg { width: 14px; height: 14px; opacity: 0; transform: translateX(-5px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.nf-chip:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.nf-chip:hover svg { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) {
  .smap-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .smap-grid { grid-template-columns: 1fr; }
  .nf-services { margin-top: 46px; }
}
