/* ═══════════════════════════════════════════════════
   SPARTAN TREE & LANDSCAPE — UNIFIED STYLESHEET
   Merged: header.css + main.css + services.css
   ═══════════════════════════════════════════════════ */

/* ── Phone Icon (replaces 142 inline SVGs) ── */
.icon-phone {
  display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center/contain;
  vertical-align: middle;
}
.icon-phone-lg { width: 24px; height: 24px; margin-right: 4px; }
.icon-phone-sm { width: 16px; height: 16px; }
.btn-white .icon-phone,
.btn-primary .icon-phone,
.btn-outline-white .icon-phone,
.btn-ghost .icon-phone,
.btn-emergency .icon-phone { filter: brightness(0) invert(1); }
.call-btn .icon-phone { filter: brightness(0) invert(1); }

/* ── Header & Nav ── */
/* ═══════════════════════════════════════════════════
   Spartan Tree — Shared Header Styles
   Edit this file; all pages inherit it automatically.
   ═══════════════════════════════════════════════════ */

:root {
  --charcoal: #1a1a1a;
  --charcoal-mid: #242424;
  --charcoal-light: #2e2e2e;
  --orange: #e8620a;
  --orange-light: #ff7520;
  --orange-dark: #c4530a;
  --white: #ffffff;
  --off-white: #f5f3f0;
  --gray: #9a9a9a;
  --light-gray: #e8e6e2;
  --text: #1a1a1a;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Base reset & globals (loaded by every page) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { /* scroll handled by site.js for controlled speed */ }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { text-transform: uppercase; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Shared buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 14px 28px; border-radius: 4px; font-weight: 700; font-size: 1rem; transition: background 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--orange-light); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 13px 27px; border-radius: 4px; font-weight: 700; font-size: 1rem; border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.2s; }
.btn-ghost:hover { border-color: #fff; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--orange); padding: 14px 28px; border-radius: 4px; font-weight: 800; font-size: 1rem; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.92; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 13px 27px; border-radius: 4px; font-weight: 700; font-size: 1rem; border: 2px solid rgba(255,255,255,0.6); transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: #fff; }

.sticky-top {
      position: sticky;
      top: 0;
      z-index: 101;
}

/* ── Emergency Bar ── */
.emergency-bar {
      background: #cc0000;
      color: #fff;
      padding: 4px 0;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.2px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
}
.bar-break { display: none; }
.emergency-bar a { color: #fff; font-weight: 700; text-decoration: none; border-bottom: none; }
.emergency-bar a:hover { opacity: 0.9; }

/* ── Header / Nav ── */
header {
      background: #ffffff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      border-bottom: 3px solid var(--orange);
}
.nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 80px;
      padding: 0 24px 0 0;
}
.logo {
      display: flex; align-items: center;
      white-space: nowrap; text-decoration: none;
      margin-left: 50px;
}
.logo-wordmark { height: 76px; width: auto; object-fit: contain; }
.logo-mobile { display: none; }
nav { display: flex; align-items: center; gap: 8px; }
nav a {
      color: #1a1a1a; font-size: 1.43rem; font-weight: 600;
      padding: 8px 16px; border-radius: 4px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
}
nav a:hover { color: var(--orange); background: rgba(0,0,0,0.05); }
.nav-cta {
      /* matches regular nav a styles */
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 3px; background: #1a1a1a; border-radius: 2px; transition: 0.3s; }

.nav-call-cta {
      display: flex; align-items: center; gap: 12px;
      background: var(--orange); color: #fff;
      padding: 0 22px; height: 80px; margin-right: -24px;
      text-decoration: none;
      transition: background 0.2s;
      flex-shrink: 0;
}
.nav-call-cta:hover { background: var(--orange-light); }
.nav-call-icon { width: 56px; height: 56px; display: block; }
.nav-call-text { display: flex; flex-direction: column; gap: 2px; }
.nav-call-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); white-space: nowrap; }
.nav-call-number { font-size: 1.15rem; font-weight: 900; letter-spacing: 0.5px; white-space: nowrap; }

@media (max-width: 980px) { .nav-call-cta { display: none; } }

/* bar-icon sizing (used in emergency bar) */
.bar-icon-left, .bar-icon-right {
  width: 32px; height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.bar-mobile { display: none; color: #fff; font-weight: 700; text-decoration: none; }

/* ── Mobile home button ── */
.nav-home-btn { display: none; }

/* ── Mobile header (640px) ── */
@media (max-width: 640px) {
      .nav-home-btn {
        display: flex; align-items: center; justify-content: center;
        position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
        width: 36px; height: 36px; border-radius: 50%;
        overflow: hidden; transition: opacity 0.2s;
      }
      .nav-home-btn:hover { opacity: 1; }
      .nav-home-logo { width: 100%; height: 100%; object-fit: contain; }
      .bar-break { display: block; }
      .bar-dash { display: none; }
      .bar-desktop { display: none; }
      .bar-mobile { display: inline; }
      .emergency-bar { padding: 4px 0; }
      .nav-inner { position: relative; justify-content: flex-end; height: 56px; padding-right: 12px; }
      header { background: var(--orange); border-bottom: none; }
      .logo-mobile { filter: brightness(0) invert(1); }
      .hamburger span { background: #fff; }
      .logo { position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0 !important; }
      .logo-desktop { display: none; }
      .logo-mobile { display: block; height: 70px; }
      .hamburger { position: static; margin-right: 0; display: flex; }
      header nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 56px; left: 0; right: 0;
        background: #ffffff;
        padding: 12px 24px 20px;
        border-top: 3px solid var(--orange);
        z-index: 99;
        gap: 4px;
      }
      header nav.mobile-open { display: flex; }
      header nav a { color: #1a1a1a; font-size: 1rem; padding: 10px 12px; border-bottom: 1px solid #e0e0e0; }
      header nav a:last-child { border-bottom: none; }
}

/* ── Mobile floating CALL NOW button ── */
.mobile-call-fab {
      display: none;
}
@media (max-width: 640px) {
      .mobile-call-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        background: var(--orange);
        color: #fff;
        font-weight: 900;
        font-size: 1.05rem;
        letter-spacing: 1px;
        text-decoration: none;
        padding: 14px 32px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(232,98,10,0.5);
        white-space: nowrap;
        animation: fab-pulse 3s ease-in-out infinite;
      }
      @keyframes fab-pulse {
        0%    { box-shadow: 0 4px 20px rgba(232,98,10,0.5); transform: translateX(-50%) scale(1); }
        33%   { box-shadow: 0 6px 30px rgba(232,98,10,0.8); transform: translateX(-50%) scale(1.04); }
        66%   { box-shadow: 0 4px 20px rgba(232,98,10,0.5); transform: translateX(-50%) scale(1); }
        100%  { box-shadow: 0 4px 20px rgba(232,98,10,0.5); transform: translateX(-50%) scale(1); }
      }
}

/* ── Footer ── */
footer { background: var(--charcoal); color: #fff; width: 100%; }
#site-footer { width: 100%; }
.footer-main {
      padding: 60px 0 40px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand a { display: block; margin-bottom: 14px; }
.footer-wordmark { height: 76px; width: auto; display: block; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.75); }
.footer-col h4 { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255,255,255,0.75); }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-icon { color: var(--orange); margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 980px) {
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
      .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 24px; text-align: center; }
      .footer-brand { align-items: center; }
      .footer-brand p { max-width: 100%; }
      .footer-col ul { align-items: center; }
      .footer-contact-item { justify-content: center; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Homepage ── */
/* ═══════════════════════════════════════════════════
   Spartan Tree — Index / Main Page Styles
   Loaded only by index.html
   ═══════════════════════════════════════════════════ */

.trust-icon { width: 20px; height: 20px; object-fit: contain; vertical-align: middle; }
.service-icon-img { width: 100%; height: 100%; object-fit: contain; }
/* ── Hero ── */
.hero {
  background: url("../images/team-group.webp") center/cover no-repeat;
  color: #fff;
  padding: 179px 0 158px;
  position: relative;
  overflow: hidden;
}
.hero-image-mobile { display: none; }
.hero-grid {
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; z-index: 1;
  padding-left: 50px;
}
.hero-content {
  background: rgba(0,0,0,0.60);
  border-radius: 10px;
  padding: 40px 44px;
  max-width: 640px;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,98,10,0.25); border: 2px solid var(--orange);
  color: #ffcc99; font-size: clamp(0.7rem, 2.5vw, 0.875rem); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
  white-space: nowrap;
}

.hero h1 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 900; line-height: 1.15;
      margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero h1 span { color: var(--orange); }
.hero h1 .hero-heading-top { color: #ffffff; }
.hero-desc {
      font-size: 1.15rem; color: #ffffff; font-weight: 700;
      max-width: 520px; margin-bottom: 32px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badge {
      display: flex; align-items: center; gap: 8px;
      color: #ffffff; font-size: 0.9rem; font-weight: 700;
}
.trust-badge .icon { color: var(--orange); font-size: 1.1rem; }

/* Quote Card */
.quote-card {
      background: var(--orange);
      border-radius: 12px;
      padding: 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.quote-card h2 { color: var(--charcoal); 
      font-size: 1.2rem; color: #fff; font-weight: 800;
      margin-bottom: 6px;
}
.quote-card > p { font-size: 1rem; color: #555; margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
      width: 100%; padding: 10px 14px;
      border: 1.5px solid rgba(255,255,255,0.3); border-radius: 6px;
      font-size: 1rem; font-family: var(--font);
      transition: border-color 0.2s;
      color: var(--text); background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline: none; border-color: #fff;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card .btn-primary {
      width: 100%; justify-content: center; padding: 14px; font-size: 1rem;
      background: var(--charcoal); color: #fff;
}
.quote-card .btn-primary:hover { background: #333; }
.quote-disclaimer { font-size: 0.875rem; color: rgba(255,255,255,0.9); text-align: center; margin-top: 10px; }

/* ── Stats Bar ── */
@keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
}
.stats-bar {
      background: var(--charcoal-mid);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 3px solid var(--orange);
      padding: 28px 0;
}
.stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; text-align: center;
}
.stat-item { padding: 0 24px; opacity: 0; animation: slideUp 0.6s ease forwards; }
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.25s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.55s; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.95rem; color: #fff; margin-top: 4px; font-weight: 600; letter-spacing: 0.3px; }
.stat-label-mobile { display: none; }

/* ── Section Styles ── */
section { padding: 80px 0; }
.section-label {
      display: inline-block;
      color: var(--orange); font-size: 0.875rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 10px;
}
.mobile-br { display: none; }
.section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800; line-height: 1.2;
      color: var(--charcoal); margin-bottom: 14px;
      letter-spacing: -0.3px;
}
.section-desc { font-size: 1.1rem; color: #444; max-width: 560px; line-height: 1.8; }

/* ── Services ── */
.services-section { background: #fff; }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
}
.service-card {
      border-radius: 10px;
      border: 1.5px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
      height: 280px;
}
.service-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
}
.service-card:hover {
      border-color: var(--orange);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      transform: translateY(-3px);
}
.service-card-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: var(--orange);
      padding: 14px 20px;
      text-align: center;
      z-index: 1;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: #fff; }

/* ── Why Choose Us ── */
.why-section { background: var(--charcoal); color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-content .section-title { color: #fff; }
.why-content .section-desc { color: rgba(255,255,255,0.92); }
.why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
      width: 28px; height: 28px; min-width: 28px;
      background: var(--orange); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.875rem; color: #fff; font-weight: 900; margin-top: 2px;
}
.why-item-text strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.why-item-text span { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.6; }
.why-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cameron-bio {
      grid-column: 1 / -1;
      background: rgba(255,255,255,0.06);
      border-radius: 10px;
      overflow: hidden;
}
.cameron-photo {
      width: 100%;
      height: auto;
      display: block;
}
.cameron-name {
      font-size: 1.1rem; font-weight: 800; color: #fff;
      margin: 16px 20px 8px; text-align: center;
}
.cameron-text {
      font-size: 0.92rem; color: rgba(255,255,255,0.85);
      line-height: 1.7; margin: 0 20px 20px;
}
.why-box {
      background: var(--orange);
      border-radius: 10px; padding: 24px;
      border: none;
      text-align: center;
}
.why-box .big-num { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.why-box .num-label { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-top: 6px; line-height: 1.4; font-weight: 600; }
.why-box.accent { background: var(--orange); }
.why-box.accent .big-num { color: #fff; }
.why-box.accent .num-label { color: #fff; }

/* ── Testimonials ── */
.testimonials-section { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
      background: #fff; border-radius: 10px; padding: 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      border: 1.5px solid var(--light-gray);
      transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.1); }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
      font-size: 1rem; color: #333; line-height: 1.7;
      margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--orange); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.9rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-location { font-size: 0.875rem; color: #555; }

/* ── Service Areas ── */
.areas-section { background: #fff; }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: stretch; }
.areas-list {
      display: grid; grid-template-columns: repeat(2, 1fr);
      grid-auto-flow: column; grid-template-rows: repeat(9, auto);
      gap: 10px; margin-top: 28px;
}
.area-tag {
      display: flex; align-items: center;
      padding: 0; border-radius: 6px;
      background: var(--off-white); font-size: 0.88rem; font-weight: 600;
      color: var(--charcoal); border: 1.5px solid var(--light-gray);
      transition: border-color 0.2s, background 0.2s;
}
.area-tag a { display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: inherit; text-decoration: none; width: 100%; height: 100%; border-radius: 6px; }
.area-tag:hover { border-color: var(--orange); background: #fff; }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.areas-cta-box {
      background: var(--orange);
      border-radius: 12px; padding: 40px;
      color: #fff;
}
.areas-cta-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.areas-cta-box p { color: #fff; font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
.phone-big {
      font-size: 1.5rem; font-weight: 900; color: var(--orange);
      margin-bottom: 18px; display: block;
}

/* ── FAQ ── */
.faq-section { background: #fff; }
.faq-inner { display: grid; grid-template-columns: 380px 1fr; gap: 70px; align-items: start; }
.faq-list { margin-top: 0; }
.faq-item {
      background: #fff;
      border: 1.5px solid var(--light-gray);
      border-radius: 8px; margin-bottom: 12px; overflow: hidden;
}
.faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 22px; cursor: pointer;
      font-weight: 700; font-size: 1.05rem; color: var(--charcoal);
      user-select: none;
      transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-arrow {
      color: var(--orange); font-size: 1rem; font-weight: 700;
      transition: transform 0.3s;
      flex-shrink: 0; margin-left: 12px;
}
.faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s;
      padding: 0 22px;
      font-size: 1rem; color: #333; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 250px; padding: 0 22px 20px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.areas-cta-form .form-group label { color: rgba(255,255,255,0.95); font-weight: 700; }
.areas-cta-form input,
.areas-cta-form select,
.areas-cta-form textarea { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
.areas-cta-form input::placeholder,
.areas-cta-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.areas-cta-form select option { color: #1a1a1a; background: #fff; }

/* ── CTA Section ── */
.cta-section {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
      color: #fff; text-align: center; padding: 80px 0;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 14px; letter-spacing: 0.5px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
      background: #fff; color: var(--orange);
      padding: 14px 30px; border-radius: 4px;
      font-weight: 800; font-size: 1rem;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-outline-white {
      background: #fff; color: var(--orange);
      padding: 13px 29px; border-radius: 4px;
      font-weight: 700; font-size: 1rem;
      border: 2px solid #fff;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, color 0.2s;
}
.btn-outline-white svg { fill: var(--orange); }
.btn-outline-white:hover { background: rgba(255,255,255,0.9); }

/* ── Responsive ── */
@media (max-width: 980px) {
        .quote-card { max-width: 520px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-visual { display: grid; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .areas-inner { grid-template-columns: 1fr; gap: 40px; }
      .areas-text { text-align: center; }
      .areas-text .section-label { display: block; }
      .area-tag { justify-content: center; }
      .faq-inner { grid-template-columns: 1fr; gap: 32px; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
      .mobile-br { display: block; }
                  .bar-desktop { display: none; }
      .bar-mobile { display: inline; }
        header { background: var(--orange); border-bottom: none; }
        .hamburger span { background: #fff; }
                          section { padding: 56px 0; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-brand p { max-width: 100%; }
        .hero { background: none; padding: 0; }
        .hero-grid { padding-left: 0; padding-right: 0; }
        .hero-content { max-width: 100%; border-radius: 0; padding: 32px 20px; text-align: center; background: var(--charcoal-mid); }
        .hero-image-mobile { display: block; width: 100%; height: 260px; object-fit: cover; object-position: center top; }
        .hero-content .hero-badge { margin-left: auto; margin-right: auto; }
      .hero-ctas { flex-direction: column; align-items: center; }
      .hero-ctas .btn-primary { justify-content: center; text-align: center; width: 100%; }
      .hero-trust { justify-content: center; }
      .service-card { text-align: center; }
      .why-content .section-label,
      .why-content .section-title,
      .why-content .section-desc { text-align: center; }
      .why-content .section-label { display: block; }
      .cameron-name,
      .cameron-text { text-align: center; }
      .faq-inner > div:first-child { text-align: center; }
      .faq-break { display: block; }
      .cta-btns { flex-direction: column; align-items: center; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-label-desktop { display: none; }
      .stat-label-mobile { display: inline; }
}
/* ── Areas Tray (mobile collapsible, desktop always visible) ── */
#areas-tray-btn {
      display: none; /* JS shows this on mobile only */
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px 18px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: var(--font);
      cursor: pointer;
      margin-top: 28px;
      transition: background 0.2s;
}
#areas-tray-btn:hover { background: var(--orange-light); }
#areas-tray-btn.open { background: var(--orange-dark); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
#areas-tray-btn .tray-chevron { transition: transform 0.3s; }
#areas-tray-btn.open .tray-chevron { transform: rotate(180deg); }

#areas-list-wrap.collapsed {
      display: none;
}
#areas-list-wrap.collapsed.open {
      display: block;
      border: 2px solid var(--orange);
      border-top: none;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      background: #fff;
      padding: 10px;
}
#areas-list-wrap.collapsed .areas-list {
      grid-template-columns: 1fr !important;
      grid-auto-flow: row !important;
      grid-template-rows: unset !important;
      margin-top: 0 !important;
}

/* ── Services & Interior Pages ── */
/* =============================================================
   services.css — shared styles for all Spartan Tree service pages
   Loaded by every page in /services/
   Resets, buttons, and CSS variables live in header.css (loaded first).
   Emergency theme overrides via .svc-emergency on <body>.
   ============================================================= */

/* ── Hero ── */
.breadcrumb { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { margin: 0 6px; }
.page-hero { color: #fff; padding: 72px 0 60px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.05; margin-bottom: 18px; }
.page-hero h1 span { color: var(--orange-light); display: block; }
.page-hero .intro { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 680px; line-height: 1.75; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.emergency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.btn-emergency { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #8b0000; padding: 14px 28px; border-radius: 4px; font-weight: 800; font-size: 1rem; transition: opacity 0.2s; }
.btn-emergency:hover { opacity: 0.92; }
.btn-emergency .icon-phone { filter: invert(12%) sepia(96%) saturate(5765%) hue-rotate(1deg) brightness(88%) contrast(112%); }

/* ── Trust strip ── */
.trust-strip { background: var(--charcoal-mid); padding: 14px 0; }
.trust-inner { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { color: #fff; font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }
.trust-item::before { content: "✓"; font-weight: 900; color: var(--orange); }

/* ── Page body / layout ── */
.page-body { padding: 64px 0 72px; }
.page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.body-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }

/* ── Prose ── */
.prose h2 { font-size: 1.3rem; font-weight: 800; margin: 40px 0 12px; color: var(--charcoal); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 1.03rem; color: #333; line-height: 1.75; }
.prose ul { list-style: none; margin: 14px 0 20px; padding: 0; }
.prose ul li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid var(--light-gray); font-size: 1rem; color: #333; }
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.prose a { color: var(--orange); }
.prose strong { color: var(--charcoal); }

/* ── Also in town / service cross-links ── */
.also-in-town { margin-top: 48px; padding-top: 36px; border-top: 2px solid var(--light-gray); }
.also-in-town h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; color: var(--charcoal); }
.service-link-card { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--off-white); border: 1.5px solid var(--light-gray); border-radius: 6px; margin-bottom: 10px; font-weight: 700; font-size: 0.95rem; color: var(--charcoal); transition: all 0.2s; }
.service-link-card:hover { border-color: var(--orange); color: var(--orange); background: #fff; }
.slc-arrow { color: var(--orange); font-weight: 900; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 110px; }
.cta-card { background: var(--charcoal); color: #fff; border-radius: 10px; padding: 28px; margin-bottom: 18px; }
.cta-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.cta-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 18px; line-height: 1.55; }
.cta-card .call-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--orange); color: #fff; padding: 13px 16px; border-radius: 6px; font-weight: 800; font-size: 1rem; margin-bottom: 10px; transition: background 0.2s; }
.cta-card .call-btn:hover { background: var(--orange-light); }
.cta-card .call-num { font-size: 1.35rem; font-weight: 900; color: var(--orange); margin-bottom: 4px; display: block; }
.cta-card .quote-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--orange); color: #fff; padding: 13px 16px; border-radius: 6px; font-weight: 800; font-size: 0.92rem; border: none; transition: background 0.2s; }
.cta-card .quote-btn:hover { background: var(--orange-light); }
.trust-list { list-style: none; margin-top: 18px; }
.trust-list li { font-size: 0.85rem; color: rgba(255,255,255,0.78); padding: 5px 0 5px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.12); }
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.towns-card { background: var(--off-white); border-radius: 10px; padding: 22px; margin-bottom: 18px; border: 1.5px solid var(--light-gray); }
.towns-card h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; color: #999; margin-bottom: 14px; }
.towns-card a { display: inline-block; margin: 4px 5px 4px 0; padding: 5px 12px; background: #fff; border: 1.5px solid var(--light-gray); border-radius: 20px; font-size: 0.83rem; font-weight: 600; color: var(--charcoal); transition: all 0.2s; }
.towns-card a:hover { border-color: var(--orange); color: var(--orange); }
.towns-card a.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.services-card { background: var(--off-white); border-radius: 10px; padding: 22px; border: 1.5px solid var(--light-gray); }
.services-card h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; color: #999; margin-bottom: 14px; }
.services-card ul { list-style: none; }
.services-card ul li a { display: block; padding: 9px 0; border-bottom: 1px solid var(--light-gray); font-size: 0.92rem; font-weight: 600; color: var(--charcoal); transition: color 0.2s; }
.services-card ul li:last-child a { border-bottom: none; }
.services-card ul li a:hover, .services-card ul li a.current { color: var(--orange); }

.area-card { background: var(--off-white); border-radius: 10px; padding: 22px; border: 1.5px solid var(--light-gray); }
.area-card h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; color: #999; margin-bottom: 10px; }
.area-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: #fff; padding: 64px 0; border-top: 1px solid var(--light-gray); }
.faq-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 10px; }
.faq-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 36px; color: var(--charcoal); }
.faq-item { background: #fff; border-radius: 8px; margin-bottom: 10px; border: 1.5px solid var(--light-gray); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; font-size: 1rem; font-weight: 700; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s; font-family: var(--font); }
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--orange); }
.faq-icon { font-size: 1.3rem; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px 18px; font-size: 0.97rem; color: #444; line-height: 1.7; }

/* ── Nearby strip ── */
.nearby-strip { background: #fff; padding: 36px 0; border-top: 1px solid var(--light-gray); }
.nearby-strip p { font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; color: #999; margin-bottom: 12px; }
.nearby-links { display: flex; gap: 10px; flex-wrap: wrap; }
.nearby-links a { padding: 7px 16px; background: var(--off-white); border: 1.5px solid var(--light-gray); border-radius: 4px; font-weight: 600; font-size: 0.9rem; color: var(--charcoal); transition: all 0.2s; }
.nearby-links a:hover { border-color: var(--orange); color: var(--orange); }

/* ── Bottom CTA section ── */
.cta-section { background: var(--charcoal); padding: 72px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 32px; font-size: 1.03rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Town grid (hub pages) ── */
.town-grid-section { margin-top: 48px; padding-top: 36px; border-top: 2px solid var(--light-gray); }
.town-grid-section h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.town-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.town-card { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--off-white); border: 1.5px solid var(--light-gray); border-radius: 8px; transition: all 0.2s; color: var(--charcoal); }
.town-card:hover { border-color: var(--orange); background: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.town-card-inner { display: flex; flex-direction: column; gap: 3px; }
.town-name { font-size: 1rem; font-weight: 800; }
.town-note { font-size: 0.78rem; color: #888; font-weight: 400; text-transform: none; }
.town-arrow { color: var(--orange); font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Emergency theme overrides (.svc-emergency on <body>) ── */
.svc-emergency .page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.7rem); }
.svc-emergency .page-hero h1 span { color: #ffaa80; margin-top: 10px; }
.svc-emergency .breadcrumb a:hover { color: #ffaa80; }
.svc-emergency .trust-strip { background: #6b0000; }
.svc-emergency .trust-item::before { color: #ffaa80; }
.svc-emergency .cta-card { background: #8b0000; }
.svc-emergency .cta-card .call-btn { background: #fff; color: #8b0000; }
.svc-emergency .cta-card .call-btn:hover { opacity: 0.92; background: #fff; }
.svc-emergency .cta-card .call-num { color: #fff; }
.svc-emergency .trust-list li::before { color: #ffaa80; }
.svc-emergency .cta-section { background: #8b0000; }
.svc-emergency .prose a { color: #8b0000; }
.svc-emergency .prose ul li::before { color: #8b0000; }
.svc-emergency .faq-label { color: #8b0000; }
.svc-emergency .faq-q:hover, .svc-emergency .faq-q[aria-expanded="true"] { color: #8b0000; }
.svc-emergency .faq-icon { color: #8b0000; }
.svc-emergency .nearby-links a:hover { border-color: #8b0000; color: #8b0000; }
.svc-emergency .towns-card a.active { background: #8b0000; border-color: #8b0000; }
.svc-emergency .towns-card a:hover { border-color: #8b0000; color: #8b0000; }
.svc-emergency .town-card:hover { border-color: #8b0000; }
.svc-emergency .town-arrow { color: #8b0000; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .page-grid, .body-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 600px) {
  .page-hero { padding: 48px 0 40px; text-align: center; }
  .prose h2, .prose p, .also-in-town h2 { text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost, .hero-btns .btn-white, .hero-btns .btn-outline-white, .hero-btns .btn-emergency { justify-content: center; text-align: center; }
  .cta-btns .btn-white, .cta-btns .btn-outline-white { justify-content: center; text-align: center; }
  .trust-inner { gap: 16px; justify-content: flex-start; padding: 0 24px; }
  .page-body { padding: 40px 0 48px; }
  .faq-section { padding: 40px 0; }
  .cta-section { padding: 48px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .town-grid { grid-template-columns: 1fr; }
}

/* ── Hero Rating Badge ── */
a.hero-rating {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.hero-rating:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }

/* ── Footer Bottom Links ── */
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }

/* ── Outline Button (dark) ── */
.btn-outline-dark {
  display: inline-block; padding: 10px 22px; border: 1.5px solid #333; border-radius: 6px;
  color: #333; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── Emergency Service Contract (emergency bar) ── */
.emergency-bar { position: relative; }
.nav-esc {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: #cc0000; color: #fff;
  padding: 0 20px;
  text-decoration: none; text-align: center;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.5px;
  line-height: 1.4; white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.nav-esc:hover { background: #ff2222; }
@media (max-width: 980px) { .nav-esc { display: none; } }

/* ── Emergency Service Contract (mobile nav) ── */
.nav-esc-mobile { display: none; }
@media (max-width: 980px) {
  .nav-esc-mobile { display: block; color: #cc0000 !important; font-weight: 700; }
}
/* ── Section Logo ── */
.section-logo {
  position: absolute;
  top: 20px; left: 24px;
  width: 120px; height: 120px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 640px) { .section-logo { display: none; } }

/* ── More dropdown (desktop) ── */
.nav-more { position: relative; display: inline-block; }
@media(min-width:981px){
  .nav-more:hover .nav-more-dropdown { display: flex; }
  .nav-more:hover .nav-more-arrow { transform: rotate(180deg); }
}
.nav-more-btn {
  background: none; border: none; cursor: pointer;
  font: inherit; color: #1a1a1a; padding: 8px 16px;
  font-weight: 600; font-size: 1.43rem; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 3px;
  border-radius: 4px; transition: color 0.2s, background 0.2s;
}
.nav-more-btn:hover { color: var(--orange); background: rgba(0,0,0,0.05); }
.nav-more-arrow { font-size: 0.7em; transition: transform 0.2s; }
.nav-more.open .nav-more-arrow { transform: rotate(180deg); }
.nav-more-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  min-width: 170px;
  z-index: 100;
  flex-direction: column;
  padding: 6px 0;
  padding-top: 14px;
}
.nav-more-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 14px;
  background: transparent;
}
.nav-more.open .nav-more-dropdown { display: flex; }
.nav-more-dropdown a {
  padding: 10px 18px !important;
  color: #1a1a1a !important;
  font-size: 0.95rem !important;
  border-bottom: 1px solid #f0f0f0 !important;
  text-decoration: none;
  white-space: nowrap;
}
.nav-more-dropdown a:last-child { border-bottom: none !important; }
.nav-more-dropdown a:hover { background: #f5f5f5; }

/* ── More dropdown (mobile) ── */
@media(max-width:980px){
  .nav-more { width: 100%; }
  .nav-more-btn {
    width: 100%; text-align: center;
    padding: 10px 12px; color: #1a1a1a;
    font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
  }
  .nav-more-dropdown {
    position: static; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0;
  }
  .nav-more-dropdown a {
    font-size: 0.95rem !important;
    padding: 8px 12px !important;
    border-bottom: 1px solid #eee !important;
    text-align: center;
  }
}
