/* ═══════════════════════════════════════════
   DYLAN'S TREE SERVICE INC. — Stylesheet
   Brand: Deep Forest Green #1a3d1a / #2d6a2d
   Accent: #4CAF50 / #39a839
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; line-height: 1.6; color: #1a1a1a;
  background: #fff; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

:root {
  --green:    #2d6a2d;
  --green2:   #4CAF50;
  --green3:   #39a839;
  --dark:     #1a1a1a;
  --dark2:    #0a0a0a;
  --white:    #ffffff;
  --gray:     #f8f8f4;
  --muted:    #6c757d;
  --header:   80px;
  --r:        8px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-size: .83rem; font-weight: 700;
  letter-spacing: .06em; border-radius: var(--r);
  border: 2px solid transparent; cursor: pointer;
  transition: all .22s ease; white-space: nowrap; text-transform: uppercase;
}
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,45,.4); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark { background: #fff; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-dark-solid { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark-solid:hover { background: #000; }
.btn-white-green { background: #fff; color: var(--green); border-color: #fff; font-weight: 800; }
.btn-white-green:hover { background: #e8f5e9; }
.btn-full { width: 100%; justify-content: center; padding: 15px 26px; font-size: .9rem; }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 52px; }
.sec-tag {
  display: inline-block; color: var(--green3); font-size: .72rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 12px; border-bottom: 2px solid var(--green2); padding-bottom: 3px;
}
.sec-tag--light { color: var(--green2); border-color: rgba(76,175,80,.5); }
.sec-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 900;
  letter-spacing: .03em; color: var(--dark); line-height: 1.15;
}
.sec-title--light { color: #fff; }
.sec-sub { color: var(--muted); font-size: .9rem; margin-top: 10px; }
.sec-sub--light { color: rgba(255,255,255,.55); }


/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header); background: #0f1f16;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  border-bottom: 3px solid #2d6a4f;
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.45); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 16px; }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-size: .98rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-tag { font-size: .6rem; font-weight: 600; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  display: block; padding: 8px 11px; font-size: .71rem; font-weight: 700;
  letter-spacing: .07em; color: rgba(255,255,255,0.85); border-radius: 4px;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.main-nav a:hover, .main-nav a.nav-active { color: #f5c800; border-bottom-color: #f5c800; }

/* Header phone */
.header-phone { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.phone-icon { color: var(--green); display: flex; }
.phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.phone-label { font-size: .6rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.phone-number { font-size: 1.05rem; font-weight: 900; color: #f5c800; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: var(--header); left: 0; right: 0;
  background: #fff; z-index: 999; padding: 12px 16px 16px;
  transform: translateY(-110%); transition: transform .3s ease;
  border-bottom: 3px solid var(--green); box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav .mnl {
  display: block; padding: 12px 14px; font-size: .82rem; font-weight: 700;
  color: var(--dark); border-radius: 6px; letter-spacing: .05em;
}
.mobile-nav .mnl:hover { background: var(--gray); color: var(--green); }
.mobile-nav .mnl-cta { background: var(--green); color: #fff !important; text-align: center; margin-top: 6px; border-radius: 6px; }


/* ═══════════════════════════════════════════
   HERO — dark forest gradient
═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header);
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.50);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-bg-img { display: none; }
@media (max-width: 768px) {
  .hero { background-position: center top; }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 64px 24px 88px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,80,.12); border: 1px solid rgba(76,175,80,.35);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
  font-size: .78rem; font-weight: 700; color: var(--green2); letter-spacing: .04em;
}

.hero-headline {
  display: flex; flex-direction: column;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.05; letter-spacing: .01em; margin-bottom: 22px;
}
.hw { color: #fff; }
.hg { color: var(--green2); }

.hero-sub { font-size: .97rem; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.7); text-transform: uppercase;
}
.ht-item { display: flex; align-items: center; gap: 5px; }
.ht-sep { color: rgba(255,255,255,.25); }


/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar { background: #fff; padding: 0 0 52px; position: relative; z-index: 3; }
.trust-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 28px rgba(0,0,0,.1); border: 1px solid #e9ecef;
  display: flex; align-items: stretch; margin-top: -38px; overflow: hidden;
}
.trust-item { flex: 1; display: flex; align-items: center; gap: 14px; padding: 26px 20px; transition: background .2s; }
.trust-item:hover { background: #f0faf0; }
.ti-icon { flex-shrink: 0; }
.ti-text { display: flex; flex-direction: column; gap: 2px; }
.ti-text strong { font-size: .78rem; font-weight: 800; color: var(--dark); line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }
.ti-text span { font-size: .72rem; color: var(--muted); }
.trust-divider { width: 1px; background: #e9ecef; flex-shrink: 0; margin: 14px 0; }


/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { background: var(--gray); padding: 76px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: #fff; border: 1px solid #e4e7eb; border-radius: var(--r);
  padding: 22px; display: flex; align-items: flex-start; gap: 16px;
  transition: all .22s; cursor: default;
}
.svc-card:hover { box-shadow: 0 8px 28px rgba(45,106,45,.12); transform: translateY(-2px); border-color: var(--green2); }
.svc-icon { flex-shrink: 0; }
.svc-text { display: flex; flex-direction: column; gap: 5px; }
.svc-text h3 { font-size: .8rem; font-weight: 800; color: var(--dark); letter-spacing: .05em; }
.svc-text p { font-size: .77rem; color: var(--muted); line-height: 1.55; }


/* ═══════════════════════════════════════════
   WHY CHOOSE US — dark background
═══════════════════════════════════════════ */
.why-us {
  background: linear-gradient(145deg, #071207 0%, #0e2410 55%, #071207 100%);
  padding: 80px 0;
}
.why-us .section-header { margin-bottom: 52px; }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px; max-width: 960px; margin: 0 auto;
}
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.wi-check {
  width: 26px; height: 26px; min-width: 26px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why-item > div { display: flex; flex-direction: column; gap: 4px; }
.why-item strong { font-size: .88rem; font-weight: 700; color: #fff; }
.why-item span { font-size: .76rem; color: rgba(255,255,255,.52); line-height: 1.55; }


/* ═══════════════════════════════════════════
   GALLERY — before/after sliders
═══════════════════════════════════════════ */
.gallery { background: #fff; padding: 76px 0; }
.gallery .section-header { margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.ba-card { border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.ba-track { position: relative; height: 240px; overflow: hidden; cursor: col-resize; user-select: none; }

.ba-before-div {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #a8c8a8 0%, #7aab7a 100%);
}
.ba-after-div {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a4a1a 0%, #0d2610 100%);
  clip-path: inset(0 50% 0 0);
}
/* after-div text placeholders via pseudo-elements */
.ba-before-div::after {
  content: 'BEFORE';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; letter-spacing: .15em;
  color: rgba(255,255,255,.5);
}
.ba-after-div::after {
  content: 'AFTER';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; letter-spacing: .15em;
  color: rgba(76,175,80,.6);
}

.ba-slider {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: rgba(255,255,255,.9); transform: translateX(-50%); z-index: 10; cursor: col-resize;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.4); border: 2.5px solid #fff;
}
.ba-labels { display: flex; justify-content: space-between; background: #fff; border-top: 1px solid #e9ecef; }
.ba-before-lbl, .ba-after-lbl { padding: 8px 14px; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.ba-before-lbl { background: var(--dark); color: #fff; }
.ba-after-lbl { background: var(--green); color: #fff; margin-left: auto; }
.ba-caption { background: var(--gray); padding: 7px 14px; font-size: .71rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.gallery-cta { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════
   SERVICE AREAS — dark
═══════════════════════════════════════════ */
.areas {
  background: linear-gradient(145deg, #071207 0%, #0e2410 55%, #071207 100%);
  padding: 76px 0;
}
.areas .section-header { margin-bottom: 36px; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(76,175,80,.3);
  color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 600;
  padding: 10px 22px; border-radius: 50px; transition: all .2s; cursor: default;
}
.area-chip:hover { background: var(--green); border-color: var(--green); color: #fff; }


/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-bar { background: linear-gradient(135deg, var(--green) 0%, var(--green3) 100%); padding: 52px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.cta-text p { font-size: .88rem; color: rgba(255,255,255,.88); }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }


/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */
.contact-section { background: var(--gray); padding: 76px 0; }
.contact-inner { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }

.contact-info { padding-top: 4px; }
.contact-info .sec-tag { display: block; margin-bottom: 12px; }
.contact-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 10px; }
.contact-desc { color: var(--muted); font-size: .9rem; margin-bottom: 28px; line-height: 1.6; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { width: 38px; height: 38px; background: #e8f5e9; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-details strong { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .08em; color: var(--dark); text-transform: uppercase; margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: .88rem; color: var(--muted); }
.contact-details a:hover { color: var(--green); }

/* Form card */
.cf-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 8px 36px rgba(0,0,0,.08); border: 1px solid #e9ecef; }
.cf-card h3 { font-size: 1.35rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.cf-card > p { color: var(--muted); font-size: .87rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: .71rem; font-weight: 700; color: var(--dark); letter-spacing: .07em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px; border: 2px solid #e0e4e0; border-radius: 6px;
  font-size: .88rem; color: #1a1a1a; background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,45,.1);
}
.fg textarea { resize: vertical; }

#form-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
#form-success h4 { font-size: 1.2rem; font-weight: 900; color: var(--dark); }
#form-success p { color: var(--muted); font-size: .9rem; }


/* ═══════════════════════════════════════════
   FOOTER — dark
═══════════════════════════════════════════ */
.site-footer { background: var(--dark2); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 48px; padding: 60px 24px 48px; }

.footer-logo-text { display: flex; flex-direction: column; margin-bottom: 14px; }
.footer-logo-main { font-size: .95rem; font-weight: 900; letter-spacing: .05em; color: var(--green2); text-transform: uppercase; }
.footer-logo-tag { font-size: .62rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.3); text-transform: uppercase; margin-top: 3px; }
.fc-brand p { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 260px; margin-top: 6px; }

.fc h4 { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fc ul { display: flex; flex-direction: column; gap: 8px; }
.fc a, .fc li { font-size: .78rem; color: rgba(255,255,255,.42); transition: color .2s; }
.fc a:hover { color: var(--green2); }
.fc-cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; }

.fc-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.fc-contact li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .78rem; }
.fc-contact a { color: rgba(255,255,255,.5); }
.fc-contact a:hover { color: var(--green2); }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .2s;
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }

.footer-bottom { background: var(--green); text-align: center; padding: 13px 24px; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.88); font-weight: 600; }


/* ─── BACK TO TOP ─── */
.btt {
  position: fixed; bottom: 80px; right: 24px; z-index: 900;
  width: 44px; height: 44px; background: var(--green); border: none;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(45,106,45,.5);
  opacity: 0; transform: translateY(16px); transition: all .25s;
}
.btt.visible { opacity: 1; transform: translateY(0); }
.btt:hover { background: var(--green2); }


/* ─── STICKY MOBILE CTA BAR ─── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--dark2); border-top: 2px solid var(--green);
  flex-direction: row; height: 56px;
}
.mcta-call, .mcta-quote {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .82rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; transition: background .2s;
}
.mcta-call { background: var(--green); color: #fff; }
.mcta-call:hover { background: var(--green3); }
.mcta-quote { background: var(--dark2); color: var(--green2); border-left: 1px solid rgba(255,255,255,.08); }
.mcta-quote:hover { background: #111; }


/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .trust-card { flex-wrap: wrap; }
  .trust-item { flex: 0 0 calc(50% - 1px); }
  .trust-divider:nth-child(4) { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fc-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --header: 64px; }
  .header-phone { display: none; }
  .hero-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-btns .btn { flex: 1; justify-content: center; }
  .trust-card { flex-direction: column; }
  .trust-item { flex: 1 1 100%; }
  .trust-divider { width: 100%; height: 1px; margin: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { width: 100%; justify-content: center; flex-wrap: wrap; }
  .cta-btns .btn { flex: 1; justify-content: center; min-width: 200px; }
  .cf-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .fc-brand { grid-column: auto; }
  .mobile-cta-bar { display: flex; }
  .btt { bottom: 68px; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 6px 10px; }
  .ht-sep { display: none; }
}

/* ── LOGO IMAGE ── */
.logo-link img {
  display: block;
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,0.4);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.6), 0 3px 12px rgba(0,0,0,0.5);
  background: #0f1f16;
}

/* Footer logo */
.footer-logo-img {
  display: block;
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,0.4);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.5), 0 3px 12px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

/* ── NAV CTA BUTTON ── */
.nav-cta-btn {
  background: linear-gradient(135deg, #f5c800 0%, #d4a800 100%);
  color: #0f1f16;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(245,200,0,0.35);
  margin-left: 0.75rem;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(245,200,0,0.45); }

/* ── NAV DROPDOWNS ── */
.nav-has-dropdown { position: relative; }
.nav-drop-btn {
  background: none; border: none; cursor: pointer;
  color: inherit; font: inherit; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; display: flex; align-items: center; gap: 4px;
  padding: 0.25rem 0; transition: color 0.2s;
}
.nav-has-dropdown:hover .nav-drop-btn,
.nav-has-dropdown.open .nav-drop-btn { color: #f5c800; }
.nav-drop-btn svg { transition: transform 0.2s; }
.nav-has-dropdown.open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: 0;
  background: #0f1f16; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.5rem; min-width: 200px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.4); z-index: 600; list-style: none;
}
.nav-has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 0.55rem 0.875rem; color: #c8d8c8;
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  border-radius: 5px; transition: all 0.15s; letter-spacing: 0;
}
.nav-dropdown li a:hover { background: rgba(245,200,0,0.12); color: #f5c800; }

@media (max-width: 900px) {
  .nav-cta-btn { display: none; }
  .nav-has-dropdown { display: none; }
}

/* ── GALLERY RESPONSIVE ── */
@media (max-width: 768px) {
  #gallery > .container > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #gallery > .container > div > div[style*="grid-column:span 2"] {
    grid-column: span 2 !important;
  }
  #gallery > .container > div > div[style*="grid-row:span 2"] {
    grid-row: span 1 !important;
  }
}
@media (max-width: 480px) {
  #gallery > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  #gallery > .container > div > div[style*="grid-column:span 2"],
  #gallery > .container > div > div[style*="grid-column:span 1"] {
    grid-column: span 1 !important;
  }
}

/* ═══════════════════════════════════════════
   SEO/AEO EXPANSION STYLES — 2026-05-06
═══════════════════════════════════════════ */

/* ── DROPDOWN NAV ── */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #111; border: 1px solid #222; border-radius: 8px;
  min-width: 220px; padding: 8px 0; z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav-dropdown a {
  display: block; padding: 10px 18px; color: #94a3b8;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; transition: color .15s, background .15s;
}
.nav-dropdown a:hover { color: #fff; background: rgba(92,184,92,.08); }
.nav-dropdown-title {
  padding: 8px 18px 4px; font-size: .65rem; color: #3a4a3a;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
}

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--paper); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* ── PAGE HERO (service/city pages) ── */
.page-hero { background: var(--dark2); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,10,4,.9) 0%, rgba(14,30,14,.85) 100%); }
.page-hero-glow { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(92,184,92,.07), transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(92,184,92,.1); border: 1px solid rgba(92,184,92,.2); color: #8dd98d; font-size: .68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 20px; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: 3rem; line-height: 1.1; color: #fff; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero-desc { font-size: 1rem; color: #94a3b8; max-width: 600px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-badges { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 80px 0; }
.content-section--paper { background: var(--paper); }
.content-section--dark { background: var(--dark); }
.content-section--white { background: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-prose h2 { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.content-prose h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin: 28px 0 10px; }
.content-prose p { color: var(--muted); font-size: .95rem; line-height: 1.75; margin-bottom: 16px; }
.content-prose ul { list-style: none; padding: 0; }
.content-prose li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 10px; }
.content-prose li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* ── TRUST CARDS ── */
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px 20px; }
.trust-card-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #e8f5e8, #d4edd4); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.trust-card h4 { font-size: .85rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.trust-card p { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num { width: 36px; height: 36px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .85rem; flex-shrink: 0; }
.step-body h4 { font-weight: 800; color: var(--dark); font-size: .9rem; margin-bottom: 4px; }
.step-body p { color: var(--muted); font-size: .83rem; line-height: 1.55; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 800; font-size: .9rem; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { padding: 0 24px 20px; color: var(--muted); font-size: .88rem; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── INTERNAL LINKS GRID ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: all .2s; }
.related-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(92,184,92,.1); transform: translateY(-2px); }
.related-card-tag { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 6px; }
.related-card h4 { font-size: .88rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.related-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #071407 0%, #0d2a0d 50%, #1a4a1a 100%); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(92,184,92,.1), transparent 60%); }
.cta-band-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.cta-band p { color: #94a3b8; font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE (sub-pages) ── */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2.1rem; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.8rem; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SUB-PAGE FIX — missing vars + nav styles for service/city pages
   ═══════════════════════════════════════════════════════ */

/* 1. CSS variables the sub-page styles rely on */
:root {
  --accent:  #4CAF50;
  --paper:   #f4f9f4;
  --border:  #d8ecd8;
  --text:    #1a1a1a;
  --g1:      #1a3a1a;
  --g2:      #2d5a2d;
  --g3:      #3d7a3d;
  --lime:    #8bc34a;
}

/* 2. .wrap = container alias */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* 3. .nav — sticky header for service/city pages */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #0f1f16;
  border-bottom: 3px solid #2d6a4f;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

/* 4. .nav-inner — flex row */
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 16px;
}

/* 5. Logo — constrain image size */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; max-width: none; border-radius: 4px; }

/* 6. Nav links list */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links > li > a {
  display: block; padding: 8px 12px;
  font-size: .71rem; font-weight: 700; letter-spacing: .07em;
  color: rgba(255,255,255,.85); border-radius: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; text-transform: uppercase;
}
.nav-links > li > a:hover { color: #f5c800; border-bottom-color: #f5c800; }

/* 7. Nav CTA button */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #2d6a2d; color: #fff;
  padding: 9px 18px; border-radius: 6px;
  font-size: .75rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #4CAF50; transform: translateY(-1px); color: #fff; }

/* 8. Hamburger button */
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px;
}
.nav-ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }

/* 9. Mobile nav */
.mob-nav {
  display: none;
  background: #111; border-top: 1px solid #222;
  position: sticky; top: 68px; z-index: 999;
}
.mob-nav.open { display: block; }
.mob-nav a {
  display: block; padding: 14px 24px;
  color: #94a3b8; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .8px;
  border-bottom: 1px solid #1a1a1a;
}
.mob-nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mob-nav a.mob-call {
  background: #2d6a2d; color: #fff;
  margin: 10px 16px 14px; border-radius: 6px;
  text-align: center; border: none; display: block;
}

/* 10. Readability fixes — boost font sizes & contrast */
.content-prose p { font-size: 1rem; color: #374151; line-height: 1.8; }
.content-prose li { font-size: .93rem; color: #374151; }
.content-prose h2 { color: #111827; }
.content-prose h3 { font-size: 1.05rem; color: #111827; }
.trust-card p { font-size: .84rem; color: #4b5563; line-height: 1.6; }
.step-body p { font-size: .87rem; color: #4b5563; }
.faq-a { font-size: .92rem; color: #374151; line-height: 1.75; }
.page-hero-desc { font-size: 1.05rem; color: #cbd5e1; }

/* 11. Section-tag / section-title / section-sub for sub-pages */
.section-tag {
  display: inline-block; color: #4CAF50;
  font-size: .7rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 10px;
  border-bottom: 2px solid #4CAF50; padding-bottom: 3px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400;
  color: #111827; line-height: 1.2; margin-bottom: 14px;
}
.section-sub { color: #6b7280; font-size: .95rem; max-width: 600px; }

/* 12. btn-primary / btn-ghost for sub-pages */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2d6a2d; color: #fff;
  padding: 13px 24px; border-radius: 8px;
  font-size: .83rem; font-weight: 800; letter-spacing: .05em;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #4CAF50; transform: translateY(-1px); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.35);
  padding: 13px 24px; border-radius: 8px;
  font-size: .83rem; font-weight: 800; letter-spacing: .05em;
  transition: all .2s;
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.07); }

/* 13. hb trust badges in hero */
.hb {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.hb svg { opacity: .8; }

/* 14. btn-big variants */
.btn-big {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 8px;
  font-size: .88rem; font-weight: 800; letter-spacing: .05em;
  transition: all .2s;
}
.btn-big-green { background: #4CAF50; color: #fff; }
.btn-big-green:hover { background: #43a047; transform: translateY(-1px); color: #fff; }
.btn-big-outline { background: transparent; color: rgba(255,255,255,.85); border: 2px solid rgba(255,255,255,.35); }
.btn-big-outline:hover { border-color: #fff; color: #fff; }

/* 15. Responsive nav — hide links on mobile */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-ham { display: flex; }
}

/* ── MOBILE NAV REDESIGN ── */
.mob-nav {
  display: none; background: #0a0a0a;
  border-top: 2px solid var(--accent);
  max-height: 82vh; overflow-y: auto;
}
.mob-nav.open { display: block; }
.mob-nav-section { border-bottom: 1px solid #181818; padding: 12px 0 6px; }
.mob-nav-label {
  font-size: .58rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); padding: 0 20px 8px;
}
.mob-nav-section > a {
  display: flex; align-items: center; padding: 10px 20px;
  color: #7a8a9a; font-size: .79rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color .15s, background .15s;
}
.mob-nav-section > a::before {
  content: ''; width: 4px; height: 4px; background: #2a3a2a;
  border-radius: 50%; margin-right: 12px; flex-shrink: 0; transition: background .15s;
}
.mob-nav-section > a:hover { color: #fff; background: rgba(92,184,92,.06); }
.mob-nav-section > a:hover::before { background: var(--accent); }
.mob-nav-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 20px 14px; }
.mob-nav-chips a {
  background: rgba(255,255,255,.04); border: 1px solid #222; color: #7a8a9a;
  padding: 5px 13px; border-radius: 50px; font-size: .68rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; transition: all .15s;
}
.mob-nav-chips a:hover { background: rgba(92,184,92,.12); border-color: var(--accent); color: #fff; }
.mob-nav-ctas {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; padding: 14px 16px 18px; background: #060606;
}
.mob-btn-quote {
  display: flex; align-items: center; justify-content: center;
  background: rgba(92,184,92,.08); border: 1.5px solid rgba(92,184,92,.25);
  color: var(--accent); padding: 13px 8px; border-radius: 8px;
  font-weight: 800; font-size: .74rem; text-transform: uppercase; letter-spacing: .4px;
}
.mob-btn-call {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; background: var(--accent); color: #fff;
  padding: 13px 8px; border-radius: 8px; font-weight: 900;
  font-size: .78rem; letter-spacing: .3px;
}
