/* ==========================================================================
   DC Tree Care — style.css
   Brand: #193227 (dark) | #fdfffe (light) | #095415 (accent green)
   Mobile-first, no frameworks.
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #193227;
  background: #fdfffe;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #095415; text-decoration: none; transition: color .2s ease; }
a:hover { color: #193227; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #193227;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: 2rem; margin-bottom: .75rem; }
h2 { font-size: 1.6rem; margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: #2a3f35; }

:root {
  --dark: #193227;
  --light: #fdfffe;
  --accent: #095415;
  --accent-hover: #0b6b1b;
  --muted: #f2f5f2;
  --border: #e3e8e4;
  --text-soft: #4a5a50;
  --shadow: 0 6px 20px rgba(25,50,39,.08);
  --shadow-lg: 0 18px 40px rgba(25,50,39,.15);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--muted); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-align: center;
  transition: all .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--light); border-color: var(--light); }
.btn-secondary:hover { background: var(--light); color: var(--dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #0f2019; color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--dark);
  color: #dfeadf;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #dfeadf; }
.topbar a:hover { color: #fff; }
.topbar-phone { font-weight: 600; color: #fff; }

/* ---------- Header / Nav ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(25,50,39,.05);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  font-family: 'Inter', sans-serif;
}
.brand-text { line-height: 1.1; }
.brand-text small { display: block; font-size: .7rem; color: var(--text-soft); font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }

.nav-links {
  display: flex; gap: 6px; align-items: center;
}
.nav-links a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: .95rem;
}
.nav-links a:hover { background: var(--muted); color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 10px; }

/* ---------- Nav Dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle .dropdown-arrow {
  font-size: .7rem;
  transition: transform .25s ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  font-size: .92rem;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--dark); transition: all .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #fff; flex-direction: column; justify-content: flex-start; padding: 80px 24px 24px;
    transition: right .3s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
    align-items: stretch;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-cta { margin: 16px 0 0; text-align: center; }

  /* Mobile: dropdown opens inline (no hover), triggered by .open class */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    background: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 300px; }
  .nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-menu a { padding: 12px 14px; font-size: .9rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(25,50,39,.85), rgba(9,84,21,.75)),
              url('../images/hero.jpg?v=20260421') center/cover no-repeat;
  background-color: var(--dark);
  color: #fff;
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-inner { max-width: 820px; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 18px;
}
.hero-sub {
  color: #e6efe6;
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
}
.trust-strip li {
  color: #e6efe6; font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
}
.trust-strip li::before {
  content: "✓"; color: #8fd99a; font-weight: 700;
}

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, var(--dark), #0a1e15);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.page-hero p { color: #cfd9d1; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: #a8b5ac; margin-bottom: 10px; }
.breadcrumb a { color: #a8b5ac; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Services Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.service-card .service-link {
  font-weight: 600;
  color: var(--accent);
  font-size: .9rem;
}
.service-card .service-link::after { content: " →"; transition: transform .2s; display: inline-block; }
.service-card:hover .service-link::after { transform: translateX(4px); }
.service-thumb {
  display: block;
  width: calc(100% + 48px);
  height: 200px;
  object-fit: cover;
  margin: -28px -24px 20px -24px;
  border-radius: 10px 10px 0 0;
}

/* Before & After grid (used on service pages) */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.ba-pair figure { margin: 0; }
.ba-pair img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.ba-pair figcaption {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-soft);
  margin-top: 6px;
  text-align: center;
}

/* Photo strip (used on service pages) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.photo-strip img:hover { transform: scale(1.02); }

/* ---------- Why Choose / Feature List ---------- */
.feature-list { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.feature-item h4 { margin-bottom: 4px; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.feature-item p { margin-bottom: 0; font-size: .95rem; color: var(--text-soft); }

/* ---------- Split / Two-column ---------- */
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; } }
.split-image {
  height: 380px;
  overflow: hidden;
}

/* ---------- Areas Covered ---------- */
.areas-box {
  background: var(--dark);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}
.areas-box h2 { color: #fff; }
.areas-box p { color: #cfd9d1; }
.areas-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.areas-list li {
  background: rgba(255,255,255,.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: .9rem;
  color: #e6efe6;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 24px 26px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; margin-bottom: 14px; color: var(--dark); }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--accent); font-size: .9rem; }
.stars { color: #f5b800; margin-bottom: 10px; letter-spacing: 2px; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dfeadf; max-width: 620px; margin: 0 auto 24px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #fdfffe; color: var(--dark); }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: var(--muted); }
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--accent); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text-soft);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px; overflow: hidden;
  background: var(--muted);
  position: relative;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #fff; font-weight: 600; text-align: center; padding: 20px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.contact-info { background: var(--dark); color: #fff; padding: 36px 30px; border-radius: 12px; }
.contact-info h3 { color: #fff; }
.contact-info p, .contact-info a { color: #cfd9d1; }
.contact-info a:hover { color: #fff; }
.contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-row-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.contact-row-icon svg { width: 20px; height: 20px; }
.contact-row h4 { color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif; margin-bottom: 2px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600; color: var(--dark); margin-bottom: 6px; font-size: .9rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(9,84,21,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.footer {
  background: #0f2019;
  color: #cfd9d1;
  padding: 60px 0 20px;
  font-size: .92rem;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-size: 1rem;
  margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase;
}
.footer a { color: #cfd9d1; }
.footer a:hover { color: #fff; }
.footer ul li { margin-bottom: 8px; }
.footer-brand p { color: #a8b5ac; font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem; color: #a8b5ac;
}

/* ---------- Sticky Mobile Call Button ---------- */
.mobile-call {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--accent); color: #fff;
  padding: 14px; border-radius: 50px;
  text-align: center; font-weight: 600;
  box-shadow: 0 6px 24px rgba(9,84,21,.4);
  z-index: 90;
}
.mobile-call:hover { color: #fff; }
@media (max-width: 640px) {
  .mobile-call { display: block; }
  body { padding-bottom: 80px; }
}

/* ---------- Utility ---------- */
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-header p { color: var(--text-soft); font-size: 1.05rem; }
.two-col-text { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .two-col-text { grid-template-columns: 1fr 1fr; } }

/* ---------- Service detail page ---------- */
.service-body h2 { margin-top: 32px; }
.service-body ul { padding-left: 20px; margin-bottom: 20px; list-style: disc; color: var(--text-soft); }
.service-body ul li { margin-bottom: 8px; }

.sidebar-cta {
  background: var(--dark); color: #fff;
  padding: 28px 24px; border-radius: 10px;
  text-align: center;
}
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: #cfd9d1; font-size: .95rem; }
.sidebar-cta .btn { width: 100%; }

.layout-sidebar { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .layout-sidebar { grid-template-columns: 2fr 1fr; } }

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-block;
  background: rgba(9,84,21,.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ---------- Logo image ---------- */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .brand-logo { height: 38px; }
  .brand-text { display: none; }
}

/* ---------- Meet the Team ---------- */
.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 3rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.team-info h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-role {
  display: block; font-size: .85rem; color: var(--accent);
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 10px;
}
.team-bio { font-size: .9rem; color: var(--text-soft); margin-bottom: 0; }

/* ---------- Popup Modal ---------- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 32, 25, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.popup-overlay.active { display: flex; }
.popup {
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  position: relative;
  animation: popIn .35s cubic-bezier(.2,.8,.2,1);
}
.popup-header {
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #fff;
  padding: 28px 28px 24px;
  text-align: center;
  border-radius: 14px 14px 0 0;
  position: relative;
}
.popup-header h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.popup-header p {
  color: #dfeadf;
  margin-bottom: 0;
  font-size: .95rem;
}
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 1.2rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.popup-close:hover { background: rgba(255,255,255,.3); }
.popup-body { padding: 28px; }

.popup-btn {
  display: block; width: 100%;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}
.popup-btn-primary {
  background: var(--accent); color: #fff;
}
.popup-btn-primary:hover {
  background: var(--accent-hover); color: #fff;
  transform: translateY(-2px); box-shadow: 0 10px 25px rgba(9,84,21,.25);
}
.popup-btn-secondary {
  background: #fff; color: var(--dark); border-color: var(--dark);
}
.popup-btn-secondary:hover {
  background: var(--dark); color: #fff;
}
.popup-btn small {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  opacity: .85;
  margin-top: 4px;
}
.popup-or {
  text-align: center;
  color: var(--text-soft);
  font-size: .85rem;
  margin: 14px 0 10px;
  position: relative;
}
.popup-or::before, .popup-or::after {
  content: "";
  position: absolute; top: 50%;
  width: 30%; height: 1px;
  background: var(--border);
}
.popup-or::before { left: 0; }
.popup-or::after { right: 0; }

.popup-back {
  background: none; border: none;
  color: var(--text-soft); font-size: .9rem;
  cursor: pointer; padding: 0; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.popup-back:hover { color: var(--accent); }

.popup-step { display: none; }
.popup-step.active { display: block; }

.service-options {
  display: grid; gap: 10px;
}
.service-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
  background: #fff;
  text-align: left;
  color: var(--dark);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
}
.service-option:hover {
  border-color: var(--accent);
  background: rgba(9,84,21,.04);
  transform: translateX(4px);
}
.service-option .opt-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(9,84,21,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.service-option .opt-arrow { margin-left: auto; color: var(--accent); font-weight: 700; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Floating popup launcher ---------- */
.popup-launcher {
  position: fixed;
  bottom: 90px; right: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(9,84,21,.35);
  z-index: 80;
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
  font-size: .9rem;
}
.popup-launcher:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(9,84,21,.45);
}
@media (max-width: 640px) {
  .popup-launcher { bottom: 78px; right: 16px; padding: 10px 14px; font-size: .82rem; }
}

/* ==========================================================
   BLOG — card grid + article body
   ========================================================== */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-tag {
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.blog-card h3 {
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card h3 a {
  color: var(--dark);
  text-decoration: none;
}
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p {
  color: var(--text-soft);
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
}
.blog-card-link:hover { color: var(--accent-hover); }

.article-meta {
  color: var(--text-soft);
  font-size: .9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--dark);
}
.article-body h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--dark);
}
.article-body p { font-size: 1.02rem; line-height: 1.75; color: #2a3f35; margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; color: #2a3f35; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; line-height: 1.65; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 14px 20px;
  margin: 22px 0;
  background: rgba(9,84,21,.04);
  font-style: italic;
  color: var(--dark);
  border-radius: 0 10px 10px 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .95rem;
}
.article-body table th,
.article-body table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.article-body table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}
.article-body table tr:nth-child(even) td { background: #f7f9f7; }

.article-cta {
  background: linear-gradient(135deg, var(--dark), #0a2318);
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  margin: 36px 0;
}
.article-cta h3 { color: #fff; margin-bottom: 10px; }
.article-cta p { color: #dfeadf; margin-bottom: 18px; }

.related-posts {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-top: 40px;
}

/* ==========================================================
   CHATBOT — floating bubble + chat window, scripted flow
   Matches brand palette, mobile-safe, never overlaps nav.
   ========================================================== */

.chat-bubble {
  position: fixed;
  bottom: 150px; right: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: 3px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(25,50,39,.35);
  z-index: 85;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: all .2s ease;
  padding: 0;
}
.chat-bubble:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(25,50,39,.5);
}
.chat-bubble::after {
  content: "";
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: chatPulse 2s infinite;
}
.chat-bubble.chat-open::after { display: none; }
@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}

.chat-window {
  position: fixed;
  bottom: 220px; right: 20px;
  width: 360px; max-width: calc(100vw - 40px);
  height: 520px; max-height: calc(100vh - 240px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  z-index: 86;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: popIn .3s ease;
}
.chat-window.active { display: flex; }

.chat-header {
  background: var(--dark);
  color: #fff;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-title { flex: 1; line-height: 1.2; }
.chat-title strong { display: block; font-size: 1rem; color: #fff; }
.chat-title small { font-size: .78rem; opacity: .85; display: flex; align-items: center; gap: 6px; }
.chat-title small::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.chat-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.chat-close:hover { background: rgba(255,255,255,.3); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  background: #f7f9f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .92rem;
  line-height: 1.45;
  animation: fadeIn .3s ease;
  word-wrap: break-word;
}
.chat-msg.bot {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg a { color: inherit; text-decoration: underline; font-weight: 600; }
.chat-msg strong { font-weight: 700; }

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-typing span {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: chatDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatDot {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}

.chat-replies {
  padding: 10px 14px 14px;
  background: #f7f9f7;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.chat-reply-btn {
  background: #fff;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.chat-reply-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.chat-reply-btn.chat-reply-urgent {
  border-color: #e74c3c;
  color: #e74c3c;
}
.chat-reply-btn.chat-reply-urgent:hover {
  background: #e74c3c;
  color: #fff;
}

.chat-input-row {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.chat-input-row input:focus { border-color: var(--accent); }
.chat-input-row button {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.chat-input-row button:hover { background: var(--accent-hover); }

.chat-tel-cta {
  display: block;
  margin-top: 8px;
  padding: 12px 14px;
  background: #e74c3c;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  animation: fadeIn .3s ease;
}
.chat-tel-cta:hover { background: #c0392b; color: #fff; }

@media (max-width: 640px) {
  .chat-bubble { bottom: 130px; right: 16px; width: 54px; height: 54px; font-size: 1.4rem; }
  .chat-window {
    /* On mobile, the chat window fills the screen so the input is always reachable.
       Use dynamic viewport height (dvh) so iOS Safari's URL bar doesn't hide it. */
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    height: auto;
    max-height: none;
    border-radius: 14px;
  }
  /* When the chat window is open on mobile:
     - hide the "Call Now" bar so the chat input isn't covered
     - hide the "Free Quote" popup launcher (stops the 3-button pile-up)
     - remove body bottom padding since the Call bar is hidden */
  body:has(.chat-bubble.chat-open) .mobile-call,
  body:has(.chat-bubble.chat-open) .popup-launcher {
    display: none !important;
  }
  body:has(.chat-bubble.chat-open) { padding-bottom: 0; }
  /* Lower the Free Quote popup launcher a bit so it doesn't crash into the chat bubble */
  .popup-launcher { bottom: 200px; right: 16px; padding: 10px 14px; font-size: .82rem; }
}


/* ---------- Print ---------- */
@media print {
  .header, .footer, .mobile-call, .cta-band, .nav-toggle, .popup-overlay, .popup-launcher,
  .chat-bubble, .chat-window { display: none; }
  body { color: #000; }
}
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  background: #0d2015;
}

.video-wrap video {
  width: 100%;
  display: block;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-time {
  display: block;
  font-size: 0.8rem;
  color: #777;
}

.review-stars {
  color: #f5b301;
  margin-bottom: 10px;
}
.premium-video {
  max-width: 520px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  background: #0b2d1f; /* matches your brand tone */
}

.premium-video video {
  width: 100%;
  height: auto;
  display: block;
}
/* Premium homepage tightening */

.section {
  padding: 70px 0;
}

.section-alt {
  background: #f4f7f3;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2,
.container.narrow h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-header p,
.container.narrow p {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0b5d1e;
}

/* Video section */

.video-section {
  padding-top: 75px;
  padding-bottom: 85px;
}

.premium-video {
  max-width: 520px;
  margin: 34px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0b2d1f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.premium-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Reviews */

.testimonial {
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0b5d1e;
}

.testimonial p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  color: #0b5d1e;
}

.stars {
  color: #f2b400;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Service cards */

.service-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card a {
  display: inline-block;
  margin-bottom: 24px;
}

.service-thumb {
  height: 240px;
  object-fit: cover;
}

/* Areas section */

.container.narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* Mobile */

@media (max-width: 768px) {
  .section {
    padding: 52px 0;
  }

  .premium-video {
    max-width: 92%;
  }

  .service-thumb {
    height: 210px;
  }
}
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.about-process-card {
  min-height: 180px;
  padding: 34px 28px;
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
  border-left: 4px solid #0b5d1e;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.about-process-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.about-process-card p {
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-process-grid {
    grid-template-columns: 1fr;
  }
}
.container.narrow .about-process-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .container.narrow .about-process-grid {
    grid-template-columns: 1fr;
  }
}
.service-list {
  max-width: 760px;
  margin: 38px auto 0;
  border-top: 1px solid rgba(11, 93, 30, 0.18);
}

.service-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(11, 93, 30, 0.18);
  text-align: left;
}

.service-list h4 {
  margin: 0;
}

.service-list p {
  margin: 0;
}

@media (max-width: 700px) {
  .service-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.service-list {
  max-width: 760px;
  margin: 30px auto 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-list h4 {
  margin: 0;
}

.service-list p {
  margin: 0;
}

@media (max-width: 700px) {
  .service-list > div {
    grid-template-columns: 1fr;
  }
}
.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px auto 0;
}

.mini-service-grid div {
  background: #fff;
  border-left: 4px solid #075f1c;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.06);
  text-align: left;
}

.mini-service-grid strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #173b2a;
  margin-bottom: 8px;
}

.mini-service-grid span {
  display: block;
  color: #3f5148;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .mini-service-grid {
    grid-template-columns: 1fr;
  }
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.split-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split > div:last-child {
  max-width: 520px;
}
.section.section-alt {
  padding-bottom: 60px;
}
/* Tree surgery page tightening */

.narrow {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1fr;
}

.clean-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
  background: #f4f7f3;
}

.clean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make the TPO image tighter and less huge */
.split-reverse .clean-image {
  max-width: 520px;
  justify-self: end;
}

/* Service grid clean layout */
.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px auto 0;
}

.mini-service-grid div {
  background: #fff;
  border-left: 4px solid #075f1c;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.06);
  text-align: left;
}

.mini-service-grid strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #173b2a;
  margin-bottom: 8px;
}

.mini-service-grid span {
  display: block;
  color: #3f5148;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-reverse .clean-image {
    max-width: 100%;
    justify-self: stretch;
  }

  .mini-service-grid {
    grid-template-columns: 1fr;
  }
}
.clean-image {
  border-radius: 16px;
  overflow: hidden;
}

.clean-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.before-after-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ba-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .ba-row {
    grid-template-columns: 1fr;
  }
}
.dropdown-arrow::after {
  content: "▾";
  margin-left: 6px;
}

.hero h1 {
  max-width: 760px;
}

.hero-sub {
  font-size: 1.15rem;
  margin: 14px 0 22px;
  color: #f2f5f0;
}

.hero-support {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #e0e8df;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .trust-strip {
    margin-top: 24px;
  }

  .mobile-call {
    display: none;
  }
}
.dropdown-arrow::after {
  content: "▾";
  margin-left: 6px;
}

.hero h1 {
  max-width: 760px;
}

.hero-sub {
  font-size: 1.15rem;
  margin: 14px 0 22px;
  color: #f2f5f0;
}

.hero-support {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #e0e8df;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.video-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.reviews-section .section-header {
  margin-bottom: 32px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1050px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
  border-left: 5px solid #006017;
  text-align: left;
}

.review-card .stars {
  color: #f5b400;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: #006017;
}

.mobile-call,
a.mobile-call,
.floating-quote,
.free-quote-floating {
  display: none !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-support {
    color: #f2f5f0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .trust-strip {
    margin-top: 22px;
    gap: 10px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-card {
    text-align: left;
    padding: 26px 22px;
  }
}
.free-quote,
.free-quote-btn,
.floating-quote,
.chat-quote,
a[href*="quote"] {
  display: none !important;
}
#chat-widget + a,
.chat-widget + a {
  display: none !important;
}
/* HARD REMOVE FLOATING FREE QUOTE BUTTON (chat widgets etc) */
body a[href*="quote"],
body a[href*="Quote"],
body button[class*="quote"],
body div[class*="quote"],
body div[class*="Quote"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Kill common chat CTA wrappers */
body div[style*="position: fixed"][style*="bottom"] a,
body div[style*="position: fixed"][style*="bottom"] button {
  display: none !important;
}
iframe {
  pointer-events: auto;
}

iframe[src*="chat"],
iframe[src*="widget"] {
  transform: scale(0.0) !important;
}