/* ==========================================================================
   Garrison's Tree Service, LLC — Main Stylesheet
   ========================================================================== */

:root {
  --forest: #123524;
  --forest-dark: #0b2417;
  --forest-light: #1c4d33;
  --orange: #4b5a68;
  --orange-dark: #333e49;
  --accent-green: #3f7d55;
  --accent-green-dark: #2f5f41;
  --accent-green-light: #e8f2ea;
  --accent-green-bright: #6fc78a;
  --accent-green-soft: #9fd6ae;
  --off-white: #F8F7F3;
  --white: #ffffff;
  --charcoal: #24272B;
  --gray: #545e6b;
  --gray-light: #dde2e7;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(18, 53, 36, 0.08);
  --shadow-md: 0 10px 30px rgba(18, 53, 36, 0.14);
  --shadow-lg: 0 20px 50px rgba(18, 53, 36, 0.22);
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--charcoal); }
a { color: inherit; text-decoration: none; }
ul { padding-left: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 60px 0; }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-forest { background: var(--forest); color: var(--white); }
.bg-forest h2, .bg-forest h3, .bg-forest p { color: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--accent-green);
  border-radius: 4px;
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lead { font-size: 1.1rem; color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px rgba(75,90,104,0.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(75,90,104,0.45); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-dark-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-dark-outline:hover { background: var(--forest); color: var(--white); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-lg { padding: 20px 40px; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn i { font-size: 1.05em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1300;
  background: rgba(18,53,36,0.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(18,53,36,0.97);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.site-header.solid { background: var(--forest); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7fd99a; font-weight: 600; }
.brand-logo-img { height: 52px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); transition: height .3s ease; }
.site-header.scrolled .brand-logo-img { height: 44px; }
.footer-logo-img { height: 58px; }
@media (max-width: 480px) { .brand-logo-img { height: 42px; } }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.main-nav a.nav-emergency { background: var(--orange); color: var(--white); }
.main-nav a.nav-emergency:hover { background: var(--orange-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.header-call i { color: #7fd99a; font-size: 1.2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-close { display: none; }

/* Mobile nav */
@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 88vw);
    background: var(--forest-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 26px 30px;
    gap: 6px;
    transition: right .35s ease;
    z-index: 1200;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    width: 100%;
    text-align: left;
    display: block;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255,255,255,0.15);
  }
  .nav-toggle { display: block; position: relative; z-index: 1310; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 22px; right: 22px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background .2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close:hover { background: var(--accent-green); }
  .header-call span.call-text { display: none; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(11,24,17,.6);
    z-index: 1150; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav-overlay.show { opacity: 1; pointer-events: all; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,24,17,0.75) 0%, rgba(11,24,17,0.55) 45%, rgba(11,24,17,0.92) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding-top: 120px; padding-bottom: 60px; }
.hero-content h1 { color: var(--white); text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-content .lead { font-size: 1.25rem; color: rgba(255,255,255,0.92); max-width: 600px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-badge i { color: #7fd99a; }

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding-top: var(--header-height);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,24,17,0.82), rgba(11,24,17,0.78));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; padding: 70px 0; }
.page-hero-content h1 { color: var(--white); }
.page-hero-content p.lead { color: var(--white); }
.headline-accent { color: var(--accent-green-bright); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a { color: #9fd6ae; font-weight: 600; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--forest-dark); padding: 22px 0; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); }
.trust-item i { color: #7fd99a; font-size: 1.6rem; }
.trust-item span { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 900px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: var(--accent-green-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray); flex-grow: 1; }
.service-card .card-link { font-weight: 700; color: var(--accent-green); display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }
.service-card .card-link i { transition: transform .2s; }
.service-card:hover .card-link i { transform: translateX(4px); }

.why-card { text-align: center; padding: 30px 20px; }
.why-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent-green-light);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* ---------- Image + content split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media { position: relative; }
.split-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--accent-green); color: var(--white);
  padding: 16px 22px; border-radius: var(--radius-sm);
  font-weight: 800; box-shadow: var(--shadow-md);
  font-size: 0.95rem; line-height: 1.2;
}
.split-badge strong { display: block; font-size: 1.6rem; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; }
.check-list li i { color: var(--accent-green); margin-top: 3px; }

/* ---------- Testimonials ---------- */
.testimonial-track-wrap { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 8px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.stars { color: var(--accent-green); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p.quote { font-size: 1.2rem; font-style: italic; color: var(--charcoal); margin-bottom: 18px; }
.testimonial-author { font-weight: 800; color: var(--forest); }
.testimonial-location { color: var(--gray); font-size: 0.9rem; }
.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-light); cursor: pointer; border: none; }
.testimonial-dot.active { background: var(--accent-green); width: 26px; border-radius: 6px; transition: width .2s; }
.testimonial-arrow {
  background: var(--white); border: 1px solid var(--gray-light);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--forest); box-shadow: var(--shadow-sm);
}
.testimonial-arrow:hover { background: var(--accent-green); color: var(--white); border-color: var(--accent-green); }
.testimonial-nav-row { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 10px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(63,125,85,0.22);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { color: var(--white); }
.final-cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--forest);
  font-size: 1.02rem;
}
.faq-question i { transition: transform .25s; color: var(--accent-green); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer p { color: var(--gray); margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-weight: 700; font-size: 0.9rem; color: var(--forest); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent-green); box-shadow: 0 0 0 3px rgba(63,125,85,0.15); background: var(--white);
}
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; background: var(--off-white); padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-light); cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--accent-green); }
.file-drop {
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 26px;
  text-align: center;
  color: var(--gray);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-drop:hover { border-color: var(--accent-green); background: var(--accent-green-light); }
.file-drop i { font-size: 1.8rem; color: var(--accent-green); margin-bottom: 8px; display: block; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }
.form-success i { color: #10b981; font-size: 1.3rem; }

/* ---------- Form validation states ---------- */
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error,
.modal-box input.input-error,
.modal-box select.input-error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12) !important;
}
.field-error-msg {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 4px 0 8px;
  line-height: 1.3;
  display: block;
  text-align: left;
}
@keyframes shakeField {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.shake { animation: shakeField 0.4s; }

/* Popup quote form: once submitted, hide the whole form and show only the
   thank-you message (a sibling element just above the form) so it's the
   clear focus before the modal closes. */
.modal-box form.submitted { display: none !important; }
.modal-box .form-success { text-align: left; }

/* ---------- Contact info cards ---------- */
.contact-info-card {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.contact-line { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-line i { color: #7fd99a; font-size: 1.4rem; margin-top: 3px; }
.contact-line a, .contact-line span { color: rgba(255,255,255,0.9); font-weight: 600; }
.contact-line strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7fd99a; margin-bottom: 4px; font-weight: 700; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.filter-btn {
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--gray-light);
  background: var(--white); font-weight: 700; cursor: pointer; color: var(--forest);
  font-size: 0.9rem; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.masonry-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gray-light);
}
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item .tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(18,53,36,0.85); color: var(--white);
  padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }
@media (max-width: 980px) { .masonry { grid-template-columns: repeat(2, 1fr); } .masonry-item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .masonry { grid-template-columns: 1fr; grid-auto-rows: 260px; } .masonry-item.wide, .masonry-item.tall { grid-column: span 1; grid-row: span 1; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(11,24,17,0.94);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); color: var(--white);
  border: none; border-radius: 50%; width: 50px; height: 50px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--accent-green); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 30px; color: var(--white); text-align: center; width: 100%; font-weight: 600; }

/* ---------- Map / Service Areas ---------- */
.area-chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .area-chip-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .area-chip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .area-chip-grid { grid-template-columns: 1fr; } }
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--forest);
  text-decoration: none;
  transition: all .2s;
}
.area-chip i { color: var(--accent-green); }
.area-chip:hover { border-color: var(--accent-green); background: var(--accent-green-light); transform: translateY(-3px); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: none; width: 100%; height: 460px; }

/* ---------- Sticky mobile call bar ---------- */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--forest);
  display: none;
  padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}
.sticky-cta-bar .sticky-inner { display: flex; gap: 10px; }
.sticky-cta-bar .btn { flex: 1; padding: 14px 10px; font-size: 0.92rem; }
@media (max-width: 780px) { .sticky-cta-bar { display: block; } body { padding-bottom: 78px; } }

/* Floating call button (desktop) */
.floating-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 950;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: var(--shadow-lg);
  animation: pulse 2.4s infinite;
}
@media (max-width: 780px) { .floating-call { bottom: 92px; right: 18px; width: 54px; height: 54px; font-size: 1.3rem; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(75,90,104,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(75,90,104,0); }
  100% { box-shadow: 0 0 0 0 rgba(75,90,104,0); }
}

/* ---------- Popup modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,24,17,0.72);
  z-index: 2500; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; padding: 44px 36px; position: relative;
  box-shadow: var(--shadow-lg); text-align: center;
  animation: popIn .3s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: var(--off-white);
  border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  color: var(--gray); font-size: 1.1rem;
}
.modal-box .service-icon { margin: 0 auto 18px; }
.modal-box input, .modal-box select { width: 100%; margin-bottom: 12px; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-light); font-size: 1rem; background: var(--off-white); }

/* ---------- Financing banner ---------- */
.financing-banner {
  background: linear-gradient(120deg, var(--accent-green), var(--forest-dark));
  color: var(--white); border-radius: var(--radius-md);
  padding: 26px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin: 0 0 30px;
}
.financing-banner h3, .financing-banner p { color: var(--white); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,0.8); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: rgba(255,255,255,0.75); transition: color .2s; }
.footer-grid ul li a:hover { color: #7fd99a; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .2s;
}
.footer-social a:hover { background: var(--accent-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-credit { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-credit:hover { color: var(--accent-green-bright); text-decoration: underline; }
.footer-credit-line { text-align: center; margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- Utility / animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-green-light); color: var(--accent-green-dark); font-weight: 700;
  padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; margin-bottom: 16px;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider-line { height: 1px; background: var(--gray-light); margin: 40px 0; }

/* Emergency page specific */
.emergency-banner-top {
  background: var(--orange); color: var(--white); text-align: center;
  padding: 12px 16px; font-weight: 700; font-size: 0.92rem;
}
.emergency-banner-top a { text-decoration: underline; }
.emergency-hero { background: linear-gradient(160deg, #1a0f0a 0%, var(--forest-dark) 60%); }
.emergency-pulse-btn {
  background: var(--orange); color: var(--white); font-size: 1.4rem; font-weight: 800;
  padding: 26px 50px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 0 0 0 rgba(75,90,104,0.6);
  animation: pulse 2s infinite;
  display: inline-flex; align-items: center; gap: 14px;
}
.feature-strip { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.feature-strip-item {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.08);
  padding: 16px 24px; border-radius: 100px; color: var(--white); font-weight: 700; border: 1px solid rgba(255,255,255,0.15);
}
.feature-strip-item i { color: #7fd99a; font-size: 1.3rem; }

/* Print/perf helpers */
.lazy-fade { opacity: 0; transition: opacity .5s; }
.lazy-fade.loaded { opacity: 1; }
