/* assets/css/footer.css */

.footer {
    background: #0B2545;
    color: #ffffff;
    padding: 90px 0 40px;
    font-size: 15px;
}

.footer .footer_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer h4 {
    margin-bottom: 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #F4F7FA;
}

.footer p {
    line-height: 1.7;
    color: #c9d3df;
}

.footer a {
    color: #c9d3df;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

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

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
}

.partner-strip {
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    text-align: center;
    margin-bottom: 50px;
    font-size: 14px;
    color: #aab6c4;
}

/* Newsletter */
#footerNewsletterForm {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}

#footerNewsletterForm input[type="email"] {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

#footerNewsletterForm button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    background: #1d3557;
    color: #fff;
    cursor: pointer;
}

#footerNewsletterMessage {
    width: 100%;
    margin-top: 5px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-half {
        grid-column: span 1;
    }
    .footer-grid > div:not(.footer-half) {
        grid-column: span 2;
    }
}