.floating-contact-buttons {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-button {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    font-size: 29px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .35);
    transition: transform .2s ease, filter .2s ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.floating-contact-button.whatsapp {
    background-color: #075e54;
}

.floating-contact-button.telegram {
    background-color: #229ed9;
}

@media (max-width: 575.98px) {
    .floating-contact-buttons {
        right: 14px;
        bottom: 18px;
    }

    .floating-contact-button {
        width: 52px;
        height: 52px;
        font-size: 25px;
    }
}
