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

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

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

/* =========================
   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;
}

.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 {
    color: #d97b2d;
}

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

/* =========================
   CALL BUTTON
========================= */

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

.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;
}

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

@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) {

    .site-logo {
        width: 150px;
    }

    .nav-list {
        flex-direction: column;
        gap: 14px;
    }

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

    .call-button {
        width: 100%;
        text-align: center;
    }

}

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

    .header-container {
        padding: 12px 16px;
    }

    .site-logo {
        width: 130px;
    }

    .call-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

.hero-section {
    background: #1f3527;
    color: white;
    padding: 100px 24px;
}

.primary-btn {
    background: #d97b2d;
    color: white;
    padding: 14px 22px;
    display: inline-block;
    text-decoration: none;
}

/* =========================
   GENERAL LAYOUT
========================= */

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

section {
    padding: 80px 0;
}

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

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

.section-heading p,
.about-content p,
.cta-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================
   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: #fff;
}

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

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

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

/* =========================
   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: #fff;
}

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

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

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

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

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

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

.service-card {
    background-color: #fff;
    padding: 28px 24px;
    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;
    margin-bottom: 12px;
}

.service-card p {
    color: #444;
    line-height: 1.65;
    margin-bottom: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

.area-card {
    background-color: #fff;
    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: #fff;
    padding: 26px 28px;
    border-radius: 8px;
    border-left: 5px solid #d97b2d;
}

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

.faq-item p {
    color: #444;
    line-height: 1.65;
}

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

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

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

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

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

@media screen and (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 56px 0;
    }

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

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

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

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

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

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

@media screen and (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

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

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

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

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

.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;
}

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

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

.footer-description {
    color: #d7d7d7;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.98rem;
}

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

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

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

/* =========================
   LINKS
========================= */

.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;
}

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

.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
========================= */

.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;
}

.footer-bottom p {
    color: #d7d7d7;
    font-size: 0.92rem;
}

.footer-bottom a {
    color: #d97b2d;
    text-decoration: none;
    font-size: 0.92rem;
}

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

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

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

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

}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;

        padding: 56px 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;

        text-align: center;
    }

    .footer-logo {
        width: 150px;
    }

}

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

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

}
@media (max-width: 768px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        transition: transform 0.3s ease;
    }

    .site-header.header-hidden {
        transform: translateY(-100%);
    }

    body {
        padding-top: 90px;
    }

}
@media (max-width: 768px) {

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

    .nav-hidden .main-nav {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
        pointer-events: none;
    }

}
