.contact-footer {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    padding: 10px;
    border-radius: 99px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.contact-footer .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    box-shadow: 0 4px 15px rgb(0 0 0 / 15%);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-footer .social-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(0 0 0 / 22%);
}

.contact-footer .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 549px) {
    .contact-footer {
        right: 12px;
        bottom: 20px;
    }

    .contact-footer .social-icon {
        width: 42px;
        height: 42px;
    }
}