.social-icons-floating {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.social-icon.telegram {
    background-color: #0088cc;
    background-image: linear-gradient(135deg, #0088cc, #00a1e6);
}

.social-icon.whatsapp {
    background-color: #25D366;
    background-image: linear-gradient(135deg, #25D366, #1fad54);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons-floating {
        right: 15px;
        bottom: 25px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}
