/* BML refresh — 2026-04-23. Modern, mobile-first. SSMC-aligned palette. */
:root {
  --bml-green:      #19453b;
  --bml-green-dark: #0f2d25;
  --bml-green-lite: #2b6b5c;
  --bml-orange:     #f68b1e;
  --bml-cream:      #f7f6f3;
  --bml-border:     #e3e3e3;
  --bml-text:       #1e1e1e;
  --bml-muted:      #555;
  --bml-radius:     8px;
  --bml-max:        1200px;
  --bml-font:       'Lato', 'Roboto', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bml-font);
  color: var(--bml-text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bml-green); text-decoration: none; }
a:hover { color: var(--bml-orange); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

h1,h2,h3,h4 { font-family: var(--bml-font); font-weight: 900; color: var(--bml-green-dark); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.3vw, 1.6rem); }

.container { max-width: var(--bml-max); margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 28px; border-radius: 50px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-size: 14px; transition: all .2s ease; border: 0; cursor: pointer; text-align: center; }
.btn-primary { background: var(--bml-orange); color: #fff; }
.btn-primary:hover { background: #d87710; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(246,139,30,.35); }
.btn-secondary { background: #fff; color: var(--bml-green-dark); border: 2px solid var(--bml-green-dark); }
.btn-secondary:hover { background: var(--bml-green-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ghost:hover { background: #fff; color: var(--bml-green-dark); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--bml-border); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.site-logo img { height: 50px; width: auto; }
.site-nav-list { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; gap: 4px; }
.site-nav-list > li > a { display: block; padding: 10px 14px; color: var(--bml-green-dark); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; border-radius: 6px; }
.site-nav-list > li > a:hover,
.site-nav-list > li.active > a { background: var(--bml-cream); color: var(--bml-green); }
.site-nav-list .has-dropdown { position: relative; }
.site-nav-list .dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 260px; list-style: none; padding: 8px 0; margin: 0; border: 1px solid var(--bml-border); border-radius: var(--bml-radius); box-shadow: 0 8px 24px rgba(0,0,0,.08); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; }
.site-nav-list .has-dropdown:hover .dropdown,
.site-nav-list .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav-list .dropdown li a { display: block; padding: 10px 18px; color: var(--bml-green-dark); font-weight: 500; }
.site-nav-list .dropdown li a i { width: 22px; color: var(--bml-orange); }
.site-nav-list .dropdown li a:hover { background: var(--bml-cream); color: var(--bml-green); }
.site-nav-list .nav-feature > a { background: var(--bml-green); color: #fff; }
.site-nav-list .nav-feature > a:hover,
.site-nav-list .nav-feature.active > a { background: var(--bml-orange); color: #fff; }
.site-nav-list .nav-cta { background: var(--bml-orange) !important; color: #fff !important; }
.site-nav-list .nav-cta:hover { background: #d87710 !important; }
.site-nav-list .nav-phone a { color: var(--bml-green); font-size: 14px; }
.site-nav-list .nav-phone a i { margin-right: 6px; }
.site-nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.site-nav-toggle span { display: block; width: 26px; height: 3px; background: var(--bml-green-dark); margin: 5px 0; border-radius: 2px; transition: all .25s ease; }

@media (max-width: 960px) {
  .site-nav-toggle { display: block; }
  .site-nav { position: fixed; top: 76px; left: 0; right: 0; background: #fff; max-height: 0; overflow: hidden; transition: max-height .3s ease; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .site-nav.open { max-height: calc(100vh - 76px); overflow-y: auto; }
  .site-nav-list { flex-direction: column; align-items: stretch; padding: 12px 0; gap: 0; }
  .site-nav-list > li > a { padding: 14px 20px; }
  .site-nav-list .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; }
  .site-nav-list .nav-feature > a,
  .site-nav-list .nav-cta { margin: 4px 20px; border-radius: 50px; }
}

/* HERO */
.hero { position: relative; color: #fff; padding: 80px 0 100px; background: linear-gradient(rgba(15,45,37,.75), rgba(15,45,37,.85)), url('/img/banner/wwd_v2.jpg') center/cover no-repeat; }
.hero.hero-mosquito { background: linear-gradient(rgba(15,45,37,.72), rgba(15,45,37,.88)), url('/img/mosquito/stock/residential-mosquito-and-tick-spraying.jpg') center/cover no-repeat; }
.hero h1 { color: #fff; max-width: 800px; }
.hero .hero-lead { font-size: 1.2rem; max-width: 700px; margin-bottom: 30px; opacity: .95; }
.hero .hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hero .hero-pills span { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* VIDEO HERO (home) */
.hero-video { position: relative; color: #fff; padding: 0; background: var(--bml-green-dark); overflow: hidden; min-height: 620px; display: flex; align-items: center; }
.hero-video-bg { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,45,37,.85) 0%, rgba(15,45,37,.65) 60%, rgba(15,45,37,.55) 100%); z-index: 1; }
.hero-video-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; padding: 70px 20px; }
.hero-video-copy h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 560px; }
.hero-video-copy .hero-lead { font-size: 1.15rem; max-width: 540px; opacity: .95; margin-bottom: 24px; }
.hero-video-form { position: relative; }
.hero-form-card { background: #fff; border-radius: 12px; padding: 28px 26px; box-shadow: 0 24px 60px rgba(0,0,0,.35); color: var(--bml-text); border-top: 4px solid var(--bml-orange); }
.hero-form-card h3 { margin: 0 0 4px; color: var(--bml-green-dark); font-size: 1.35rem; }
.hero-form-sub { margin: 0 0 18px; font-size: 13px; color: var(--bml-muted); }
.hero-form input, .hero-form select {
  width: 100%; padding: 11px 14px; margin-bottom: 10px;
  border: 1.5px solid transparent; border-radius: 8px;
  font-size: 14px; font-family: 'Lato', 'Roboto', system-ui, sans-serif;
  background: #e8f5e9; color: #1a2e1b;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  outline: none; box-sizing: border-box;
}
.hero-form input::placeholder { color: #90a890; }
.hero-form input:focus, .hero-form select:focus { border-color: #4caf50; background: #fff; box-shadow: 0 0 0 3px rgba(76,175,80,.15); }
.hero-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2319453b'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer;
}
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-form-row:last-of-type { grid-template-columns: 2fr 72px 110px; }
.hero-form .cf-turnstile { margin: 10px 0 14px; }
.btn-block { display: block; width: 100%; }
@media (max-width: 960px) {
  .hero-video-container { grid-template-columns: 1fr; padding: 50px 20px; gap: 36px; }
  .hero-video-form { order: 2; }
  .hero-video-copy { order: 1; text-align: center; }
  .hero-video-copy .hero-lead { margin: 0 auto 24px; }
  .hero-video-copy .hero-pills { justify-content: center; }
  .hero-video-copy .hero-ctas { justify-content: center; }
  .hero-video-bg { display: none; }
  .hero-video { background: linear-gradient(120deg, rgba(15,45,37,.85) 0%, rgba(15,45,37,.75) 100%), url('/header/header-mobile.jpg') center/cover no-repeat; }
}
@media (max-width: 480px) {
  .hero-form-row:last-of-type { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .hero-form-row:last-of-type > :first-child { grid-column: span 2; }
}

/* SECTION */
.section { padding: 70px 0; }
.section-alt { background: var(--bml-cream); }
.section-dark { background: var(--bml-green-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 50px; }
.section-head p { font-size: 1.1rem; color: var(--bml-muted); }
.section-dark .section-head p { color: rgba(255,255,255,.85); }

/* STATS STRIP */
.stats-strip { background: var(--bml-green-dark); color: #fff; padding: 30px 0; }
.stats-strip .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.stats-strip .stat-num { font-size: 2.5rem; font-weight: 900; color: var(--bml-orange); line-height: 1; }
.stats-strip .stat-label { font-size: .95rem; text-transform: uppercase; letter-spacing: .5px; margin-top: 8px; opacity: .9; }

/* IMAGE ROW — side-by-side photo + text */
.image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.image-row.reverse { direction: rtl; }
.image-row.reverse > * { direction: ltr; }
.image-row .ir-photo img { border-radius: var(--bml-radius); box-shadow: 0 12px 30px rgba(0,0,0,.15); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 820px) { .image-row { grid-template-columns: 1fr; } }

/* Photo tiles */
.photo-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.photo-tiles .tile { position: relative; border-radius: var(--bml-radius); overflow: hidden; aspect-ratio: 4/3; }
.photo-tiles .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.photo-tiles .tile:hover img { transform: scale(1.05); }
.photo-tiles .tile .caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; padding: 30px 16px 16px; font-weight: 600; font-size: 14px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--bml-border); border-radius: var(--bml-radius); padding: 30px 26px; transition: all .25s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--bml-green-lite); }
.service-card .icon { width: 60px; height: 60px; border-radius: 50%; background: var(--bml-cream); display: flex; align-items: center; justify-content: center; color: var(--bml-green); font-size: 24px; margin-bottom: 18px; }
.service-card.featured .icon { background: var(--bml-orange); color: #fff; }
.service-card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.service-card p { margin: 0 0 18px; color: var(--bml-muted); flex: 1; }
.service-card .more { color: var(--bml-green); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; }
.service-card .more i { transition: transform .2s ease; }
.service-card:hover .more i { transform: translateX(4px); }

/* TRUST / BENEFITS */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.benefit { text-align: center; }
.benefit .icon { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--bml-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.benefit h4 { font-size: 1.15rem; margin: 0 0 8px; }
.benefit p { margin: 0; color: var(--bml-muted); font-size: .95rem; }

/* QUOTE FORM — SSMC-style (light-green fields, branded feel) */
.quote-section { background: var(--bml-cream); padding: 70px 0; position: relative; }
.quote-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(25,69,59,.04), transparent 60%); pointer-events: none; }
.quote-card { background: #fff; max-width: 720px; margin: 0 auto; padding: 44px 44px 36px; border-radius: 14px; box-shadow: 0 20px 50px rgba(15,45,37,.12), 0 2px 6px rgba(15,45,37,.04); border-top: 4px solid var(--bml-orange); position: relative; }
.quote-card h2 { text-align: center; margin-bottom: 6px; font-size: 1.8rem; color: var(--bml-green-dark); }
.quote-card .lead { text-align: center; color: var(--bml-muted); margin: 0 0 24px; font-size: .98rem; }

.qf-compact { display: flex; flex-direction: column; }
.qf-compact input,
.qf-compact select,
.qf-compact textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Lato', 'Roboto', system-ui, sans-serif;
  background: #e8f5e9;
  color: #1a2e1b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
  outline: none;
}
.qf-compact input::placeholder,
.qf-compact textarea::placeholder { color: #90a890; }
.qf-compact input:focus,
.qf-compact select:focus,
.qf-compact textarea:focus {
  border-color: #4caf50;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(76,175,80,.15);
}
.qf-compact select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2319453b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.qf-compact select:focus { background-color: #fff; }
.qf-compact textarea { resize: vertical; min-height: 64px; line-height: 1.5; margin-top: 12px; }

.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.qf-row.qf-single { grid-template-columns: 1fr; }
.qf-row.qf-triple { grid-template-columns: 2fr 72px 110px; }

.qf-services-fs { border: 0; padding: 0; margin: 18px 0 4px; }
.qf-services-fs legend { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--bml-green-dark); letter-spacing: .08em; margin-bottom: 10px; padding: 0; }
.qf-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 6px 10px; }
.qf-services label {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px; cursor: pointer;
  padding: 9px 12px; color: var(--bml-green-dark); background: #f4faf5; border: 1px solid #e0eee2; border-radius: 6px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.qf-services label:hover { background: #e8f5e9; border-color: var(--bml-green-lite); }
.qf-services label:has(input:checked) { background: var(--bml-green); color: #fff; border-color: var(--bml-green); font-weight: 600; }
.qf-services input { margin: 0; width: 16px; height: 16px; accent-color: var(--bml-green); flex-shrink: 0; }
.qf-services label span { line-height: 1.2; }

.qf-sms-consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 8px; padding: 14px 16px; background: #f4faf5; border: 1px solid #e0eee2; border-radius: 8px; font-size: 12.5px; line-height: 1.5; color: var(--bml-muted); cursor: pointer; }
.qf-sms-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--bml-green); flex-shrink: 0; }
.qf-sms-consent a { color: var(--bml-green); text-decoration: underline; font-weight: 600; }

.qf-submit { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-top: 18px; }
.qf-submit .btn { min-width: 240px; padding: 16px 32px; font-size: 15px; letter-spacing: .05em; }
.qf-or { font-size: 13px; color: var(--bml-muted); margin: 0; }
.qf-or a { color: var(--bml-green); font-weight: 700; text-decoration: none; }
.qf-or a:hover { color: var(--bml-orange); }

@media (max-width: 640px) {
  .quote-card { padding: 28px 20px 22px; border-radius: 10px; }
  .qf-row, .qf-row.qf-triple { grid-template-columns: 1fr; }
  .qf-services { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bml-border); }
.faq-item summary { padding: 20px 0; cursor: pointer; font-size: 1.1rem; font-weight: 700; color: var(--bml-green-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--bml-orange); flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0 0 20px; color: var(--bml-muted); line-height: 1.7; }

/* TOWN GRID */
.town-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; max-width: 980px; margin: 0 auto; }
.town-grid a { background: #fff; border: 1px solid var(--bml-border); padding: 12px 16px; border-radius: 6px; text-align: center; font-weight: 600; color: var(--bml-green-dark); transition: all .15s ease; font-size: 14px; }
.town-grid a:hover { background: var(--bml-green); color: #fff; border-color: var(--bml-green); transform: translateY(-1px); }

/* BREADCRUMBS */
.breadcrumbs { background: var(--bml-cream); padding: 14px 0; font-size: 13px; }
.breadcrumbs .container { display: flex; gap: 8px; align-items: center; }
.breadcrumbs a { color: var(--bml-muted); }
.breadcrumbs a:hover { color: var(--bml-green); }
.breadcrumbs .sep { color: var(--bml-muted); opacity: .5; }

/* FOOTER */
.site-footer { background: var(--bml-green-dark); color: rgba(255,255,255,.85); padding: 60px 0 0; }
.site-footer a { color: #fff; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 820px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer .footer-brand img { max-width: 180px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.site-footer .footer-brand p { font-size: 14px; opacity: .85; }
.site-footer .footer-contact a { display: block; margin-bottom: 10px; font-size: 14px; }
.site-footer .footer-contact i { width: 22px; color: var(--bml-orange); }
.site-footer .footer-social { display: flex; gap: 10px; margin-top: 16px; }
.site-footer .footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.site-footer .footer-social a:hover { background: var(--bml-orange); }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13px; text-align: center; opacity: .7; }

/* CTA BANNER */
.cta-banner { background: var(--bml-orange); color: #fff; padding: 50px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner .btn { background: #fff; color: var(--bml-green-dark); }
.cta-banner .btn:hover { background: var(--bml-green-dark); color: #fff; }

/* UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 20px; } .mb-2 { margin-bottom: 20px; }
.mt-4 { margin-top: 40px; } .mb-4 { margin-bottom: 40px; }

/* RESPONSIVE HERO */
@media (max-width: 640px) {
  .hero { padding: 60px 0 70px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
}
