/* ==========================================================================
   Tree Service Website Template — Global Styles
   ========================================================================== */

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #ffffff; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1A2129;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   GLOBAL HEADER (logo + nav + phone CTA)
   ========================================================================== */
.site-header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 100;
}

/* PROMO BAR — soft pastel yellow strip at very top */
.site-header-promo {
  background: #E8F1EA;
  color: #1A2129;
  text-align: center;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.site-header-promo strong { font-weight: 800; }
.site-header-promo a {
  color: #1A2129;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}
.site-header-promo a:hover { color: #038435; }
@media (max-width: 480px) {
  .site-header-promo { font-size: 13px; padding: 8px 10px; line-height: 1.3; }
}

/* Top review bar */
.site-header-topbar {
  background: #038435;
  color: #ffffff;
  text-align: center;
  padding: 8px 15px;
  font-family: 'Poppins', sans-serif;
}
.site-header-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  flex-wrap: wrap;
}
.site-header-topbar .rating { font-size: 18px; font-weight: 700; }
.site-header-topbar .stars { display: inline-flex; gap: 2px; }
.site-header-topbar .stars span { color: #FBBF24; font-size: 20px; }
.site-header-topbar em { font-size: 18px; font-weight: 400; font-style: italic; }

/* Main nav row */
.site-nav {
  border-bottom: 1px solid #f0f0f0;
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav-logo img {
  width: auto;
  height: 95px;
  max-width: 280px;
  object-fit: contain;
  display: block;
}
.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav-menu a, .site-nav-dropdown-toggle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2129;
  padding: 12px 18px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.site-nav-menu a:hover, .site-nav-dropdown-toggle:hover { color: #038435; }
.site-nav-menu a.is-active { color: #038435; }

/* Services dropdown */
.site-nav-dropdown { position: relative; }
.site-nav-dropdown-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.site-nav-dropdown:hover .site-nav-dropdown-toggle::after { transform: rotate(180deg); }
.site-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #1A2129;
  border-radius: 0;
}
.site-nav-dropdown-menu a:hover { background: #f5f5f5; color: #038435; }

/* Right-side phone CTA */
.site-nav-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  flex-shrink: 0;
}
.site-nav-cta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A2129;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.1;
}
.site-nav-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #F16625;
  border: 2px solid #F16625;
  border-radius: 6px;
  padding: 13px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(241,102,37,0.28);
  transition: all 0.2s ease;
  text-decoration: none !important;
}
.site-nav-cta-phone:hover {
  background: #038435;
  border-color: #038435;
  box-shadow: 0 6px 16px rgba(3,132,53,0.35);
}
.site-nav-cta-phone i { color: #FFEB3B; font-size: 24px; text-shadow: 0 1px 2px rgba(0,0,0,0.25); }

/* Hamburger button (mobile only) */
.site-nav-hamburger {
  display: none;
  font-size: 28px;
  color: #1A2129;
  padding: 6px 10px;
}

/* Mobile menu panel */
.site-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.site-mobile-menu.is-open { right: 0; }
.site-mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}
.site-mobile-menu-overlay.is-visible { display: block; }
.site-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
}
.site-mobile-menu-header img { width: 110px; }
.site-mobile-menu-close {
  font-size: 28px;
  color: #1A2129;
  padding: 4px 10px;
}
.site-mobile-menu-list { padding: 8px 0; }
.site-mobile-menu-list a, .site-mobile-menu-toggle {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2129;
  padding: 14px 22px;
  border-bottom: 1px solid #f0f0f0;
}
.site-mobile-menu-list a.is-active { color: #038435; }
.site-mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.site-mobile-menu-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.2s ease;
}
.site-mobile-menu-toggle.is-open::after { transform: rotate(180deg); }
.site-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  transition: max-height 0.3s ease;
}
.site-mobile-submenu.is-open { max-height: 600px; }
.site-mobile-submenu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 22px 12px 38px;
  color: #374151;
}
.site-mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F16625;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
  margin: 18px 22px;
  border-radius: 4px;
  text-decoration: none !important;
}
.site-mobile-menu-cta i { color: #FFEB3B; font-size: 20px; }

/* Mobile breakpoint */
@media (max-width: 900px) {
  .site-nav-menu, .site-nav-cta { display: none; }
  .site-nav-hamburger { display: inline-block; }
  .site-mobile-menu { display: block; }
}
@media (max-width: 480px) {
  .site-header-topbar { padding: 8px 12px; }
  .site-header-topbar .rating { font-size: 14px; }
  .site-header-topbar .stars span { font-size: 16px; }
  .site-header-topbar em { font-size: 14px; }
  .site-nav-inner { padding: 10px 14px; }
  .site-nav-logo img { height: 48px; max-width: 140px; }
}

/* ==========================================================================
   GLOBAL FOOTER (4-column)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  color: #1A2129;
  padding: 60px 0 0;
  border-top: 1px solid #e5e7eb;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.site-footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1A2129;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #038435;
  border-radius: 2px;
}
.site-footer-col img {
  width: 130px;
  margin-bottom: 16px;
  max-height: 60px;
  object-fit: contain;
  filter: none;
}
.site-footer-col p, .site-footer-col li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 10px;
}
.site-footer-col li { margin-bottom: 12px; }
.site-footer-col a {
  color: #1A2129;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-footer-col a:hover { color: #038435; }
.site-footer-col .nap-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #1A2129;
}
.site-footer-col .nap-line i {
  color: #038435;
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
}
.site-footer-mobile-cta { display: none; }

/* Bottom strip — dark green band with license + social */
.site-footer-bottom {
  background: #038435;
  color: #E5EFD8;
  padding: 22px 0;
  margin-top: 20px;
}
.site-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.site-footer-bottom a {
  color: #ffffff;
  font-weight: 600;
}
.site-footer-bottom a:hover { color: #FBBF24; }
.site-footer-social {
  display: flex;
  gap: 10px;
}
.site-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s ease;
}
.site-footer-social a:hover { background: #038435; color: #ffffff; }

@media (max-width: 768px) {
  .site-footer { padding: 44px 0 0; }
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .site-footer { padding: 28px 0 0; background: #ffffff; }
  .site-footer-inner { padding: 0 20px; }

  .site-footer-grid {
    display: block;
    margin-bottom: 0;
  }

  /* COL 1 — logo + tagline + prominent CTA card (HERO of mobile footer) */
  .site-footer-col:first-child {
    text-align: center;
    margin-bottom: 22px;
  }
  .site-footer-col:first-child img {
    width: 100px;
    margin: 0 auto 8px;
  }
  .site-footer-col:first-child p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    max-width: 320px;
    margin: 0 auto 16px;
  }

  /* CTA buttons row — appended via JS-free CSS using a wrapper... actually inject via flex below */
  .site-footer-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }
  .site-footer-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: filter 0.2s ease;
  }
  .site-footer-mobile-cta a.primary {
    background: #F16625;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(241,102,37,0.28);
  }
  .site-footer-mobile-cta a.secondary {
    background: #ffffff;
    color: #038435 !important;
    border: 2px solid #038435;
  }
  .site-footer-mobile-cta i { font-size: 16px; }

  /* Cols 2 + 3 — Quick Links + Services side-by-side, compact */
  .site-footer-col.col-links,
  .site-footer-col.col-services {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    margin-bottom: 22px;
  }
  .site-footer-col.col-links { padding-right: 8px; }

  /* Col 4 — Contact, full width with subtle bg */
  .site-footer-col:last-child {
    background: #f9fafb;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 8px;
  }

  .site-footer-col h4 {
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    letter-spacing: 1px;
  }
  .site-footer-col h4::after { width: 24px; height: 2px; }
  .site-footer-col p, .site-footer-col li { font-size: 14px; line-height: 1.5; }
  .site-footer-col li { margin-bottom: 8px; }
  .site-footer-col .nap-line { font-size: 14px; margin-bottom: 8px; gap: 10px; }
  .site-footer-col .nap-line i { font-size: 14px; width: 16px; }

  /* Bottom strip */
  .site-footer-bottom { padding: 14px 0; margin-top: 14px; }
  .site-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 11px;
    line-height: 1.5;
  }
  .site-footer-social { order: -1; gap: 8px; }
  .site-footer-social a { width: 32px; height: 32px; font-size: 13px; }
}

/* ==========================================================================
   STICKY MOBILE CALL BAR
   ========================================================================== */
.sticky-call-bar { display: none; }
@media (max-width: 480px) {
  .sticky-call-bar {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #F16625;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 13px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    text-decoration: none !important;
    line-height: 1;
  }
  .sticky-call-bar i { font-size: 18px; }
  body { padding-top: 50px; }
}

/* ==========================================================================
   SHARED UTILITY CLASSES
   ========================================================================== */
.btn-primary {
  display: inline-block;
  background: #F16625;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(241,102,37,0.28);
  text-decoration: none !important;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 6px 16px rgba(241,102,37,0.4); }

.btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #038435 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 40px;
  border: 2px solid #038435;
  border-radius: 4px;
  text-decoration: none !important;
}
.btn-secondary:hover { background: #038435; color: #ffffff !important; }

/* ==========================================================================
   PAGE HERO (inner pages — smaller than home hero, no form)
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  padding: 80px 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
}
.page-hero-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #E8743A;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.page-hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.page-hero-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 480px) {
  .page-hero { padding: 50px 0; }
  .page-hero-h1 { font-size: 36px; }
  .page-hero-sub { font-size: 17px; }
  .page-hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .page-hero-buttons .btn-primary, .page-hero-buttons .btn-secondary { width: 100%; }
}

/* ==========================================================================
   SHARED CONTENT BLOCKS (service detail, about, contact)
   ========================================================================== */
.content-block { padding: 70px 0; background: #ffffff; }
.content-block.alt { background: #E8F1EA; }  /* warm cream instead of cold gray */
.content-block.green {
  background: #038435;
  color: #ffffff;
  position: relative;
}
.content-block.green::before,
.content-block.green::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background: #038435;
}
.content-block.green::before { top: -1px; border-radius: 0 0 50% 50% / 0 0 100% 100%; transform: scaleY(-1); display:none; }
.content-block.green h2, .content-block.green h3 { color: #ffffff; }
.content-block.green p { color: rgba(255,255,255,0.92); }
.content-block.green ul.checklist li { color: #ffffff; }
.content-block.green ul.checklist li i { color: #FBBF24; }
.content-block-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-2col h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1A2129;
  line-height: 1.15;
  margin-bottom: 20px;
}
.content-2col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A2129;
  margin: 18px 0 10px;
}
.content-2col p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 14px;
}
.content-2col img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.content-2col ul.checklist { padding: 0; margin: 18px 0; }
.content-2col ul.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #1A2129;
  line-height: 1.5;
  margin-bottom: 12px;
}
.content-2col ul.checklist li i { color: #038435; font-size: 18px; margin-top: 4px; flex-shrink: 0; }
@media (max-width: 768px) {
  .content-block { padding: 40px 0; }
  .content-2col { grid-template-columns: 1fr; gap: 30px; }
  .content-2col h2 { font-size: 30px; }
}
@media (max-width: 480px) {
  .content-block-inner { padding: 0 16px; }
}

/* ==========================================================================
   THEME ACCENT — Font Awesome tree silhouette as corner watermark
   Uses the professionally-designed FA "tree" icon, not hand-drawn SVG
   ========================================================================== */
.has-theme-tree {
  position: relative;
  overflow: hidden;
}
.has-theme-tree::before,
.has-theme-tree::after {
  content: '\f1bb';  /* Font Awesome: fa-tree */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #038435;
  opacity: 0.05;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.has-theme-tree::before {
  font-size: 360px;
  top: -40px;
  left: -60px;
  transform: rotate(-12deg);
}
.has-theme-tree::after {
  font-size: 280px;
  bottom: -60px;
  right: -40px;
  transform: rotate(8deg);
}
.has-theme-tree > * { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .has-theme-tree::before { font-size: 220px; top: -20px; left: -40px; }
  .has-theme-tree::after { font-size: 180px; bottom: -30px; right: -20px; }
}

.section-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1A2129;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  color: #4a5568;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .section-headline { font-size: 32px; letter-spacing: -0.3px; }
  .section-sub { font-size: 16px; margin-bottom: 26px; }
}

/* FEATURE 1: STICKY ESTIMATE BAR */
.sticky-estimate-bar { position: fixed; top: -80px; left: 0; right: 0; z-index: 999; background: #0EA550; padding: 14px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: top 0.35s cubic-bezier(0.4,0,0.2,1); }
.sticky-estimate-bar.is-visible { top: 0; }
.sticky-estimate-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.sticky-estimate-bar-text { font-family: 'Poppins',sans-serif; font-size: 18px; font-weight: 700; color: #ffffff; white-space: nowrap; }
.sticky-estimate-bar-text i { color: #FBBF24; margin-right: 8px; }
.sticky-estimate-bar-actions { display: flex; align-items: center; gap: 14px; }
.sticky-estimate-bar-phone { font-family: 'Poppins',sans-serif; font-size: 18px; font-weight: 700; color: #ffffff !important; text-decoration: none !important; display: inline-flex; align-items: center; gap: 8px; }
.sticky-estimate-bar-phone i { color: #FBBF24; }
.sticky-estimate-bar-cta { display: inline-block; background: #F16625; color: #ffffff !important; font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 700; padding: 10px 24px; border-radius: 4px; text-decoration: none !important; box-shadow: 0 4px 12px rgba(241,102,37,0.3); }
.sticky-estimate-bar-sms { display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter',sans-serif; font-size: 14px; font-weight: 600; color: #ffffff !important; text-decoration: underline !important; opacity: 0.9; }
@media (max-width: 768px) { .sticky-estimate-bar { display: none !important; } }

/* FEATURE 2: EXIT-INTENT POPUP */
.exit-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100000; align-items: center; justify-content: center; backdrop-filter: blur(3px); }
.exit-popup-overlay.is-visible { display: flex; }
.exit-popup { background: #ffffff; border-radius: 16px; max-width: 520px; width: 92%; padding: 48px 40px; text-align: center; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.3); animation: exitPopIn 0.3s ease; }
@keyframes exitPopIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.exit-popup-close { position: absolute; top: 14px; right: 18px; font-size: 28px; color: #6b7280; cursor: pointer; line-height: 1; }
.exit-popup-badge { display: inline-block; background: #E8F1EA; color: #038435; font-family: 'Poppins',sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; padding: 8px 16px; border-radius: 999px; margin-bottom: 18px; }
.exit-popup h2 { font-family: 'Poppins',sans-serif; font-size: 34px; font-weight: 700; color: #1A2129; line-height: 1.15; margin-bottom: 12px; }
.exit-popup p { font-family: 'Inter',sans-serif; font-size: 17px; color: #4a5568; line-height: 1.5; margin-bottom: 24px; }
.exit-popup form { display: flex; flex-direction: column; gap: 12px; }
.exit-popup input { height: 50px; padding: 0 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-family: 'Inter',sans-serif; font-size: 16px; color: #1A2129; outline: none; }
.exit-popup input:focus { border-color: #038435; }
.exit-popup button { height: 56px; background: #F16625; color: #ffffff; font-family: 'Poppins',sans-serif; font-size: 20px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; box-shadow: 0 4px 14px rgba(241,102,37,0.3); }
.exit-popup-fineprint { font-family: 'Inter',sans-serif; font-size: 13px; color: #9ca3af; margin-top: 10px; }
@media (max-width: 768px) { .exit-popup-overlay { display: none !important; } }

/* FEATURE 4: CHAT WIDGET */
.chat-widget-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 9998; width: 64px; height: 64px; border-radius: 50%; background: #F16625; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 28px; cursor: pointer; box-shadow: 0 6px 20px rgba(241,102,37,0.4); transition: transform 0.2s ease; }
.chat-widget-bubble:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(241,102,37,0.5); }
.chat-widget-bubble .badge { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: #038435; border-radius: 50%; border: 2px solid #ffffff; }
.chat-widget-panel { position: fixed; bottom: 100px; right: 24px; z-index: 9998; width: 360px; background: #ffffff; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); overflow: hidden; display: none; animation: chatSlideUp 0.25s ease; }
@keyframes chatSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.chat-widget-panel.is-open { display: block; }
.chat-widget-header { background: #038435; color: #ffffff; padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-widget-header-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.chat-widget-header-info { flex: 1; }
.chat-widget-header-name { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 700; }
.chat-widget-header-status { font-family: 'Inter',sans-serif; font-size: 13px; opacity: 0.9; display: flex; align-items: center; gap: 6px; }
.chat-widget-header-status .dot { width: 8px; height: 8px; background: #5DD879; border-radius: 50%; }
.chat-widget-header-close { font-size: 22px; cursor: pointer; opacity: 0.8; }
.chat-widget-body { padding: 20px; }
.chat-widget-msg { background: #f5f5f5; padding: 14px 16px; border-radius: 12px 12px 12px 4px; font-family: 'Inter',sans-serif; font-size: 15px; color: #1A2129; line-height: 1.45; margin-bottom: 16px; }
.chat-widget-body form { display: flex; flex-direction: column; gap: 10px; }
.chat-widget-body input, .chat-widget-body textarea { width: 100%; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 8px; font-family: 'Inter',sans-serif; font-size: 15px; color: #1A2129; outline: none; }
.chat-widget-body textarea { height: 70px; resize: none; }
.chat-widget-body button { height: 46px; background: #F16625; color: #ffffff; font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; }
@media (max-width: 480px) { .chat-widget-bubble { bottom: 70px; right: 16px; width: 56px; height: 56px; font-size: 24px; } .chat-widget-panel { right: 10px; left: 10px; width: auto; bottom: 130px; } }

/* FEATURE 6: STATS BAR */
.stats-bar { width: 100%; background: #038435; padding: 40px 0; }
.stats-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 30px; text-align: center; }
.stat-item { color: #ffffff; }
.stat-number { font-family: 'Poppins',sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.stat-label { font-family: 'Inter',sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; } .stat-number { font-size: 40px; } .stat-label { font-size: 13px; } }

/* FEATURE 10: SCROLL ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   GLOBAL CAROUSEL CONTROLS (arrows + dots) — used on all pages
   ========================================================================== */
.carousel-arrows { display: inline-flex; gap: 16px; }
.carousel-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: #038435; color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  box-shadow: 0 4px 12px rgba(3,132,53,0.3);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover { background: #026429; box-shadow: 0 6px 16px rgba(3,132,53,0.4); }
.carousel-arrow:active { transform: scale(0.92); }
.carousel-arrow:disabled { background: #d1d5db; color: #9ca3af; box-shadow: none; cursor: default; }
.carousel-dots { display: inline-flex; gap: 10px; align-items: center; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d0d0d0; cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dot.is-active { background: #038435; transform: scale(1.3); }
