/* ============================================ */
/* FOOTER - FULLY RESPONSIVE */
/* ============================================ */
.footer {
    background: #00263E;
    padding: 50px 0 40px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ============================================ */
/* TOP SECTION */
/* ============================================ */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    max-width: 190px;
}

/* ============================================ */
/* SOCIAL ICONS */
/* ============================================ */
.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--brand-yellow);
}

/* ============================================ */
/* FOOTER TEXT */
/* ============================================ */
.footer-text {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.7;
}

.footer-text a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 4px;
    transition: color 0.2s;
}

.footer-text a:hover {
    color: var(--brand-yellow);
    text-decoration: underline;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-text {
        text-align: center;
    }
}
