/* ===== Footer ===== */
.footer {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    padding: 20px 30px 40px;
}

.footer__card {
    width: 1380px;
    max-width: 100%;
    background: #032000;
    border-radius: 30px;
    padding: 48px 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* --- Columns row --- */
.footer__top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer__heading {
    margin: 0 0 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #CF8E00;
}

.footer__link,
.footer__item {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer__link {
    transition: color 0.2s ease;
}
.footer__link:hover {
    color: #CF8E00;
}

/* --- Contact column (email + socials) --- */
.footer__col--contact {
    gap: 40px;
}

.footer__email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer__socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
}

.footer__social {
    display: inline-flex;
    line-height: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer__social:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.footer__social svg { display: block; }

/* --- Copyright --- */
.footer__copy {
    margin: 0;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .footer__card { padding: 40px; }
    .footer__top {
        flex-wrap: wrap;
        gap: 40px 48px;
    }
    .footer__col--contact { gap: 28px; }
}

@media (max-width: 520px) {
    .footer { padding: 12px 16px 28px; }
    .footer__card { padding: 32px 24px; border-radius: 24px; }
    .footer__top { gap: 32px; }
    .footer__copy { font-size: 14px; }
}
