/* =========================
   Footer
   ========================= */

.site-footer {
    color: #ffffff;
}

/* Main footer with background image */
.footer-main {
    position: relative;
    background-image: url("../images/footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
}

/* Dark overlay */
.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 45, 25, 0.82);
}

/* Keep footer content above overlay */
.footer-main .footer-container {
    position: relative;
    z-index: 1;
}

/* Footer columns */
.footer-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* About */
.footer-about h3 {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 18px;
    color: wheat;
}

.footer-about p {
    max-width: 450px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Headings */
.footer-column h4 {
    font-size: 18px;
    margin: 0 0 20px;
     color: wheat;
}

/* Lists */
.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* Contact */
.footer-contact p {
    margin: 0 0 12px;
    line-height: 1.7;
}

.footer-location {
    margin-top: 20px !important;
}

/* =========================
   Bottom Footer
   ========================= */

.footer-bottom {
    background: #06351f;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        padding: 50px 0;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about h3 {
        font-size: 23px;
    }

    .footer-bottom-inner {
        padding: 18px 0;
    }
}