/* FOOTER WRAPPER */
.site-footer {
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    padding: 20px 0 60px;
    color: #e5e5e5;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* FOOTER MENUS (CONTACT + INFO) */
.footer-inner {
    width: calc(100% - 40px);
    margin-left: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    margin-top: -10px;
}

.footer-title {
    color: #5a9a00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

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

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

/* FOOTER BOTTOM AREA (COPYRIGHT) */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    padding-bottom: 0;
    position: relative;
}

.footer-bottom p {
    margin-top: 0;
}

/* FOOTER LOGO */
.footer-logo {
    position: absolute;
    right: 25px;
    top: 70px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    opacity: 0.9;
}

/* ============================================================
   MOBILE FIXES — KEEP COLUMNS SIDE-BY-SIDE + LEFT-ALIGNED
============================================================ */

@media (max-width: 700px) {

    .footer-inner {
        width: 100%;
        margin-left: 0;
        flex-direction: row;        /* ? keep side-by-side */
        justify-content: center;    /* ? center the pair */
        align-items: flex-start;
        text-align: left;           /* ? keep text left-aligned */
        gap: 40px;
        margin-top: 0;
    }

    /* Move logo below everything */
    .footer-logo {
        position: static;
        margin: 30px auto 0;
        text-align: center;
        transform: none;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-bottom p {
        margin-top: 20px;
    }
}
