/* ============================================
   FOOTER STYLES — Full Width + White Text
   ============================================ */

.site-footer {
    background-color: var(--color-primary-dark);
    color: white !important;
    padding: 3rem 1.5rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fluid-text);
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 3em !important;
}
.footer-title{
    color: white !important;
}

/* Container - Force Full Width */
.footer-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Main Footer Content */
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

/* Brand / Logo Area */
.footer-brand .footer-title {
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
}

.footer-brand .footer-tagline {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer Headings */
.footer-main h4 {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white !important;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
    color: white !important;
}

/* Links - White by default, Light Green on hover */
.footer-links a,
.footer-contact a,
.footer-bottom a {
    text-decoration: none;
    transition: color 0.2s ease;
    color: white !important;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--color-secondary) !important; /* Light green on hover/click */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2.5rem;
    }

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