/* /Views/Shared/_Layout.cshtml.rz.scp.css */
/* ===== 2. FOOTER DESIGN ==== */
.site-footer[b-v50a0i01gg] {
    background-color: #000;
    color: #fff;
    padding: 60px 80px 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    width: 100%; 
    margin-left: 0;
}

.footer-container[b-v50a0i01gg] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* Left side intro text */
.footer-intro[b-v50a0i01gg] {
    flex: 1.5;
    min-width: 260px;
}

    .footer-intro h4[b-v50a0i01gg] {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.4;
        color: #fff;
    }

/* Right side columns */
.footer-links[b-v50a0i01gg] {
    display: flex;
    flex: 2;
    justify-content: flex-end;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column h6[b-v50a0i01gg] {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-column ul[b-v50a0i01gg] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li[b-v50a0i01gg] {
    margin-bottom: 6px;
}

.footer-column a[b-v50a0i01gg] {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.2s ease;
}

    .footer-column a:hover[b-v50a0i01gg] {
        color: #7bc46b;
    }

/* Bottom section */
.footer-bottom[b-v50a0i01gg] {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

    .footer-bottom p[b-v50a0i01gg] {
        margin: 0;
    }

.footer-bottom-links[b-v50a0i01gg] {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a[b-v50a0i01gg] {
        text-decoration: none;
        color: #fff;
        font-weight: 700;
    }

        .footer-bottom-links a:hover[b-v50a0i01gg] {
            color: #7bc46b;
        }


/* ===== RESPONSIVE DESIGN - Media Queries ==== */

/* Navigation bar */
@media (max-width: 992px) {
    .top-nav-inner[b-v50a0i01gg] {
        flex-wrap: wrap;
    }

    .nav-links[b-v50a0i01gg] {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

        .nav-links .nav-item[b-v50a0i01gg] {
            margin: 4px 0;
        }

    .nav-login[b-v50a0i01gg] {
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }
}


/* Footer */
@media (max-width: 768px) {
    .footer-container[b-v50a0i01gg] {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links[b-v50a0i01gg] {
        justify-content: flex-start;
        gap: 40px;
    }

    .footer-bottom[b-v50a0i01gg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ACTIVE NAV HIGHLIGHT */
.nav-link.active[b-v50a0i01gg] {
    color: #ffd800 !important;
    font-weight: 700;
    position: relative;
}

    /* Optional underline marker for extra clarity */
    .nav-link.active[b-v50a0i01gg]::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
        background-color: #315a35;
        border-radius: 2px;
    }
