/* ==========================================================
   AWI FOOTER – SOCIAL MEDIA
   Facebook & Instagram
========================================================== */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 18px 0 6px;
}

.footer-social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-social-icon {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.9;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
    outline: none;
}

.footer-social-link:hover .footer-social-icon,
.footer-social-link:focus-visible .footer-social-icon {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.65));
}

/* Mobile */
@media (max-width: 575.98px) {
    .footer-social {
        gap: 14px;
        margin-top: 22px;
        padding-top: 14px;
    }

    .footer-social-link {
        width: 48px;
        height: 48px;
    }

    .footer-social-icon {
        width: 27px;
        height: 27px;
    }
}
