.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-list__item {
    align-items: flex-start;
    color: rgba(255, 247, 245, 0.82);
    display: flex;
    font-size: 0.95rem;
    gap: 0.85rem;
    line-height: 1.55;
}

.contact-list__item > .bi {
    color: rgba(255, 84, 105, 0.78);
    flex-shrink: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    margin-top: 0.05rem;
    width: 1.15rem;
}

.contact-list__body {
    min-width: 0;
}

.contact-list__body a {
    color: rgba(255, 247, 245, 0.82);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-list__body a:hover {
    color: var(--r2, #ff5469);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.58);
    display: inline-flex;
    font-size: 0.92rem;
    gap: 0.65rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 247, 245, 0.92);
    transform: translateX(2px);
}

.footer-link .bi {
    color: rgba(255, 84, 105, 0.78);
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    width: 1.1rem;
}

.footer-link:hover .bi {
    color: var(--r2, #ff5469);
}

@media (max-width: 991.98px) {
    #contact .contact-list__item {
        gap: 0.75rem;
    }

    .footer-links {
        align-items: flex-start !important;
    }

    .footer-link:hover {
        transform: none;
    }
}
