/* Styles pour le bouton de changement de langue */
.social-icons-language a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white !important;
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    border: 2px solid transparent;
}

.social-icons-language a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icons-language i {
    font-size: 1.2em;
    margin-right: 6px;
}

.social-icons-language span {
    font-size: 0.9em;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation au survol */
.social-icons-language a:hover i {
    animation: globe-spin 1.5s ease-in-out infinite;
}

@keyframes globe-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Animation d'entrée */
.social-icons-language {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive pour mobile */
@media (max-width: 991px) {
    .social-icons-language {
        display: none !important;
    }
}
