/* Floating Messengers */
.floating_messengers {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.messenger_btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.messenger_btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.messenger_tg {
    background-color: #0088cc;
}

@media (max-width: 768px) {
    .floating_messengers {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .messenger_btn {
        width: 50px;
        height: 50px;
    }
}