:root {
    --forest: #2C5F2E;
    --forest2: #1A3C1C;
    --amber: #E8841A;
    --amber2: #D4700E;
    --cream: #F5F0E8;
    --cream2: #EDE7D9;
    --dark: #131F14;
    --text: #222;
    --text-mid: #555;
    --white: #fff;
    --wa: #25D366;
    --shadow: 0 6px 28px rgba(0, 0, 0, .13);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .18);
    --r: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    padding-bottom: 70px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .04em;
}

/* ─ NAVBAR ─ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--amber);
}

.site-nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: .06em;
}

.nav-brand span {
    color: var(--amber);
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: 6px;
    transition: all .2s;
}

.nav-links a:hover {
    color: var(--amber);
    background: rgba(255, 255, 255, .07);
}

.nav-call {
    background: var(--amber) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
}

.nav-call:hover {
    background: var(--amber2) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: rgba(10, 18, 11, .88);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 1099;
    background: var(--white);
    border-bottom: 2px solid var(--amber);
    padding: 14px;
    flex-direction: column;
    gap: 4px;
}

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

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 8px;
    transition: all .2s;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--amber);
}

@media(max-width:900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* ─ BUTTONS ─ */
.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--amber);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.18rem;
    letter-spacing: .06em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 132, 26, .4);
    transition: all .22s;
    white-space: nowrap;
}

.btn-amber:hover {
    background: var(--amber2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--wa);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.18rem;
    letter-spacing: .06em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: all .22s;
    white-space: nowrap;
}

.btn-wa:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ─ SECTION TITLES ─ */
.sec-label {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .88rem;
    letter-spacing: .12em;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.sec-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 14px;
}

.sec-line {
    width: 50px;
    height: 4px;
    background: var(--amber);
    border-radius: 2px;
    margin: 10px 0 22px;
}

.sec-line.center {
    margin: 10px auto 22px;
}

/* ─ REVEAL ─ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 1 — HERO (IMAGE)
    ━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── HERO QUICK FORM ─── */
.hero-form-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.35);
}
.hfc-header {
  background: var(--amber);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .06em;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hfc-body { padding: 22px 24px 20px; }
.hfc-field { margin-bottom: 13px; }
.hfc-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--forest2);
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.hfc-field input,
.hfc-field select,
.hfc-field textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: none;
}
.hfc-field input:focus,
.hfc-field select:focus,
.hfc-field textarea:focus {
  border-color: var(--amber);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,132,26,.15);
}
.hfc-submit {
  width: 100%;
  background: var(--forest2);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .22s, transform .22s;
  margin-top: 4px;
}
.hfc-submit:hover { background: var(--amber); transform: translateY(-2px); }
.hfc-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-mid);
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hfc-note i { color: var(--forest); }



/* ─── CONTACT SECTION ─── */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream2);
}
.cdi-icon {
  width: 44px; height: 44px;
  background: var(--amber);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cdi-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.cdi-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.cdi-value:hover { color: var(--amber); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--r);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow);
}
.cf-field { margin-bottom: 4px; }
.cf-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--forest2);
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.cf-field label span { color: var(--amber); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,132,26,.14);
}
.cf-submit {
  width: 100%;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .22s, transform .22s;
  box-shadow: 0 4px 20px rgba(232,132,26,.35);
}
.cf-submit:hover { background: var(--amber2); transform: translateY(-2px); }
.cf-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; box-shadow: none; }
@media(max-width: 767px) {
  .contact-form-wrap { padding: 24px 18px; }
}


#home {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 64px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/tree.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 22, 14, .92) 0%, rgba(13, 22, 14, .65) 55%, rgba(13, 22, 14, .25) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 132, 26, .18);
    border: 1.5px solid rgba(232, 132, 26, .45);
    color: var(--amber);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 22px;
}

#home h1 {
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    color: #fff;
    line-height: .98;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .5);
    margin-bottom: 20px;
}

#home h1 em {
    color: var(--amber);
    font-style: normal;
}

.hero-sub {
    color: rgba(255, 255, 255, .85);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.65;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .88);
    font-size: .88rem;
    font-weight: 600;
}

.hb-item i {
    color: var(--amber);
}

.phone-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: var(--r);
    padding: 32px 26px;
    text-align: center;
}

.ph-label {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ph-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: .04em;
    text-decoration: none;
    margin-bottom: 16px;
}

.ph-num:hover {
    color: var(--amber);
}

.ph-avail {
    color: #6ee78b;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ph-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee78b;
    display: inline-block;
    animation: blink 1.4s infinite;
}

@media(max-width:568px) {
    .hero-inner {
        padding: 40px 8px;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .15
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 2 — TRUST (AMBER)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#trust {
    background: var(--amber);
    padding: 20px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    justify-content: center;
}

.trust-item i {
    font-size: 1.15rem;
    opacity: .85;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 3 — SERVICES (CREAM, ALTERNATING SPLIT)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#services {
    background: var(--cream);
    padding: 90px 0;
}

/* Each service = full-width row, image + text side by side */
.svc-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    min-height: 320px;
    transition: box-shadow .28s;
}

.svc-row:last-child {
    margin-bottom: 0;
}

.svc-row:hover {
    box-shadow: var(--shadow-lg);
}

/* Image panel — 42% on desktop */
.svc-photo {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}

.svc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.svc-row:hover .svc-photo img {
    transform: scale(1.06);
}

/* Amber number badge overlaid on image */
.svc-photo-num {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--amber);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: .1em;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
}

/* Text panel */
.svc-content {
    flex: 1;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.svc-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--forest2);
    margin-bottom: 14px;
    line-height: 1.1;
}

.svc-content .svc-desc {
    color: var(--text-mid);
    font-size: .97rem;
    line-height: 1.78;
    margin-bottom: 16px;
}

.svc-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.svc-bullets li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}

.svc-bullets li i {
    color: var(--amber);
    font-size: .85rem;
    flex-shrink: 0;
}

/* Reversed row: image on right */
.svc-row.reverse {
    flex-direction: row-reverse;
}

.svc-row.reverse .svc-content {
    padding: 40px 44px 40px 50px;
}

.btn-svc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: #fff;
    border-radius: 50px;
    padding: 11px 26px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: .06em;
    text-decoration: none;
    transition: background .2s, transform .2s;
    width: fit-content;
}

.btn-svc:hover {
    background: var(--amber2);
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile: stack vertically */
@media(max-width: 767px) {

    .svc-row,
    .svc-row.reverse {
        flex-direction: column;
        min-height: unset;
    }

    .svc-photo {
        flex: none;
        height: 300px;
    }

    .svc-content {
        padding: 26px 22px;
    }

    .svc-bullets {
        grid-template-columns: 1fr;
    }

    .svc-row.reverse .svc-content {
        padding: 26px 22px;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 4 — LOCATIONS (IMAGE)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#areas {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.areas-bg {
    position: absolute;
    inset: 0;
    background: url('images/tree.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.areas-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 42, 22, 0.664) 0%, rgba(15, 32, 17, 0.628) 100%);
}

#areas .container {
    position: relative;
    z-index: 2;
}

.loc-gl {
    font-size: 1rem;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.loc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    border-radius: 50px;
    padding: 5px 13px;
    font-size: .85rem;
    font-weight: 600;
    margin: 3px;
}

.loc-tag i {
    color: var(--amber);
    font-size: .75rem;
}

.areas-box {
    background: var(--amber);
    border-radius: var(--r);
    padding: 32px 28px;
    text-align: center;
}

.areas-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.areas-box p {
    color: rgba(255, 255, 255, .88);
    font-size: .95rem;
    margin-bottom: 22px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--amber);
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .06em;
    text-decoration: none;
    transition: background .2s;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.btn-white:hover {
    background: #f0ece4;
    color: var(--amber);
}

.btn-wa-dark {
    background: rgba(0, 0, 0, .25) !important;
    box-shadow: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 5 — GALLERY (WHITE)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#gallery {
    background: #fff;
    padding: 90px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 12px;
    border-radius: var(--r);
    overflow: hidden;
}

.gallery-cell {
    position: relative;
    overflow: hidden;
}

.gallery-cell:first-child {
    grid-row: 1/3;
}

.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-cell:hover img {
    transform: scale(1.08);
}

.gallery-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .72));
    color: #fff;
    padding: 18px 14px 12px;
    font-size: .82rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-cell:hover .gallery-cap {
    opacity: 1;
}

.gallery-cap i {
    color: var(--amber);
    margin-right: 5px;
}

@media(max-width:768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-cell {
        height: 180px;
    }

    .gallery-cell:first-child {
        grid-row: auto;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 6 — WHY US (IMAGE)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#why {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background: url('images/emergency-tree-removal.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.why-ov {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 11, .6);
}

#why .container {
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    padding: 26px 22px;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: background .25s, border-color .25s;
}

.why-card:hover {
    background: rgba(232, 132, 26, .18);
    border-color: rgba(232, 132, 26, .5);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--amber);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.why-card h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.why-card p {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 7 — URGENCY (DARK SOLID)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#urgency {
    background: var(--forest2);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#urgency::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 132, 26, .1) 0%, transparent 65%);
    pointer-events: none;
}

#urgency h2 {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 12px;
}

#urgency h2 span {
    color: var(--amber);
}

#urgency p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.08rem;
    max-width: 540px;
    margin: 0 auto 36px;
}

.urg-meta {
    margin-top: 24px;
    color: rgba(255, 255, 255, .45);
    font-size: .88rem;
}

.urg-meta i {
    color: var(--amber);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 8 — ABOUT (CREAM)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#about {
    background: var(--cream);
    padding: 90px 0;
}

.about-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.02rem;
}

.about-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-check li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream2);
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
}

.about-check li i {
    color: var(--amber);
    margin-top: 2px;
}

.stat-box {
    background: #fff;
    border-radius: var(--r);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--forest);
    line-height: 1;
}

.stat-lbl {
    color: var(--text-mid);
    font-size: .88rem;
    font-weight: 600;
    margin-top: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 9 — FINAL CTA (IMAGE)
    ━━━━━━━━━━━━━━━━━━━━━━━ */
#contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('images/stump-removal.jpg') center/cover no-repeat;
}

.cta-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 40, 22, .64) 0%, rgba(10, 18, 11, .67) 100%);
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 10px;
}

.big-phone {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    color: var(--amber);
    text-decoration: none;
    letter-spacing: .04em;
    line-height: 1;
}

.big-phone:hover {
    color: #fff;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .95rem;
    margin-top: 14px;
}

.email-link:hover {
    color: var(--amber);
}

/* ─ FOOTER ─ */
footer {
    background: var(--dark);
    padding: 26px 0;
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
}

footer a {
    color: var(--amber);
    text-decoration: none;
}

/* ─ STICKY BAR ─ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, .25);
}

.sb-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 11px 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    transition: opacity .18s;
}

.sb-btn:hover {
    opacity: .88;
    color: #fff;
}

.sb-btn i {
    font-size: 1.25rem;
}

.sb-call {
    background: var(--forest);
}

.sb-wa {
    background: var(--wa);
}

.sb-email {
    background: #1a73e8;
}

/* ─── TOAST NOTIFICATION ─── */
.toast-wrap {
  position: fixed;
  bottom: 90px; /* sits above sticky bar */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  width: 90%;
  max-width: 420px;
}
.toast-wrap.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast-inner {
  background: var(--forest2);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border-left: 5px solid var(--amber);
}
.toast-inner.toast-error {
  background: #5c1a1a;
  border-left-color: #e05c2a;
}
.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--amber);
}
.toast-inner.toast-error .toast-icon { color: #ff8a65; }
.toast-text strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.toast-text span { font-size: .85rem; color: rgba(255,255,255,.75); }
.toast-progress {
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 12px 12px;
  width: 100%;
  transform-origin: left;
  animation: none;
}
.toast-wrap.show .toast-progress {
  animation: toastProgress 4s linear forwards;
}
@keyframes toastProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}