@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FAFAFA;
    color: #000000;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    --yl-orange: #F39200;
    --yl-red: #BE1622;
    --yl-black: #000000;
    --yl-white: #FFFFFF;
}

/* Navigation - Style Arduino */
.nav-container {
    background: var(--yl-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Menu déroulant Desktop */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--yl-white);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    gap: 12px;
}

.nav-dropdown-content a:hover {
    background: #F9FAFB;
    color: var(--yl-orange);
    border-left-color: var(--yl-orange);
}

/* Logos des plateformes - alignés horizontalement */
.nav-dropdown-content a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-dropdown-content a:hover img {
    transform: scale(1.1);
}

/* Icônes des sous-menus - alignés horizontalement */
.nav-dropdown-content a i {
    font-size: 16px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.nav-dropdown-content a:hover i {
    transform: scale(1.1);
}

/* Navigation principale - alignement des icônes */
.nav-container .hidden.lg\\:flex a,
.nav-container .hidden.lg\\:flex .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-container .hidden.lg\\:flex a i:not(.dropdown-icon),
.nav-container .hidden.lg\\:flex .nav-dropdown > a i:not(.dropdown-icon) {
    font-size: 14px;
    transition: color 0.2s ease;
}

/* Icône de flèche pour dropdown */
.dropdown-icon {
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Hero Section */
/* Video Background - Toutes les tailles (full background) */
.hero-section {
    background: transparent;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay pour améliorer la lisibilité */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Contenu au-dessus de la vidéo */
.hero-section .max-w-7xl {
    position: relative;
    z-index: 2;
}

/* Texte en blanc pour contraster avec la vidéo */
.hero-section h1,
.hero-section p:not(.stat-box p) {
    color: var(--yl-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h1 .text-orange {
    color: var(--yl-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Boutons ajustés pour le fond vidéo */
.hero-section .btn-primary {
    box-shadow: 0 4px 12px rgba(243, 146, 0, 0.4);
}

.hero-section .btn-secondary {
    background: var(--yl-white);
    color: var(--yl-black);
    border-color: var(--yl-white);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-section .btn-secondary:hover {
    background: var(--yl-orange);
    color: var(--yl-white);
    border-color: var(--yl-orange);
}

/* Stats boxes avec fond semi-transparent pour meilleure lisibilité */
.hero-section .stat-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Video Background - Mobile/Tablet (full background) */
@media (max-width: 1023px) {
    .hero-section {
        background: transparent;
    }
    
    .hero-video-wrapper {
        width: 100%;
        height: 100%;
        clip-path: none;
        z-index: 0;
    }
    
    .hero-video-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    
    .hero-section .max-w-7xl {
        position: relative;
        z-index: 2;
    }
    
    .hero-section h1,
    .hero-section p:not(.stat-box p) {
        color: var(--yl-white);
    }
    
    .hero-section h1 .text-orange {
        color: var(--yl-orange);
    }
    
    .hero-section .btn-secondary {
        background: var(--yl-white);
        color: var(--yl-black);
        border-color: var(--yl-white);
    }
    
    .hero-section .btn-secondary:hover {
        background: var(--yl-orange);
        color: var(--yl-white);
        border-color: var(--yl-orange);
    }
}

/* Product Cards */
.product-card {
    background: var(--yl-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E5E5E5;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--yl-orange);
}

.product-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #F5F5F5;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    padding: 1rem;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card .logo-box {
    background: white;
    border-radius: 1rem;
    padding: 0.4rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Alignement des boutons "Explorer" sur la même ligne */
@media (min-width: 768px) {
    .product-card {
        display: flex;
        flex-direction: column;
    }
    
    .product-card > div:last-child {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .product-card > div:last-child > a {
        margin-top: auto;
    }
}

/* Solution Cards - Style mis à jour avec fond blanc */
.solution-card {
    background: var(--yl-white);
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 2px solid #E5E5E5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Suppression des fonds colorés alternés */
.solution-card:nth-child(1),
.solution-card:nth-child(2),
.solution-card:nth-child(3),
.solution-card:nth-child(4) {
    background: var(--yl-white);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border-color: var(--yl-orange);
}

/* Content wrapper */
.solution-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Tag coloré - conservé en orange/rouge */
.solution-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.solution-tag.tag-orange {
    background: var(--yl-orange);
    color: var(--yl-white);
}

.solution-tag.tag-red {
    background: var(--yl-red);
    color: var(--yl-white);
}

/* Titre et description - Texte noir sur fond blanc */
.solution-card h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--yl-black);
}

.solution-card p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Conteneur de boutons */
.solution-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.solution-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid transparent;
}

/* Boutons avec style noir */
.solution-btn-primary {
    background: var(--yl-black);
    color: var(--yl-white);
    border-color: var(--yl-black);
}

.solution-btn-primary:hover {
    background: var(--yl-orange);
    color: var(--yl-white);
    border-color: var(--yl-orange);
    transform: translateY(-2px);
}

.solution-btn-secondary {
    background: transparent;
    color: var(--yl-black);
    border-color: var(--yl-black);
}

.solution-btn-secondary:hover {
    background: var(--yl-black);
    color: var(--yl-white);
    border-color: var(--yl-black);
}

/* Image container - Mobile et Desktop (vertical) */
.solution-image {
    width: 100%;
    height: 280px;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    margin: -1px;
}

.solution-image img {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.solution-card:hover .solution-image img {
    transform: scale(1.08);
}

/* ====== MOBILE (moins de 768px) - Layout vertical ====== */
@media (max-width: 767px) {
    .solution-card {
        flex-direction: column;
        padding: 0;
    }
    
    .solution-content {
        padding: 2rem 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .solution-card p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .solution-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .solution-btn {
        justify-content: center;
        width: 100%;
    }
    
    .solution-image {
        height: 240px;
        margin: -1px;
    }
}

/* ====== TABLETTE UNIQUEMENT (768px à 1023px) - Layout avec overlay ====== */
@media (min-width: 768px) and (max-width: 1023px) {
    .solution-card {
        position: relative;
        min-height: 350px;
        padding: 0;
    }
    
    .solution-content {
        width: 55%;
        padding: 2rem 1.5rem 2rem 2rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .solution-card p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .solution-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .solution-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Image qui déborde et se superpose */
    .solution-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
        margin: 0;
    }
    
    .solution-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
        border-bottom-left-radius: 0;
    }
}

/* ====== DESKTOP (1024px et plus) - Layout vertical ====== */
@media (min-width: 1024px) {
    .solution-card {
        flex-direction: column;
        padding: 0;
    }
    
    .solution-content {
        padding: 2.5rem;
    }
    
    .solution-card h3 {
        font-size: 2rem;
    }
    
    .solution-card p {
        font-size: 1rem;
    }
    
    .solution-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .solution-image {
        height: 380px;
        margin: -1px;
    }
}

/* ====== TRÈS GRAND ÉCRAN (1280px et plus) ====== */
@media (min-width: 1280px) {
    .solution-card h3 {
        font-size: 2.25rem;
    }
    
    .solution-card p {
        font-size: 1.05rem;
    }
    
    .solution-image {
        height: 420px;
        margin: -1px;
    }
}

/* Grille des solutions - 3 colonnes alignées */
@media (max-width: 767px) {
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Icon Boxes */
.icon-box-orange {
    background: var(--yl-orange);
    color: var(--yl-white);
}

.icon-box-red {
    background: var(--yl-red);
    color: var(--yl-white);
}

/* Stats */
.stat-box {
    background: var(--yl-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--yl-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Buttons */
.btn-primary {
    background: var(--yl-orange);
    color: var(--yl-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--yl-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 146, 0, 0.3);
}

.btn-secondary {
    background: var(--yl-white);
    color: var(--yl-black);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--yl-black);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--yl-black);
    color: var(--yl-white);
    transform: translateY(-2px);
}

/* Story Cards */
.story-card {
    background: var(--yl-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    border-color: var(--yl-orange);
}

.story-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #F5F5F5;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

/* News Cards */
.news-card {
    background: var(--yl-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--yl-orange);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Badge */
.badge-orange {
    background: rgba(243, 146, 0, 0.1);
    color: var(--yl-orange);
}

.badge-red {
    background: rgba(190, 22, 34, 0.1);
    color: var(--yl-red);
}

/* CTA Section */
.cta-section {
    background: var(--yl-orange);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Dropdown */
.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-trigger > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-dropdown-trigger i:first-child {
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: #6B7280;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-dropdown-content a:hover {
    color: var(--yl-orange);
    padding-left: 8px;
}

/* Logos des plateformes mobile - alignés horizontalement */
.mobile-dropdown-content a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Icônes des sous-menus mobile - alignés horizontalement */
.mobile-dropdown-content a i {
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-dropdown-icon.active {
    transform: rotate(180deg);
}

/* Animation pour les icônes au hover */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.nav-container a:hover i:not(.dropdown-icon),
.mobile-menu a:hover i {
    animation: iconBounce 0.5s ease;
}

/* Text Colors */
.text-orange { color: var(--yl-orange); }
.text-red { color: var(--yl-red); }
.text-black { color: var(--yl-black); }
.text-white { color: var(--yl-white); }

/* Border Colors */
.border-orange { border-color: var(--yl-orange); }
.border-red { border-color: var(--yl-red); }

/* Background Colors */
.bg-orange { background-color: var(--yl-orange); }
.bg-red { background-color: var(--yl-red); }
.bg-black { background-color: var(--yl-black); }
.bg-white { background-color: var(--yl-white); }

/* Hover Effects */
.hover-orange:hover { color: var(--yl-orange); }
.hover-red:hover { color: var(--yl-red); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--yl-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yl-red);
}

/* ========================================
   SÉLECTEUR DE LANGUE - DESKTOP & MOBILE (Sans drapeaux)
   ======================================== */

/* Conteneur principal */
.language-selector {
    position: relative;
    display: inline-block;
}

/* Bouton toggle */
.lang-toggle-btn {
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
    background-color: #f3f4f6 !important;
    border-color: #e5e7eb;
}

.lang-toggle-btn:active {
    transform: scale(0.98);
}

/* Icône globe - animation au survol */
.lang-toggle-btn .fa-globe {
    transition: transform 0.3s ease;
}

.lang-toggle-btn:hover .fa-globe {
    transform: rotate(15deg);
}

/* Flèche qui tourne quand le menu est ouvert */
.lang-toggle-btn .fa-chevron-down {
    transition: transform 0.3s ease;
}

.lang-toggle-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Nom de la langue actuelle */
.lang-current-name {
    color: #374151;
    white-space: nowrap;
}

/* Dropdown menu - Desktop */
.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    z-index: 1000;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Options de langue */
.lang-option {
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.lang-option:hover {
    background-color: #f9fafb !important;
    padding-left: 1.125rem;
}

.lang-option:active {
    background-color: #f3f4f6 !important;
}

/* Option active */
.lang-option.bg-orange-50 {
    background-color: #fff7ed !important;
    border-left-color: var(--yl-orange);
}

.lang-option .fa-check {
    animation: checkIn 0.3s ease;
}

@keyframes checkIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE - MOBILE & TABLET
   ======================================== */

@media (max-width: 1023px) {
    /* Section mobile simplifiée - Une seule ligne */
    .mobile-lang-section {
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .mobile-lang-section .fa-globe {
        animation: globePulse 2s ease-in-out infinite;
    }
    
    @keyframes globePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    /* Style des liens de langue */
    .mobile-lang-section a {
        font-size: 0.9375rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 0.25rem 0.5rem;
        border-radius: 0.375rem;
    }
    
    .mobile-lang-section a:hover {
        background-color: rgba(243, 146, 0, 0.1);
    }
    
    .mobile-lang-section a.text-orange {
        background-color: rgba(243, 146, 0, 0.15);
    }
    
    /* Séparateur */
    .mobile-lang-section .text-gray-400 {
        font-weight: 300;
        user-select: none;
    }
}

/* ========================================
   DESKTOP - Ajustements spécifiques
   ======================================== */

@media (min-width: 1024px) {
    .lang-toggle-btn {
        min-width: 140px;
    }
    
    /* Masquer la section mobile sur desktop */
    .mobile-lang-section {
        display: none;
    }
}

/* ========================================
   ANIMATIONS GLOBALES
   ======================================== */

/* Animation du globe qui tourne */
@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lang-toggle-btn:hover .fa-globe {
    animation: globeSpin 1s linear infinite;
}

/* Effet de brillance sur le bouton */
@keyframes shine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.lang-toggle-btn:hover {
    background: linear-gradient(
        90deg,
        #f3f4f6 0%,
        #ffffff 50%,
        #f3f4f6 100%
    );
    background-size: 200% 100%;
    animation: shine 2s ease-in-out infinite;
}