/* ============================================================
   ECO PEST CONTROL — Premium Stylesheet
   Brand: Teal #1f6b69 / #2a8280 / #359896, White, Dark Charcoal
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green-dark:   #1f6b69;
  --green-mid:    #2a8280;
  --green-base:   #359896;
  --green-light:  #44b2b0;
  --green-pale:   #e0f5f5;
  --green-accent: #5cc8c6;

  --charcoal:     #1a1a1a;
  --dark:         #222;
  --mid-grey:     #555;
  --light-grey:   #f2f8f8;
  --border:       #cce8e8;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);

  --radius:    8px;
  --radius-lg: 16px;

  --transition: .28s cubic-bezier(.4,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);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 112px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green-base); }
.bg-pale { background: var(--green-pale); }
.bg-dark { background: var(--charcoal); }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
.lead { font-size: 1.15rem; color: var(--mid-grey); font-weight: 400; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-base);
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-base);
  color: var(--white);
  border-color: var(--green-base);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,125,50,.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green-base);
  border-color: var(--green-base);
}
.btn--outline-dark:hover {
  background: var(--green-base);
  color: var(--white);
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--cta {
  background: #f9a825;
  color: var(--charcoal);
  border-color: #f9a825;
  font-weight: 700;
}
.btn--cta:hover {
  background: #f57f17;
  border-color: #f57f17;
  transform: translateY(-2px);
}

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__areas { display: flex; align-items: center; gap: 6px; }
.topbar__areas svg { width: 14px; height: 14px; fill: var(--green-accent); }
.topbar__contacts { display: flex; align-items: center; gap: 20px; }
.topbar__contacts a { color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 5px; }
.topbar__contacts a:hover { color: var(--green-accent); }
.topbar__contacts svg { width: 13px; height: 13px; fill: currentColor; }

/* ── Header / Nav ───────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.header__logo-img { height: 56px; width: auto; }
.header__logo-text { line-height: 1.1; }
.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
}
.header__logo-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  display: block;
}

/* Main nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--green-base); background: var(--green-pale); }
.nav__link svg { width: 12px; height: 12px; fill: currentColor; transition: transform var(--transition); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown__link {
  display: block;
  padding: 9px 14px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown__link:hover { background: var(--green-pale); color: var(--green-base); }

/* ── Mega Menu (Areas We Cover) ─────────────────────────────── */
.nav__item--mega { position: static; }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -20px;
  width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .26s ease, transform .26s ease, visibility .26s;
  z-index: 200;
  overflow: hidden;
}
.nav__item--mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Province banner */
.mega-menu__banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-base);
  color: var(--white);
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.mega-menu__banner svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.mega-menu__banner strong { font-weight: 800; }
.mega-menu__see-all {
  margin-left: auto;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--transition);
}
.mega-menu__see-all:hover { color: var(--white); }

/* Columns */
.mega-menu__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 20px;
}
.mega-menu__col {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.mega-menu__col:first-child { padding-left: 0; }
.mega-menu__col:last-child  { padding-right: 0; border-right: none; }

/* Column headings */
.mega-menu__heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-base);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}
.mega-menu__heading svg {
  width: 12px;
  height: 12px;
  fill: var(--green-base);
  flex-shrink: 0;
}

/* Area links */
.mega-menu__link {
  display: block;
  padding: 6px 10px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--mid-grey);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 1px;
}
.mega-menu__link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  padding-left: 14px;
}

.mega-menu--left {
  right: auto;
  left: 0;
}

/* Areas mega menu — wider, 3 province columns side by side */
.mega-menu--areas {
  right: -20px;
  width: 900px;
}
.mega-menu__province-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 20px;
}
.mega-menu__province-col {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.mega-menu__province-col:first-child { padding-left: 0; }
.mega-menu__province-col:last-child  { padding-right: 0; border-right: none; }

/* Province pill label inside each column */
.mega-menu__province-label {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-dark);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Mobile province label */
.mobile-menu__sub-province {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-dark);
  padding: 5px 16px;
  margin: 10px 0 4px;
  border-radius: 4px;
}
.mobile-menu__sub-heading {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-base);
  padding: 10px 16px 4px;
}

/* Nav CTA area */
.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone {
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__phone svg { width: 16px; height: 16px; fill: var(--green-base); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,107,105,.88) 0%, rgba(53,152,150,.55) 55%, rgba(0,0,0,.2) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero__content { color: var(--white); }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #c8e6c9;
}
.hero__title { margin-bottom: 18px; line-height: 1.15; }
.hero__title span { color: var(--green-accent); }
.hero__sub { font-size: 1.1rem; opacity: .88; max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.hero__badge { display: flex; align-items: center; gap: 8px; }
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
}
.hero__badge-text { font-size: .78rem; color: rgba(255,255,255,.8); line-height: 1.3; }

/* Quote form card */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-card__header {
  background: var(--green-base);
  color: var(--white);
  padding: 20px 26px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-card__header svg { width: 20px; height: 20px; fill: var(--green-accent); }
.quote-card__body { padding: 24px 26px; }
.quote-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  font-size: .82rem;
  color: var(--mid-grey);
}
.quote-card__stars span { color: #f9a825; font-size: 1rem; }

/* ── Form ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green-base); box-shadow: 0 0 0 3px rgba(56,142,60,.12); }
.form-control::placeholder { color: #aaa; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green-base); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: .84rem; cursor: pointer; color: var(--dark); }
.form-section-title { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-base); margin: 16px 0 10px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.form-checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 8px; }
.form-submit { width: 100%; margin-top: 4px; justify-content: center; font-size: 1rem; padding: 14px; }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.13); }
.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.service-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,107,105,.45) 0%, transparent 60%);
  transition: opacity var(--transition);
}
.service-card:hover .service-card__img-wrap::after { opacity: .7; }
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.08); }
.service-card__body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid var(--green-base);
  background: var(--white);
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
  transition: color var(--transition);
}
.service-card:hover .service-card__title { color: var(--green-base); }
.service-card__text { font-size: .87rem; color: var(--mid-grey); line-height: 1.6; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-base);
  margin-top: 18px;
  padding: 8px 16px;
  border: 2px solid var(--green-base);
  border-radius: 50px;
  width: fit-content;
  transition: var(--transition);
}
.service-card:hover .service-card__link {
  background: var(--green-base);
  color: var(--white);
  gap: 10px;
}

/* ── Icon-only service card variant (area pages) ─────────────── */
.service-card--icon {
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.service-card--icon .service-card__icon-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-base) 100%);
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-card--icon .service-card__icon-header svg {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.service-card--icon .service-card__icon-header span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.service-card--icon .service-card__body {
  border-top: none;
}
.service-card--icon:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.why-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-light); }
.why-card__img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-pale);
}
.why-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.why-card:hover .why-card__img-wrap img { transform: scale(1.1); }
.why-card__title { font-size: .95rem; font-weight: 700; margin-bottom: 4px; color: var(--charcoal); }
.why-card__text { font-size: .83rem; color: var(--mid-grey); line-height: 1.55; }

/* ── Stats Banner ───────────────────────────────────────────── */
.stats-band {
  background: var(--green-dark);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  display: block;
}
.stat-item__label { font-size: .88rem; opacity: .75; margin-top: 6px; }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.process-step__num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--green-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-base);
}
.process-step__title { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.process-step__text { font-size: .78rem; color: var(--mid-grey); line-height: 1.5; }

/* ── Pest Cards ─────────────────────────────────────────────── */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.pest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--charcoal);
}
.pest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pest-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pest-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.pest-card:hover .pest-card__img-wrap img {
  transform: scale(1.07);
}
.pest-card__name {
  display: block;
  background: var(--white);
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--charcoal);
  padding: 12px 10px;
  border-top: 2px solid var(--green-base);
  transition: background var(--transition), color var(--transition);
}
.pest-card:hover .pest-card__name {
  background: var(--green-base);
  color: var(--white);
}

/* ── Testimonials ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.review-card__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--green-pale);
  font-family: var(--font-display);
  position: absolute;
  top: 16px;
  right: 20px;
}
.review-card__stars { color: #f9a825; font-size: 1rem; margin-bottom: 14px; }
.review-card__text { font-size: .88rem; color: var(--dark); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px;
  background: var(--green-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: .9rem; }
.review-card__area { font-size: .78rem; color: var(--mid-grey); }

/* ── Areas Grid ─────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.area-card:hover { background: var(--green-base); color: var(--white); border-color: var(--green-base); transform: translateX(4px); }
.area-card svg { width: 18px; height: 18px; fill: var(--green-base); flex-shrink: 0; transition: var(--transition); }
.area-card:hover svg { fill: var(--white); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--green-base); }
.faq-question svg {
  width: 20px; height: 20px;
  fill: var(--green-base);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer__inner { padding: 0 22px 18px; font-size: .9rem; color: var(--mid-grey); line-height: 1.7; }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -100px;
}
.cta-band__title { margin-bottom: 16px; }
.cta-band__sub { opacity: .82; max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-band__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo { height: 54px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(.85); }
.footer__brand-text { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social-link:hover { background: var(--green-base); }
.footer__social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,.8); }
.footer__heading { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-accent); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link { font-size: .86rem; color: rgba(255,255,255,.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer__link:hover { color: var(--white); padding-left: 4px; }
.footer__contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer__contact-icon { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__contact-icon svg { width: 16px; height: 16px; fill: var(--green-accent); }
.footer__contact-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-accent); display: block; margin-bottom: 2px; }
.footer__contact-val { font-size: .86rem; color: rgba(255,255,255,.8); }
.footer__contact-val a { color: inherit; }
.footer__contact-val a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img, url('../images/hero-bg.jpg'));
  background-size: cover;
  background-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,107,105,.85) 0%, rgba(53,152,150,.65) 100%);
}
.page-hero__inner { position: relative; z-index: 1; color: var(--white); }
.page-hero__label { opacity: .8; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.page-hero__label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--green-accent); }
.page-hero__title { margin-bottom: 14px; }
.page-hero__sub { font-size: 1.05rem; opacity: .84; max-width: 600px; margin-bottom: 26px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; opacity: .7; flex-wrap: wrap; }
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb-sep { opacity: .5; }

/* ── Floating WhatsApp ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ── Mobile Menu Overlay ────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu__close { background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu__close svg { width: 24px; height: 24px; fill: var(--charcoal); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link { display: block; padding: 14px 16px; font-size: 1rem; font-weight: 600; color: var(--charcoal); border-radius: var(--radius); transition: var(--transition); }
.mobile-menu__link:hover { background: var(--green-pale); color: var(--green-base); }
.mobile-menu__sub { padding-left: 16px; margin-bottom: 8px; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__sub-link { display: block; padding: 8px 12px; font-size: .9rem; color: var(--mid-grey); border-radius: var(--radius); }
.mobile-menu__sub-link:hover { color: var(--green-base); }
.mobile-menu__cta { margin-top: 24px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; max-width: 700px; }
  .quote-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { padding: 60px 0; }
  h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar__contacts { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-checks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero__badges { gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up--d1 { animation-delay: .1s; }
.fade-up--d2 { animation-delay: .2s; }
.fade-up--d3 { animation-delay: .3s; }
.fade-up--d4 { animation-delay: .4s; }

/* ── Misc ───────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: .04em; }
.notice { background: var(--green-pale); border-left: 4px solid var(--green-base); padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; font-size: .9rem; color: var(--dark); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col--img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
