/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

/* ── Header ── */
header {
  background: #0d1a0d;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-brand span { color: #6ecf5a; }

/* ── Nav ── */
nav { display: flex; align-items: center; gap: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid #d0ddd0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 600;
  padding: 6px 0;
}

/* invisible bridge fills the 10px gap so hover stays alive */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  color: #1a1a1a !important;
  padding: 9px 18px !important;
  font-size: 13px !important;
  border-radius: 0 !important;
  background: transparent !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { background: #f5f8f5 !important; color: #3a8c2f !important; }

/* Call button */
.btn-call {
  background: #4a9e3f !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 5px !important;
  text-decoration: none;
  transition: background 0.2s !important;
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-call:hover { background: #3a8c2f !important; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(74,158,63,0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(28px, 5.5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  background: #4a9e3f;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #3a8c2f; }

.btn-outline {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-green {
  background: #4a9e3f;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-green:hover { background: #3a8c2f; }

/* ── Section shared ── */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a9e3f;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #666;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 52px; }

/* ── Services Section ── */
.services-section { background: #fff; padding: 88px 24px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}

.service-card {
  border: 1px solid #d0ddd0;
  border-radius: 8px;
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(74,158,63,0.15);
  transform: translateY(-3px);
}

.sc-icon { font-size: 34px; margin-bottom: 14px; line-height: 1; }

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.service-card p { font-size: 14px; color: #666; line-height: 1.65; }

/* All services grid */
.all-services { border-top: 1px solid #e0e8e0; padding-top: 40px; }

.all-services h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-item {
  background: #f2f8f0;
  border: 1px solid #c8ddc4;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #2a5c22;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.area-item:hover { background: #4a9e3f; color: #fff; border-color: #4a9e3f; }

/* ── Light green section ── */
.light-section { background: #f5f8f5; padding: 88px 24px; }

/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.why-card {
  background: #fff;
  border: 1px solid #d8e8d4;
  border-radius: 8px;
  padding: 28px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 46px;
  height: 46px;
  background: #f0f8ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: #4a9e3f;
  font-weight: 700;
}

.why-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.why-body p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── Dark CTA band ── */
.dark-band {
  background: #1b3d1b;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.dark-band h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.dark-band p { font-size: 14px; color: rgba(255,255,255,0.8); }
.dark-band a {
  background: #4a9e3f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.dark-band a:hover { background: #3a8c2f; }

/* ── Reviews ── */
.reviews-section { background: #fff; padding: 88px 24px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f5f8f5;
  border: 1px solid #d8e8d4;
  border-radius: 8px;
  padding: 28px 24px;
}

.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }

.review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author { font-size: 13px; font-weight: 600; color: #2a5c22; }

/* ── Service areas section ── */
.areas-section { background: #f5f8f5; padding: 88px 24px; }

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.city-tag {
  background: #fff;
  border: 1px solid #c8ddc4;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #2a5c22;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.city-tag:hover { background: #4a9e3f; color: #fff; border-color: #4a9e3f; }

/* ── Contact section ── */
.contact-section { background: #1b3d1b; padding: 88px 24px; }
.contact-section .section-label { color: #6ecf5a; }
.contact-section .section-title { color: #fff; }
.contact-section .section-sub { color: rgba(255,255,255,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}

.contact-card .cc-icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h3 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card p, .contact-card a { font-size: 17px; font-weight: 600; color: #fff; text-decoration: none; line-height: 1.5; }
.contact-card a:hover { color: #6ecf5a; }

/* ── Footer ── */
footer { background: #0d1a0d; padding: 64px 24px 32px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-phone a {
  font-size: 16px;
  font-weight: 700;
  color: #6ecf5a;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #6ecf5a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── Service page hero (split) ── */
.svc-hero {
  background: #f5f8f5;
  padding: 60px 24px;
}

.svc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.svc-hero-text .section-label { margin-bottom: 10px; }
.svc-hero-text h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.18;
}
.svc-hero-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.svc-hero-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.svc-hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Breadcrumb */
.breadcrumb { background: #fff; border-bottom: 1px solid #e0e8e0; padding: 12px 24px; }
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: #888;
}
.breadcrumb-inner a { color: #4a9e3f; text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 6px; }

/* Content sections */
.content-section { padding: 72px 24px; }
.content-section.alt { background: #f5f8f5; }

.content-inner { max-width: 900px; margin: 0 auto; }

.content-inner h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.content-inner p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Process steps */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8e8d4;
  border-radius: 8px;
}
.process-step:before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  background: #4a9e3f;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step h3 { font-size: 17px; font-weight: 600; color: #111; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: #666; line-height: 1.65; margin: 0; }

/* Benefits list */
.benefits-list { list-style: none; }
.benefits-list li {
  font-size: 15px;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #e0e8e0;
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4a9e3f;
  font-weight: 700;
}
.benefits-list li:last-child { border-bottom: none; }

/* Area cards (service page) */
.area-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-card {
  background: #fff;
  border: 1px solid #c8ddc4;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.area-card:hover { background: #4a9e3f; border-color: #4a9e3f; }
.area-card:hover h3, .area-card:hover p { color: #fff; }
.area-card h3 { font-size: 14px; font-weight: 600; color: #2a5c22; margin-bottom: 4px; }
.area-card p { font-size: 12px; color: #666; }

/* FAQ */
.faq-list { }
.faq-item { border-bottom: 1px solid #d8e8d4; }
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 22px; color: #4a9e3f; font-weight: 400; }
details[open] summary::after { content: '−'; }
.faq-item .faq-body { font-size: 15px; color: #555; line-height: 1.7; padding-bottom: 20px; }

/* CTA section */
.cta-section { background: #1b3d1b; padding: 72px 24px; text-align: center; }
.cta-section h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-phone { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #6ecf5a; text-decoration: none; display: block; margin-bottom: 28px; }
.cta-phone:hover { color: #fff; }

/* City page hero */
.city-hero { position: relative; min-height: 52vh; display: flex; align-items: center; text-align: center; overflow: hidden; }
.city-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; }
.city-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.62); }
.city-hero-content { position: relative; z-index: 10; padding: 72px 24px; max-width: 800px; margin: 0 auto; width: 100%; }
.city-hero-content h1 { font-size: clamp(26px, 5vw, 56px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.city-hero-content p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.85); margin-bottom: 30px; line-height: 1.65; }

/* Services availability grid */
.svc-avail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-avail-item {
  background: #fff;
  border: 1px solid #c8ddc4;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #2a5c22;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.svc-avail-item::before { content: '✓'; color: #4a9e3f; font-weight: 700; }
.svc-avail-item:hover { background: #f0f8ee; }

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Push burger to the right edge */
  .header-inner { justify-content: flex-start; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  /* nav takes 0 flex space; absolute .nav-links still overflows visibly */
  nav { flex: 0 0 0; overflow: visible; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0d1a0d;
    flex-direction: column;
    padding: 20px 20px 24px;
    gap: 2px;
    border-top: 2px solid rgba(74,158,63,0.5);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .nav-links.open { display: flex; }

  .nav-links > a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
  }

  .nav-links > a:hover { background: rgba(255,255,255,0.08); }

  .nav-dropdown { width: 100%; }

  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin: 4px 0 4px 12px;
    padding: 4px 0;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.75) !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
  }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }

  .btn-call { margin-left: 0; width: 100%; text-align: center; margin-top: 8px; }

  .service-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-avail-grid { grid-template-columns: 1fr 1fr; }

  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-img { order: -1; }
  .svc-hero-img img { height: 240px; }

  .dark-band { flex-direction: column; text-align: center; }

  .hero { min-height: 85vh; }
  .hero-content { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: 1fr 1fr; }
  .svc-avail-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
