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

.footer {
    background-color: #002956;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-section-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link {
    color: #ffffff;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd42d !important;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #ffd42d;
}

.footer-email {
    font-weight: 700;
}

.footer-contact-text {
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(0, 1fr));
        column-gap: clamp(2.5rem, 5vw, 5rem);
        row-gap: 3rem;
        align-items: start;
    }
}

.footer-divider {
    border-top: 1px solid #007bff;
    padding-top: 2rem;
}

/* ============================================
   LEGAL NOTICE BANNER
   ============================================ */

.legal-notice {
    background-color: #001a33;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 2rem 0;
}

.legal-notice__inner {
    text-align: center;
    max-width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
}

.legal-notice__title {
    font-size: 0.875rem !important;
    font-weight: 700;
    line-height: 1.35 !important;
    color: #ffd42d;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-notice__text {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    color: rgba(191, 219, 254, 0.82);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.legal-notice__text strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.legal-notice__text + .legal-notice__text {
    margin-top: 0.875rem;
}

@media (max-width: 768px) {
    .legal-notice {
        padding: 1.75rem 0;
    }

    .legal-notice__title {
        font-size: 0.8125rem !important;
        margin-bottom: 0.875rem;
    }

    .legal-notice__text {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 390px) and (max-height: 844px) {
    .legal-notice {
        padding: 1.5rem 24px;
    }

    .legal-notice__inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
    }

    .legal-notice__title {
        font-size: 0.8125rem !important;
        margin-bottom: 0.75rem;
    }

    .legal-notice__text {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
}

