/* Floating Contact Icons */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transform-origin: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    box-shadow: var(--shadow);
}

.contact-icon:hover {
    transform: scale(1.1);
    color: white;
}

.telegram {
    background: #0088cc;
}

.whatsapp {
    background: #25d366;
}
@media (max-width: 576px) {
    .floating-contacts {
        flex-direction: column;
        gap: 5px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
