/* =========================
   GLOBAL RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.7;
}

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

a {
    color: inherit;
}

/* =========================
   CONTAINERS / GLOBAL LAYOUT
========================= */

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

section {
    padding: 80px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.cta-content h2 {
    color: #1f3527;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-heading p,
.about-content p,
.cta-content p,
.service-card p,
.faq-item p,
.footer-description {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-content,
.content-block {
    max-width: 850px;
    margin: 0 auto;
}

.about-content p,
.content-block p {
    margin-bottom: 18px;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background-color: #1f3527;
    border-bottom: 4px solid #d97b2d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* =========================
   LOGO
========================= */

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    width: 180px;
    height: auto;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #d97b2d;
}

/* =========================
   HEADER CTA
========================= */

.header-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.call-button {
    display: inline-block;
    background-color: #d97b2d;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: 0.3s ease;
}

.call-button:hover {
    background-color: #b8641f;
}

/* =========================
   BUTTONS
========================= */

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn {
    background-color: #d97b2d;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #b8641f;
}

.secondary-btn {
    background-color: #ffffff;
    color: #1f3527;
}

.secondary-btn:hover {
    background-color: #f3eadc;
}

/* =========================
   HERO
========================= */

.hero-section {
    min-height: 620px;
    background:
        linear-gradient(rgba(31, 53, 39, 0.82), rgba(31, 53, 39, 0.82)),
        url("/images/placeholders/tree-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.3rem;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto 34px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================
   SERVICES
========================= */

.services-section {
    background-color: #f7f3eb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px 26px;
    border-radius: 10px;
    border-top: 5px solid #d97b2d;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #1f3527;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 18px;
}

.service-card a {
    color: #d97b2d;
    font-weight: 700;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

/* =========================
   ABOUT / CONTENT
========================= */

.about-section {
    background-color: #ffffff;
}

.about-content ul,
.content-block ul {
    margin-top: 24px;
    padding-left: 22px;
}

.about-content li,
.content-block li {
    margin-bottom: 10px;
    color: #1f3527;
    font-weight: 700;
}

/* =========================
   FEATURE / TRUST BLOCKS
========================= */

.trust-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-card,
.feature-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border-left: 5px solid #d97b2d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.trust-card h3,
.feature-card h3 {
    color: #1f3527;
    margin-bottom: 8px;
}

/* =========================
   SERVICE AREAS
========================= */

.areas-section {
    background-color: #1f3527;
}

.areas-section .section-heading h2,
.areas-section .section-heading p {
    color: #ffffff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.area-card {
    background-color: #ffffff;
    color: #1f3527;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

/* =========================
   FAQ
========================= */

.faq-section {
    background-color: #f7f3eb;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 20px;
    background-color: #ffffff;
    padding: 26px 28px;
    border-radius: 8px;
    border-left: 5px solid #d97b2d;
}

.faq-item h3 {
    color: #1f3527;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* =========================
   CTA
========================= */

.cta-section {
    background-color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.cta-content p {
    margin-bottom: 28px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #1b2d21;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 70px 0;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #d7d7d7;
    margin-bottom: 20px;
}

.footer-phone,
.footer-email {
    display: inline-block;
    color: #d97b2d;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-phone {
    font-size: 1.2rem;
}

.footer-phone:hover,
.footer-email:hover {
    color: #ffffff;
}

.footer-license {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    color: #d7d7d7;
}

.footer-links a {
    color: #d7d7d7;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #d97b2d;
}

.footer-call-btn,
.footer-estimate-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 16px;
    transition: 0.3s ease;
}

.footer-call-btn {
    background-color: #d97b2d;
    color: #ffffff;
}

.footer-call-btn:hover {
    background-color: #b8641f;
}

.footer-estimate-btn {
    background-color: #ffffff;
    color: #1b2d21;
}

.footer-estimate-btn:hover {
    background-color: #e8e0d3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #16241b;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.92rem;
}

.footer-bottom p {
    color: #d7d7d7;
}

.footer-bottom a {
    color: #d97b2d;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 992px) {

    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        width: 100%;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 18px;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

}

@media screen and (max-width: 768px) {

    body {
        padding-top: 128px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        transition: all 0.3s ease;
    }

    .header-container {
        padding: 10px 18px;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .site-logo {
        width: 132px;
        transition: all 0.3s ease;
    }

    .main-nav {
        max-height: 120px;
        opacity: 1;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .nav-list a {
        font-size: 0.9rem;
    }

    .call-button {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.92rem;
        transition: all 0.3s ease;
    }

    .site-header.header-shrink .header-container {
        padding: 6px 16px;
        gap: 6px;
    }

    .site-header.header-shrink .site-logo {
        width: 78px;
    }

    .site-header.header-shrink .main-nav {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
    }

    .site-header.header-shrink .call-button {
        padding: 9px 14px;
        font-size: 0.86rem;
    }

    section {
        padding: 56px 0;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 72px 24px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .hero-buttons {
        gap: 12px;
    }

    .services-grid,
    .areas-grid,
    .trust-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .section-heading p,
    .about-content p,
    .content-block p,
    .cta-content p,
    .service-card p,
    .faq-item p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .service-card,
    .faq-item,
    .trust-card,
    .feature-card {
        padding: 24px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        width: 150px;
    }

}

@media screen and (max-width: 480px) {

    body {
        padding-top: 122px;
    }

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .site-logo {
        width: 118px;
    }

    .hero-content {
        padding: 62px 22px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .footer-call-btn,
    .footer-estimate-btn {
        font-size: 0.95rem;
    }

}
