
        /* Language Selector - Premium Experience */
        .language-selector {
            position: relative;
            margin-right: 1rem;
        }

        .language-trigger {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid var(--gold-light);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .language-trigger:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .language-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 180px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition-smooth);
            z-index: 100;
            padding: 0.5rem 0;
        }

        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition-smooth);
        }

        .language-option:hover {
            background: rgba(255, 215, 0, 0.1);
            padding-right: 2rem;
        }

        /* Mobile Navigation - State of the Art */
        .mobile-menu-toggle {
            display: none;
            position: relative;
            width: 32px;
            height: 32px;
            cursor: pointer;
            z-index: 1100;
        }

        .menu-line {
            position: absolute;
            right: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }

        .menu-line:nth-child(1) {
            top: 6px;
        }

        .menu-line:nth-child(2) {
            top: 15px;
        }

        .menu-line:nth-child(3) {
            bottom: 6px;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: var(--glass-effect);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            padding: calc(var(--header-height) + 2rem) 2rem 2rem;
            transition: var(--transition-smooth);
            z-index: 1050;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-item {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .mobile-nav-link {
            display: block;
            padding: 1rem 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-nav-link:hover {
            color: var(--gold-dark);
            padding-right: 1rem;
        }

        .mobile-nav-link.active {
            color: var(--gold-dark);
            font-weight: 700;
        }

        .mobile-language-selector {
            margin-top: 2rem;
        }

      

        /* Responsive Design */
        @media (max-width: 1200px) {
            :root {
                --header-height: 80px;
                --section-py: 4rem;
            }
        }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-section {
                min-height: 700px;
            }

            .hero-content {
                text-align: center;
                margin: 0 auto;
            }

            .section-header {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
                --section-py: 3rem;
            }

            .hero-section {
                min-height: 600px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 576px) {
            :root {
                --header-height: 60px;
            }

            .main-header {
                padding: 0 1.5rem;
            }

            .logo-text {
                font-size: 2rem;
            }

            .hero-section {
                min-height: 500px;
                padding: var(--header-height) 1.5rem 3rem;
            }

            
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		/* Enhanced Language Selector Styles */
    .language-selector {
        position: relative;
        margin-right: 1rem;
    }

    .language-trigger {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 215, 0, 0.1);
        border: 2px solid var(--gold-dark);
        border-radius: 50px;
        cursor: pointer;
        transition: var(--transition-smooth);
        color: var(--primary);
        font-weight: 600;
    }

    .language-trigger:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    .language-current {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .language-flag {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .language-chevron {
        transition: transform 0.3s ease;
    }

    .language-selector[aria-expanded="true"] .language-chevron {
        transform: rotate(180deg);
    }

    .language-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        width: 240px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 0.5rem 0;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .language-selector[aria-expanded="true"] .language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .language-search {
        position: relative;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .language-search-input {
        width: 100%;
        padding: 0.5rem 1.5rem 0.5rem 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        font-size: 0.9rem;
        outline: none;
        transition: var(--transition-smooth);
    }

    .language-search-input:focus {
        border-color: var(--gold-light);
        box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    }

    .language-search-icon {
        position: absolute;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
        color: var(--primary-light);
    }

    .language-list {
        max-height: 300px;
        overflow-y: auto;
        padding: 0.5rem 0;
    }

    .language-option {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        color: var(--primary);
        transition: var(--transition-smooth);
        position: relative;
    }

    .language-option:hover {
        background: rgba(255, 215, 0, 0.1);
    }

    .language-option.current {
        background: rgba(255, 215, 0, 0.05);
    }

    .language-name {
        flex: 1;
        font-weight: 500;
    }

    .language-code {
        color: var(--primary-light);
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.05);
        padding: 0.1rem 0.4rem;
        border-radius: 4px;
    }

    .language-selected-icon {
        color: var(--gold-dark);
        margin-left: 0.5rem;
    }

    .language-footer {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0.75rem 1rem 0;
    }

    .language-settings {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: none;
        color: var(--primary-light);
        font-size: 0.8rem;
        cursor: pointer;
        padding: 0.5rem;
        width: 100%;
        border-radius: 4px;
        transition: var(--transition-smooth);
    }

    .language-settings:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary);
    }

    /* Mobile version adjustments */
    .mobile-language-selector .language-dropdown {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Animation for language change */
    @keyframes languageChange {
        0% { opacity: 0; transform: translateY(-5px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .language-change-animation {
        animation: languageChange 0.3s ease-out;
    }
    
	
	
	
    :root {
        /* Système de couleurs repensé */
        --primary-dark: #001F3F; /* Bleu marine profond */
        --primary: #003366; /* Bleu royal */
        --primary-light: #3D6B99; /* Bleu ciel profond */
        --primary-accent: #00509D; /* Bleu accentuation */
        
        /* Palette dorée redéfinie */
        --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
        --gold-light: #FFE484; /* Or clair */
        --gold-dark: #D4A017; /* Or antique */
        --gold-accent: #FFC72C; /* Or vif */
        
        /* Neutres optimisés */
        --light: #FAFCFE; /* Blanc légèrement bleuté */
        --light-gray: #EDF2F7; /* Gris très clair */
        --dark: #1A202C; /* Noir bleuté */
        --darker: #0D1117; /* Noir profond */
        
        /* Effets spéciaux */
        --glow-effect: 0 0 10px rgba(255, 215, 0, 0.5);
        --subtle-glow: 0 0 15px rgba(255, 215, 0, 0.3);
        
        /* Polices perfectionnées */
        --font-heading: 'Cairo', sans-serif;
        --font-body: 'Cairo', sans-serif;
        --font-weight-bold: 800;
        --font-weight-semibold: 600;
        --font-weight-normal: 400;
        
        /* Échelle typographique magistrale */
        --text-scale: 1.333; /* Rapport parfait */
        --text-xs: calc(0.75rem / var(--text-scale));
        --text-sm: calc(0.875rem / var(--text-scale));
        --text-base: calc(1rem / var(--text-scale));
		--text-lrg: calc(0.875rem * var(--text-scale));
        --text-lg: calc(1.125rem * var(--text-scale));
        --text-xl: calc(1.25rem * var(--text-scale));
        --text-2xl: calc(1.5rem * var(--text-scale));
        --text-3xl: calc(1.875rem * var(--text-scale));
        --text-4xl: calc(2.25rem * var(--text-scale));
        --text-5xl: calc(3rem * var(--text-scale));
        --text-6xl: calc(3.75rem * var(--text-scale));
        
        /* Espacement idéal */
        --space-unit: 1rem;
        --space-xs: calc(var(--space-unit) / 4);
        --space-sm: calc(var(--space-unit) / 2);
        --space-md: var(--space-unit);
        --space-lg: calc(var(--space-unit) * 2);
        --space-xl: calc(var(--space-unit) * 4);
        
        /* Effets de transition réinventés */
        --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-bounce: all 0.6s cubic-bezier(0.34, 1.76, 0.64, 1.2);
        --transition-magic: all 0.8s cubic-bezier(0.2, 0.8, 0.4, 1);
        
        /* Variables structurelles */
        --header-height: 90px;
        --section-py: 6rem;
        --max-content-width: 1440px;
        --border-radius-sm: 8px;
        --border-radius-md: 12px;
        --border-radius-lg: 16px;
        --border-radius-xl: 24px;
        --border-radius-xxl: 32px;
        
        /* Ombres dimensionnelles */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
        --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
        --shadow-gold: 0 4px 24px rgba(255, 215, 0, 0.3);
    }

    @supports (backdrop-filter: blur(20px)) {
        :root {
            --glass-effect: rgba(255, 255, 255, 0.92);
            --glass-dark: rgba(0, 31, 63, 0.85);
        }
    }

    /* Reset CSS révolutionnaire */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: var(--header-height);
        font-size: 100%;
    }

    body {
        font-family: var(--font-body);
        font-weight: var(--font-weight-normal);
        line-height: 1.75;
        letter-spacing: -0.015em;
        color: var(--dark);
        background-color: var(--light);
        
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        font-feature-settings: 'kern' 1, 'liga' 1;
    }

    /* Typographie de génie */
    h1, .h1 {
        font-size: clamp(2.75rem, 5vw + 1rem, 4.5rem);
        line-height: 1.1;
        font-weight: var(--font-weight-bold);
        letter-spacing: -0.03em;
        margin-bottom: var(--space-md);
        color: inherit;
    }

    h2, .h2 {
        font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
        line-height: 1.2;
        font-weight: var(--font-weight-bold);
        letter-spacing: -0.02em;
        margin-bottom: var(--space-md);
    }

    h3, .h3 {
        font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
        line-height: 1.3;
        font-weight: var(--font-weight-semibold);
        letter-spacing: -0.015em;
        margin-bottom: var(--space-sm);
    }

    p, .text {
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.8;
        margin-bottom: var(--space-md);
        color: var(--dark);
    }

    /* Effets textuels magistraux */
    .text-gradient {
        background: var(--gold-gradient);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientFlow 8s ease infinite;
        display: inline-block;
    }

    .text-glow {
        text-shadow: var(--glow-effect);
    }

    .text-shadow {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Effets de verre nouvelle génération */
    .glass-effect {
        background: var(--glass-effect);
        backdrop-filter: blur(20px) saturate(180%) brightness(1.05);
        -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.05);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .glass-dark {
        background: var(--glass-dark);
        backdrop-filter: blur(20px) saturate(180%) brightness(0.9);
        -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(0.9);
        border: 1px solid rgba(0, 0, 0, 0.18);
    }

    /* Header - Design ultime */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
        z-index: 1000;
        transition: var(--transition-magic);
    }

    .main-header.scrolled {
        height: 80px;
        background: var(--glass-effect);
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    }

    .logo-wrapper {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        text-decoration: none;
        transition: var(--transition-bounce);
    }

    .logo-wrapper:hover {
        transform: scale(1.05);
        opacity: 0.95;
        filter: drop-shadow(var(--subtle-glow));
    }

    .logo-img {
        height: 60px;
        width: auto;
        object-fit: contain;
        transition: var(--transition-smooth);
    }

    .logo-text {
        font-family: var(--font-heading);
        font-size: var(--text-xl);
        font-weight: var(--font-weight-bold);
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: var(--shadow-gold);
        letter-spacing: -0.03em;
    }

    /* Navigation révolutionnaire */
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }

    .nav-item {
        position: relative;
        list-style: none;
    }

    .nav-link {
	  position: relative;
        display: flex;
        align-items: center;
        height: var(--header-height);
        padding: 0 var(--space-md);
        font-size: var(--text-lrg);
        font-weight: var(--font-weight-bold);
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition-smooth);
        overflow: hidden;
    }

    .nav-link::before {
  content: '';
        position: absolute;
        bottom: var(--space-md);
        right: var(--space-md);
        width: 0;
        height: 3px;
        background: none;
        border-radius: 3px;
        transition: var(--transition-smooth);
    }

    .nav-link:hover {
        font-family: var(--font-heading);
        font-size: var(--text-lrg);
        
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: var(--shadow-gold);
        
    }

    .nav-link:hover::before {
        width: calc(100% - var(--space-lrg));
    }

    .nav-link.active {
                font-family: var(--font-heading);
        font-size: var(--text-lrg);
        
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: var(--shadow-gold);
        
		
    }

    .nav-link.active::before {
        width: calc(100% - var(--space-lrg));
        text-shadow: 0 0 5px rgba(0, 80, 157, 0.2);
    }


    /* Hero Section - Immersion totale */
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 800px;
        display: flex;
        align-items: center;
        background: 
            linear-gradient(135deg, rgba(0, 31, 63, 0.25) 0%, rgba(0, 51, 102, 0.9) 100%),
            url('/images/tour-M6.jpg') center/cover no-repeat;
        color: white;
        padding: var(--header-height) 5% var(--space-xl);
        overflow: hidden;
        isolation: isolate;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, var(--light), transparent);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        max-width: 700px;
        z-index: 2;
    }

    .hero-title {
		font-size: var(--text-4xl);
        margin-bottom: var(--space-md);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s 0.3s forwards;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-text {
        font-size: var(--text-xl);
        margin-bottom: var(--space-xl);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s 0.6s forwards;
        color: rgba(255, 255, 255, 0.92);
        max-width: 90%;
        line-height: 1.9;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-xs) var(--space-md);
        background: var(--gold-gradient);
        color: var(--primary-dark);
        font-size: var(--text-lrg);
        font-weight: var(--font-weight-bold);
        border-radius: 50px;
        text-decoration: none;
        box-shadow: var(--shadow-gold);
        transition: var(--transition-bounce);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s 0.9s forwards;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
        z-index: -1;
        transition: var(--transition-smooth);
        opacity: 0;
    }

    .cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 165, 0, 0.6);
        color: var(--primary-dark);
    }

    .cta-button:hover::before {
        opacity: 1;
    }

    /* Features Section - Excellence visuelle */
    .features-section {
        position: relative;
        padding: var(--section-py) 5%;
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: var(--space-xl);
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: var(--space-lg);
        color: var(--primary-dark);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        right: 0;
        width: 60%;
        height: 4px;
        background: var(--gold-gradient);
        border-radius: 2px;
        transition: var(--transition-smooth);
    }

    .section-title:hover::after {
        width: 80%;
        background: var(--gold-accent);
    }

    .section-subtitle {
        max-width: 700px;
        margin: 0 auto;
        color: var(--primary-light);
        font-size: var(--text-lg);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-lg);
    }

    .feature-card {
        position: relative;
        background: white;
        border-radius: var(--border-radius-xl);
        padding: var(--space-xl) var(--space-lg);
        box-shadow: var(--shadow-sm);
        transition: var(--transition-magic);
        overflow: hidden;
        z-index: 1;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
        z-index: -1;
        opacity: 0;
        transition: var(--transition-smooth);
    }

    feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(255, 215, 0, 0.3);
    }

    feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon {
        width: 180px;
        height: 180px;
        margin-bottom: var(--space-md);
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        transition: var(--transition-smooth);
    }

    feature-card:hover .feature-icon {
        transform: scale(1.1) ;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    }

    .feature-title {
        margin-bottom: var(--space-sm);
        color: var(--primary);
        font-size: var(--text-xl);
    }

    .feature-description {
        color: var(--primary-light);
        line-height: 1.9;
    }

    /* Footer - Design abouti */
    .main-footer {
        background: var(--primary-dark);
        color: white;
        padding: var(--space-xl) 5% var(--space-md);
        position: relative;
    }

    .main-footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: var(--gold-gradient);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-xl);
        margin-bottom: var(--space-xl);
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
        text-decoration: none;
    }

    .footer-logo-text {
        font-size: var(--text-2xl);
        font-weight: var(--font-weight-bold);
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-about {
        max-width: 300px;
        opacity: 0.85;
        line-height: 1.8;
		 font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.8;
        margin-bottom: var(--space-md);
        color: #FAFCFE;
    }

    .footer-heading {
        font-size: var(--text-lg);
        font-weight: var(--font-weight-bold);
        margin-bottom: var(--space-md);
        color: white;
        position: relative;
        display: inline-block;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 50%;
        height: 2px;
        background: var(--gold-light);
        border-radius: 2px;
        transition: var(--transition-smooth);
    }

    .footer-heading:hover::after {
        width: 80%;
        background: var(--gold-accent);
    }

    .footer-links {
        list-style: none;
    }

    .footer-link-item {
        margin-bottom: var(--space-sm);
    }

    .footer-link {
        display: inline-block;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: var(--transition-smooth);
        padding: var(--space-xs) 0;
        position: relative;
    }

    .footer-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--gold-light);
        transition: var(--transition-smooth);
    }

    .footer-link:hover {
        color: white;
        transform: translateX(-5px);
    }

    .footer-link:hover::before {
        width: 100%;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: var(--space-md);
        text-align: center;
        opacity: 0.7;
        font-size: var(--text-base);
		color: #FAFCFE;
    }

    /* Animations magistrales */
    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.9;
        }
    }




/* === MOBILE NAV SLIDE DIRECTION === */

/* Pour LTR (français/anglais) → glisse depuis la gauche */
html[dir="ltr"] .mobile-nav {
  left: -100%;   /* hors écran à gauche */
  right: auto;
}
html[dir="ltr"] .mobile-nav.active {
  left: 0;       /* rentre à gauche */
  right: auto;
}

/* Pour RTL (arabe) → glisse depuis la droite */
html[dir="rtl"] .mobile-nav {
  right: -100%;  /* hors écran à droite */
  left: auto;
}
html[dir="rtl"] .mobile-nav.active {
  right: 0;      /* rentre à droite */
  left: auto;
}

/* === POSITION DU “HAMBURGER” / CROIX === */
/* LTR → bouton à gauche  |  RTL → bouton à droite */
html[dir="ltr"] .mobile-menu-toggle {
  left: 1rem;
  right: auto;
}
html[dir="rtl"] .mobile-menu-toggle {
  right: 1rem;
  left: auto;
}


















    /* Responsive Design - Adaptation parfaite */
    @media (max-width: 1200px) {
        :root {
            --header-height: 80px;
            --section-py: 5rem;
        }
    }

    @media (max-width: 992px) {
        .main-nav {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .hero-section {
            min-height: 700px;
        }

        .hero-content {
            text-align: center;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: var(--space-lg);
        }
    }







@media (max-width: 768px) {
    :root {
        /* Ajustement de l'échelle typographique pour mobile */
        --text-scale: 1.1; /* Réduit par rapport à 1.333 */
        
        /* Redéfinition des tailles de texte pour mobile */
        --text-xs: 0.65rem;
        --text-sm: 0.75rem;
        --text-base: 0.875rem; /* Taille de base plus petite */
        --text-lg: 1rem;
        --text-xl: 1.125rem;
        --text-2xl: 1.25rem;
        --text-3xl: 1.5rem;
        --text-4xl: 1.75rem;
        --text-5xl: 2rem;
        --text-6xl: 2.25rem;
    }
    
    /* Ajustements spécifiques pour le sélecteur de langue */
    .language-trigger {
        font-size: var(--text-sm);
        padding: 0.5rem 0.75rem;
    }
    
    .language-name {
        font-size: var(--text-sm);
        color: var(--primary-light);
    }
    
    .language-code {
        font-size: 0.65rem;
    }
    
    /* Menu mobile */
    .mobile-nav-link {
        font-size: var(--text-lg);
        
    }
}

@media (max-width: 576px) {
    :root {
        /* Encore plus petit sur très petits écrans */
        --text-base: 0.8125rem; /* ~13px */
        --text-lg: 0.9375rem;
        --text-xl: 1rem;
        --text-2xl: 1.125rem;
        --text-3xl: 1.25rem;
    }
    
    .logo-text {
        font-size: var(--text-2xl); /* Réduit la taille du logo */
    }
    
    /* Sélecteur de langue compact */
    .language-trigger {
        gap: 0.25rem;
        padding: 0.25rem 0.5rem;
    }
    
    .language-flag {
        width: 16px;
        height: 16px;
    }
}



/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 0.5rem;
    }
    
    .language-dropdown {
        width: 160px;
    }
    
    .language-option {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .mobile-language-selector .language-trigger {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .feature-title {
        font-size: var(--text-lg);
    }
    
    .feature-description {
        font-size: var(--text-base);
    }
    
    .footer-about, .footer-link {
        font-size: var(--text-sm);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .hero-text {
        font-size: var(--text-lg);
    }
    
   
}