        :root {
            --primary: #0A8CCB;
            --primary-light: #87ACD4;
            --primary-dark: #0177B6;
            --gradient: linear-gradient(135deg, #87ACD4 0%, #0A8CCB 50%, #0177B6 100%);
            --gradient-reverse: linear-gradient(135deg, #0177B6 0%, #0A8CCB 50%, #87ACD4 100%);
            --text-primary: #262626;
            --text-secondary: #666;
            --text-muted: #8e8e8e;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-tertiary: #e9ecef;
            --border-color: #dbdbdb;
            --success: #28a745;
            --error: #dc3545;
            --warning: #ffc107;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-primary);
            background: var(--bg-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow, 
.tac_activate .tarteaucitronAllow,
#tarteaucitronRoot .tarteaucitronAllow
{
    background: #0a8ccb!important;
    color: white!important;
}
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny
{
    background: rgba(0, 0, 0, 0.4)!important;
    color: white!important;
}
html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAllow, 
html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow, 
{
    background: #4CAF50!important;
    color: white!important;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow {
    font-size: 0 !important;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow:after {
    content: "Accepter";
    font-size: 16px;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton {
    background-color: #0177B6 !important; 
    color: white !important;
    border: none !important;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton:hover {
    background-color: #0A8CCB !important;
}
html body #tarteaucitronRoot #tarteaucitron .tarteaucitronDeny,
html body #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny, 
{
    background: #f44336!important;
    color: white!important;
}
html body #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert 
{
    background: rgba(0, 0, 0, 0.4)!important;
    color: white!important;
}
html body #tarteaucitronRoot #tarteaucitronDisclaimerAlert {
        color: white;
}
html body #tarteaucitronRoot #tarteaucitronAlertBig {
        background: rgba(0, 0, 0, 0.4);
        color: white;
        font-size: 12px;
        text-align: center;
        padding: 10px;
}
html body #tarteaucitronRoot #tarteaucitronAlertBig button {
		background: rgba(0, 0, 0, 0.15);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        margin: 5px;
        border-radius: 5px;
}
html body #tarteaucitronRoot #tarteaucitronAlertBig button:hover {
    -webkit-box-shadow: 0 0 10px #fff;
    -moz-box-shadow: 0 0 10px #fff;
    -ms-box-shadow: 0 0 10px #fff;
    -o-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
}
        
        /* Tarteaucitron customization */
        #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow,
        #tarteaucitronRoot .tarteaucitronAllow {
            background: var(--primary) !important;
            color: white !important;
        }
        
        #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton {
            background-color: var(--primary-dark) !important; 
            color: white !important;
            border: none !important;
        }
        
        #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton:hover {
            background-color: var(--primary) !important;
        }
        
        #tarteaucitronRoot #tarteaucitronAlertBig {
            background: rgba(0, 0, 0, 0.85);
            color: white;
        }
        
        /* Loading state */
        .page-loading {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .page-loaded {
            opacity: 1;
        }
        
        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            height: 60px;
            box-shadow: var(--shadow-sm);
        }
        
        .header-logo img {
            height: 40px;
            transition: height 0.3s ease;
        }
        
        .header.scrolled .header-logo img {
            height: 50px;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .header-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .header-nav a:hover {
            color: var(--primary);
        }
        
        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .header-nav a:hover::after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(10, 140, 203, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(10, 140, 203, 0.4);
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
        }
        
        .btn-white:hover {
            background: var(--bg-secondary);
            transform: translateY(-2px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }
        
        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 5% 60px;
        }

      
        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(135, 172, 212, 0.1) 0%, rgba(10, 140, 203, 0.05) 100%);
            z-index: -2;
        }
        
        .hero-shapes {
            position: absolute;
            inset: 0;
            z-index: -1;
            overflow: hidden;
        }
        
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .hero-shape-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }
        
        .hero-shape-2 {
            width: 400px;
            height: 400px;
            background: var(--primary-light);
            bottom: -100px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }
        
        .hero-shape-3 {
            width: 200px;
            height: 200px;
            background: var(--primary-dark);
            top: 40%;
            left: 20%;
            animation: float 10s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(5deg); }
            50% { transform: translate(-10px, 20px) rotate(-5deg); }
            75% { transform: translate(-20px, -10px) rotate(3deg); }
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text {
            max-width: 600px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 140, 203, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: var(--radius-lg);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .hero-badge i {
            font-size: 16px;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .hero-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .hero-newsletter {
            background: white;
            border-radius: var(--radius-lg);
            padding: 6px;
            display: flex;
            box-shadow: var(--shadow-md);
            max-width: 450px;
        }
        
        .hero-newsletter input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 15px;
            background: transparent;
            outline: none;
        }
        
        .hero-newsletter button {
            padding: 14px 28px;
            white-space: nowrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }
        
        .hero-stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .hero-visual {
            position: relative;
        }
        
        .hero-image {
            width: 100%;
            max-width: 550px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }
        
        .hero-card {
            position: absolute;
            background: white;
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideIn 0.6s ease-out;
        }
        
        .hero-card-1 {
            top: 5%;
            left: -30px;
        }
        
        .hero-card-2 {
            top: 10%;
            right: -20px;
        }
        
        .hero-card-3 {
            bottom: 10%;
            left: -50px;
        }
        
        .hero-card-4 {
            bottom: 5%;
            right: -10px;
        }
        
        .hero-card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
        }
        
        .hero-card-icon.blue { background: var(--gradient); }
        .hero-card-icon.green { background: linear-gradient(135deg, #28a745, #20c997); }
        .hero-card-icon.purple { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
        .hero-card-icon.orange { background: linear-gradient(135deg, #ffb347, #ff7e5f); }
        .hero-card-text {
            font-size: 13px;
        }
        
        .hero-card-text strong {
            display: block;
            font-size: 14px;
            color: var(--text-primary);
        }
        
        .hero-card-text span {
            color: var(--text-muted);
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
.ext-gap {
    padding: 100px 0;
    float: left;
    width: 100%;
    position: relative;
}

.blackish:before,
.whitish:before,
.bluesh:before,
.pattern:before {
    background: #000;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.pattern:before {
    background: #ffffff repeat scroll 0 0;
    opacity: 0.45;
}

.whitish:before {
    background: rgba(255, 255, 255, .9);
}

.bluesh:before {
    background: #088dcd;
}

.exthigh-opacity:before {
    -webkit-opacity: .98;
    -moz-opacity: .98;
    -ms-opacity: .98;
    -o-opacity: .98;
    opacity: .98;
}

.high-opacity:before {
    -webkit-opacity: .9;
    -moz-opacity: .9;
    -ms-opacity: .9;
    -o-opacity: .9;
    opacity: .9;
}

.medium-opacity:before {
    -webkit-opacity: .85;
    -moz-opacity: .85;
    -ms-opacity: .85;
    -o-opacity: .85;
    opacity: .85;
}

.low-opacity:before {
    -webkit-opacity: .75;
    -moz-opacity: .75;
    -ms-opacity: .75;
    -o-opacity: .75;
    opacity: .75;
}

.gray-bg {
    float: left;
    width: 100%;
    background: #f4f2f2;
}
        
        /* ========== SECTION STYLES ========== */
        section {
            padding: 100px 5%;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 140, 203, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: var(--radius-lg);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* ========== FEATURES SECTION ========== */
        .features {
            background: var(--bg-secondary);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }
        
        .feature-icon.gradient-blue { background: var(--gradient); }
        .feature-icon.gradient-green { background: linear-gradient(135deg, #28a745, #20c997); }
        .feature-icon.gradient-purple { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
        .feature-icon.gradient-orange { background: linear-gradient(135deg, #fd7e14, #ffc107); }
        
        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        
        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* ========== ABOUT SECTION ========== */
        .about {
            background: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            border-radius: var(--radius-xl);
            top: 20px;
            left: -20px;
            z-index: -1;
            opacity: 0.2;
        }
        
        .about-text h2 {
			display: -webkit-inline-box;
			align-items: start;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .about-text h2 img {
            height: 90px;
            vertical-align: middle;
            margin-top: -45px;
        }
		@media (max-width: 458px), 
		@media (min-width: 993px) and (max-width: 1056px) {
			.about-text h2 img {
				margin-top: -11px;
			}
		}
		
        .about-text p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }
        
        .about-signature {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .about-signature strong {
            display: block;
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .about-signature span {
            font-size: 13px;
            color: var(--text-muted);
            font-style: italic;
        }
        
        /* ========== NEWS SECTION ========== */
        .news {
            background: var(--bg-secondary);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .news-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .news-card-image {
            min-height: 180px;
            overflow: hidden;
            align-content: center;
        }
        
        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-card-image img {
            transform: scale(1.05);
        }
        
        .news-card-content {
            padding: 24px;
        }
        
        .news-card-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .news-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        
        .news-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
            background-size: 100px;
        }
        
        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }
        
        .cta-content p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ========== CONTACT SECTION ========== */
        .contact {
            background: white;
        }
        
        .contact-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-form {
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            padding: 40px;
            width: 100%;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(10, 140, 203, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .form-submit .btn {
            min-width: 200px;
        }
        
        /* ========== FOOTER ========== */
        .footer {
            background: white;
            color: var(--text-primary);
            padding: 60px 5% 30px;
        }
.footer::before {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ffffff 0%, #2fa7cd 50%, #ffffff 100%) repeat scroll 0 0;
    content: "";
    height: 5px;
    position: absolute;
    width: 100%;
    margin-top: -60px;
    left: 0;
}

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-brand img {
            height: 60px;
        }
        
        .footer-brand p {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.7);
            line-height: 1.7;
            max-width: 500px;
        }
        .footer-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
:root[dir="ltr"] .footer-brand p,
:root[dir="ltr"] .footer-title {
	direction: ltr;
}
:root[dir="rtl"] .footer-brand p,
:root[dir="rtl"] .footer-title {
	direction: rtl;
}
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 10px;
            /*justify-content: center; 
            align-items: center;*/
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-bottom p {
            font-size: 13px;
            color: rgba(0, 0, 0, 0.5);
        }
        
        .footer-bottom img {
            height: 25px;
            opacity: 0.7;
        }
        
        /* ========== ALERT MESSAGES ========== */
        .alert {
            padding: 14px 20px;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.1);
            color: var(--success);
            border: 1px solid rgba(40, 167, 69, 0.2);
        }
        
        .alert-error {
            background: rgba(220, 53, 69, 0.1);
            color: var(--error);
            border: 1px solid rgba(220, 53, 69, 0.2);
        }
        
        /* ========== MOBILE RESPONSIVE ========== */
        @media (max-width: 992px) {
            .header-nav { display: none; }
            .mobile-menu-btn { display: block; }
            
            .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text { max-width: 100%; }
            .hero-newsletter { margin: 0 auto; }
            .hero-stats { justify-content: center; }
            .hero-visual { order: -1; }
            /*.hero-card { display: none; }*/
            .about-image { order: -1; }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-brand p { max-width: 100%; margin: 0 auto; }
            .footer-social { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 15px; }
            .form-row { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 768px) {
            .hero { padding: 100px 5% 40px; }
            .hero-cta { justify-content: center; }
            .hero-newsletter { width: 100%; flex-direction: column; }
            .hero-newsletter input { text-align: center; }
            /* .hero-stats { flex-direction: column; gap: 20px; } */
            /*.hero-card { display: none; }*/
			.hero-card-1 {
				top: -20%;
				left: -30px;
			}
			
			.hero-card-2 {
				top: 0%;
				right: -20px;
			}
			
			.hero-card-3 {
				bottom: -10%;
				left: -40px;
			}
			
			.hero-card-4 {
				bottom: -25%;
				right: -30px;
			}
            .news-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .contact-form { padding: 24px; }
        }
        
        /* ========== SCROLL INDICATOR ========== */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--primary);
            border-radius: 20px;
            position: relative;
        }
        
        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 10px;
            background: var(--primary);
            border-radius: 3px;
            animation: scroll 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        
        @keyframes scroll {
            0% { opacity: 1; top: 8px; }
            100% { opacity: 0; top: 25px; }
        }
        
        /* ========== MOBILE MENU ========== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: white;
            z-index: 1001;
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
            box-shadow: var(--shadow-lg);
        }
        
        .mobile-menu.active { right: 0; }
        
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-primary);
        }
        
        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .mobile-menu-nav a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            transition: color 0.3s ease;
        }
        
        .mobile-menu-nav a:hover { color: var(--primary); }
        
        /* Honeypot */
        .honeypot { display: none !important; }
        
/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;


    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: slide 50s linear infinite;
    -moz-animation: slide 50s linear infinite;
    -ms-animation: slide 50s linear infinite;
    -o-animation: slide 50s linear infinite;
    will-change: background-position;
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -ms-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;            
}

.hero-bg.whitish::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .9);
/*    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(135, 172, 212, 0.2) 50%,
        rgba(10, 140, 203, 0.15) 100%
    );*/
    z-index: 1;
}

.hero-bg.high-opacity::before {
    opacity: 0.92;
}

@keyframes slide {
    0% { background-position: 0 center; }
    100% { background-position: -2000px center; }
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(135, 172, 212, 0.4);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(10, 140, 203, 0.3);
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(1, 119, 182, 0.35);
    top: 40%;
    left: 20%;
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-15px, 15px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 700px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 140, 203, 0.15);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    padding: 0 10px;
}

.hero-newsletter {
    background: white;
    border-radius: var(--radius-lg);
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
    max-width: 480px;
    margin: 0 auto 20px;
    width: 100%;
}

.hero-newsletter input {
    flex: 1;
    min-width: 200px;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    background: transparent;
    outline: none;
    border-radius: var(--radius-md);
}

.hero-newsletter input::placeholder {
    color: var(--text-muted);
}

.hero-newsletter button {
    padding: 14px 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-stat {
    text-align: center;
    min-width: 70px;
}

.hero-stat-value {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: clamp(11px, 2vw, 13px);
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ========== MOBILE RESPONSIVE - HERO ========== */
@media (max-width: 768px) {
    .hero {
        padding: 90px 4% 50px;
        min-height: 100svh; /* Small viewport height for mobile */
    }
    
/*    .hero-bg {
        animation: slide 120s linear infinite; /* Slower on mobile */
    }*/
    
    .hero-shape-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }
    
    .hero-shape-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }
    
    .hero-shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        margin-bottom: 24px;
        padding: 0 5px;
    }
    
    .hero-newsletter {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }
    
    .hero-newsletter input {
        min-width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .hero-newsletter button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 15px 25px;
        padding-top: 24px;
    }
    
    .hero-stat {
        min-width: 60px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator span {
        width: 24px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 3% 40px;
    }
    
    .hero-stats {
        gap: 12px 20px;
    }
    
    .hero-stat {
        min-width: 55px;
    }
}

/* Fix pour iOS Safari - hauteur viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}


/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 60px;
    box-shadow: var(--shadow-sm);
}

.header-logo img {
    height: 40px;
    transition: height 0.3s ease;
}

.header.scrolled .header-logo img {
    height: 35px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--bg-secondary);
}

/* ========== MOBILE RESPONSIVE - HEADER ========== */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    
    .header-actions .btn-outline {
        display: none; /* Cache "Connexion" sur tablette */
    }
    .header-actions .language-outline {
        display: none; /* Cache "Connexion" sur tablette */
    }
    .language-selector {
        align-self: center;
	}
	
    .header-actions .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 0 4%;
    }
    
    .header.scrolled {
        height: 55px;
    }
    
    .header-logo img {
        height: 35px;
    }
    
    .header.scrolled .header-logo img {
        height: 40px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .header-actions .btn-primary i {
        display: none; /* Cache l'icône sur petit mobile */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 3%;
    }
    
    .header-logo img {
        height: 32px;
    }
    
    /* Option : cacher complètement le bouton et garder que le menu */
    .header-actions .btn-primary {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: var(--radius-md);
    }
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1001;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-menu-header img {
    height: 35px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-secondary);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-menu-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-nav a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.mobile-menu-nav a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}

/* ========== SURVEY BUTTON IN HERO ========== */
.btn-survey {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(135, 172, 212, 0.2) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    text-decoration: none;
    color: var(--text-primary);
    margin: 0px auto 0;
    max-width: 480px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-survey:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 140, 203, 0.3);
}

.btn-survey:hover i,
.btn-survey:hover small {
    color: rgba(255, 255, 255, 0.9);
}

.btn-survey > i:first-child {
    font-size: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.btn-survey span {
    flex: 1;
    text-align: left;
}

.btn-survey strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-survey small {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.btn-survey > i:last-child {
    font-size: 14px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.btn-survey:hover > i:last-child {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .btn-survey {
        padding: 12px 18px;
        gap: 12px;
    }
    
    .btn-survey > i:first-child {
        font-size: 20px;
    }
    
    .btn-survey strong {
        font-size: 13px;
    }
    
    .btn-survey small {
        font-size: 11px;
    }
}

/* ========== NEWS SECTION - 3 COLUMNS ========== */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .news-grid-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ========== HIGHLIGHTED NEWS CARD ========== */
.news-card-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none !important;
    color: white;
}

.news-card-highlight .news-card-image {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.news-card-highlight .news-card-content {
    background: transparent;
}

.news-card-highlight .news-card-date {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
}

.news-card-highlight .news-card-date.highlight {
    background: rgba(255, 193, 7, 0.3);
    color: #fff3cd;
}

.news-card-highlight h3 {
    color: white;
}

.news-card-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.news-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.news-card-cta i {
    transition: transform 0.3s ease;
}

.news-card-highlight:hover .news-card-cta i {
    transform: translateX(5px);
}

.news-card-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(1, 119, 182, 0.4);
}

.news-card-highlight:hover .news-card-icon-bg {
    animation: none;
    transform: scale(1.15);
}


/* Language Selector */
.language-selector {
    position: relative;
}
.language-selector::after {
    content: '';
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    color: #262626;
}

.language-trigger:hover {
    border-color: var(--primary);
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.language-trigger .fi {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-name {
    display: inline-block;
}

.language-trigger i.fa-chevron-down {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s;
}

.language-selector.open .language-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 2000;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #262626;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
}

.language-option.active {
    background: linear-gradient(135deg, #f0f8ff 0%, #e7f3ff 100%);
    color: var(--primary);
    font-weight: 600;
}

.language-option .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.language-option span:not(.fi) {
    flex: 1;
    font-size: 14px;
}

.language-option i.fa-check {
    color: var(--primary);
    font-size: 14px;
}

/* Animation hover */
.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.language-option.active::before {
    transform: scaleY(1);
}

/* Responsive */
@media (max-width: 768px) {
    /*.language-name {
        display: none;
    }*/
    
    .language-trigger {
        padding: 8px 10px;
    }
    
    .language-trigger .fi {
        width: 24px;
        height: 24px;
    }
    
    .language-dropdown {
        right: -10px;
    }
}

/* Version compacte pour mobile bottom nav */
.mobile-language-selector {
    position: relative;
}

.mobile-language-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #262626;
    font-size: 11px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.mobile-language-trigger .fi {
    font-size: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.mobile-language-trigger.active {
    color: var(--primary);
}

/* Mobile Language Modal */
.mobile-language-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    transition: bottom 0.3s ease;
    display: none;
}

.mobile-language-modal.active {
    display: block;
    bottom: 0;
}

.mobile-language-content {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 0;
    margin-top: auto;
    animation: slideUpMobile 0.3s ease;
}

@keyframes slideUpMobile {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-language-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-language-header button {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.mobile-language-list {
    padding: 10px;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-language-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: #262626;
    border-radius: 12px;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.mobile-language-item:hover {
    background: #f8f9fa;
}

.mobile-language-item.active {
    background: linear-gradient(135deg, #f0f8ff 0%, #e7f3ff 100%);
    color: var(--primary);
    font-weight: 600;
}

.mobile-language-item .fi {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-language-item span:not(.fi) {
    flex: 1;
    font-size: 16px;
}

.mobile-language-item i.fa-check {
    color: var(--primary);
}

/* Grille responsive et équilibrée */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Style de la carte */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%; /* Assure que toutes les cartes ont la même hauteur */
}

/* Effet au survol : on lève la carte et on renforce l'ombre */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(10, 140, 203, 0.12);
    border-color: rgba(10, 140, 203, 0.2);
}

/* En-tête de carte pour l'icone */
.feature-card-header {
    margin-bottom: 20px;
}

/* Conteneur de l'icône */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Animation de l'icône au survol de la carte */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

/* Dégradés modernes */
.gradient-blue { background: linear-gradient(135deg, #0A8CCB 0%, #0077b6 100%); }
.gradient-green { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); }
.gradient-purple { background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%); }
.gradient-orange { background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); }

/* Typographie */
.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1; /* Pousse le contenu pour remplir la hauteur */
}
