/* ============================================================
   ECO-FUMIGATION — MAIN STYLESHEET
   Brand: Teal #1A9B8C | Green #3CB54A | Dark #1B2B2A
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --teal:         #1A9B8C;
  --teal-dark:    #157a6e;
  --teal-light:   #e8f7f5;
  --green:        #3CB54A;
  --green-dark:   #2d8c39;
  --dark:         #1B2B2A;
  --dark-alt:     #243330;
  --text:         #333d3c;
  --text-light:   #667270;
  --white:        #ffffff;
  --off-white:    #f5faf9;
  --border:       #d4e8e5;
  --shadow-sm:    0 2px 8px rgba(26,155,140,.10);
  --shadow-md:    0 4px 24px rgba(26,155,140,.15);
  --shadow-lg:    0 8px 48px rgba(26,155,140,.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.3s ease;
  --max-width:    1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Spacing ── */
section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-green  { color: var(--green); }
.text-white  { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60,181,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .83rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--green); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.top-bar-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.top-bar-social { display: flex; gap: .6rem; }
.top-bar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.top-bar-social a:hover { background: var(--teal); color: var(--white); }
.top-bar-social svg { width: 13px; height: 13px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.site-logo img { width: 52px; height: 52px; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
}
.logo-sub {
  font-size: .7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--transition);
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
}
.dropdown-menu.mega {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px;
  gap: 4px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--teal-light);
  color: var(--teal);
  padding-left: 24px;
}
.dropdown-menu.mega a { padding: 9px 12px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
}
.header-phone svg { color: var(--teal); width: 16px; height: 16px; }
.header-phone:hover { color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  overflow-y: auto;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--teal); }
.mobile-nav-sub { padding-left: 16px; display: none; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: block;
  font-size: .95rem;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-sub a:hover { color: var(--teal); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0faf8 0%, #e8f7f5 50%, #f5fdf8 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(145deg, rgba(26,155,140,.06) 0%, rgba(60,181,74,.04) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: 90vh;
  padding: 80px 0 40px;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26,155,140,.1);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(26,155,140,.2);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .7; }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.hero-trust-item svg { color: var(--green); width: 18px; height: 18px; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.hero-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 340px;
}
.hero-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.hero-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.hero-stat-card:hover { transform: translateY(-4px); }
.hero-stat-card .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  display: block;
}
.hero-stat-card .label {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-star-card {
  background: var(--teal);
  color: var(--white);
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 18px 24px;
}
.hero-star-card .stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.hero-star-card p { color: rgba(255,255,255,.9); font-size: .88rem; margin: 0; }
.hero-star-card strong { color: var(--white); font-size: 1.1rem; }

/* Floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .15;
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 { width: 350px; height: 350px; background: var(--teal); top: -80px; right: -80px; }
.hero-blob-2 { width: 200px; height: 200px; background: var(--green); bottom: 0; right: 40%; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--dark);
  padding: 24px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg {
  width: 32px; height: 32px;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item span { font-family: var(--font-head); font-weight: 600; }

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--teal);
  transition: height var(--transition);
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all var(--transition);
}
.service-icon svg { width: 30px; height: 30px; color: var(--teal); }
.service-card:hover .service-icon { background: var(--teal); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p  { font-size: .92rem; margin-bottom: 1rem; }
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--teal-dark); }

/* ── Who We Serve Tabs ── */
.serve-tabs {
  background: var(--off-white);
}
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  gap: .5rem;
  overflow-x: auto;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-light);
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tab-btn svg { width: 20px; height: 20px; }
.tab-btn.active, .tab-btn:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.tab-panel-text h3 { margin-bottom: 1rem; font-size: 1.7rem; }
.tab-features { display: grid; gap: .6rem; margin: 1.5rem 0; }
.tab-feature {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  color: var(--text);
}
.tab-feature svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.tab-panel-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 26px; height: 26px; color: var(--teal); }
.why-card h4 { margin-bottom: .4rem; }
.why-card p  { font-size: .88rem; }

/* ── Areas ── */
.areas-section { background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-card {
  background: var(--white);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,43,42,.55) 0%, rgba(27,43,42,.82) 100%);
  transition: background var(--transition);
  z-index: 0;
}
.area-card:hover .area-card-overlay { background: linear-gradient(180deg, rgba(26,155,140,.7) 0%, rgba(26,155,140,.9) 100%); }
.area-card > * { position: relative; z-index: 1; }
.area-card svg { width: 28px; height: 28px; color: rgba(255,255,255,.85); margin: 0 auto .6rem; }
.area-card h4 { font-size: 1rem; margin-bottom: .2rem; color: #fff; font-family: var(--font-head); font-weight: 700; }
.area-card p  { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
.testimonial-date { font-size: .78rem; color: var(--text-light); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--teal); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .97rem;
  color: var(--dark);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-chevron svg { width: 14px; height: 14px; color: var(--teal); transition: transform var(--transition); }
.faq-item.open .faq-chevron { background: var(--teal); }
.faq-item.open .faq-chevron svg { color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Contact Form ── */
.contact-section {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-info-text strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.contact-info-text span { font-size: .9rem; color: var(--text-light); }
.contact-info-text a { color: var(--text-light); transition: color var(--transition); }
.contact-info-text a:hover { color: var(--teal); }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,155,140,.12); }
.form-control::placeholder { color: #aab4b3; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-light);
  margin: .5rem 0;
}
.form-checkbox input[type=checkbox] { margin-top: 3px; accent-color: var(--teal); }
.form-submit { margin-top: .5rem; width: 100%; justify-content: center; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .site-logo { margin-bottom: 1.2rem; }
.footer-brand .logo-name { color: var(--teal); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a::before {
  content: '→';
  font-size: .75rem;
  color: var(--teal);
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .83rem;
}
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(26,155,140,.15) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 520px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb svg { width: 12px; height: 12px; }

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

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; color: var(--white); }

/* ── Utility ── */
.bg-light { background: var(--off-white); }
.bg-dark  { background: var(--dark); }
.bg-teal  { background: var(--teal); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 2rem; }
}

@media (max-width: 900px) {
  .site-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-panel-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 40px; }
  .hero-visual { display: none; }
  .cta-banner .container { text-align: center; justify-content: center; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .footer-main { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .top-bar-left { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { height: 62px; }
}

/* ── Image-based service cards (homepage + pest index) ── */
.service-card.has-img {
  padding: 0;
}
.service-card.has-img::before {
  display: none;
}
.service-card.has-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
