 :root {
            /* Couleurs Resolute */
            --primary-orange: #F4B41A;
            --primary-blue: #1B4168;
            --light-orange: #FDD968;
            --light-blue: #2A5A88;
            --dark-blue: #0F2D4A;
            --white: #ffffff;
            --light-gray: #F8FAFC;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --border-light: #E5E7EB;

            /* Responsive font sizes */
            --fs-xl: clamp(2.5rem, 5vw, 3.5rem);
            --fs-lg: clamp(1.8rem, 3.5vw, 2.5rem);
            --fs-md: clamp(1.2rem, 2.5vw, 1.5rem);
            --fs-sm: clamp(0.9rem, 2vw, 1.1rem);
            --fs-xs: clamp(0.8rem, 1.5vw, 1rem);

            /* Responsive spacing */
            --spacing-xs: clamp(0.5rem, 2vw, 1rem);
            --spacing-sm: clamp(1rem, 3vw, 1.5rem);
            --spacing-md: clamp(1.5rem, 4vw, 2.5rem);
            --spacing-lg: clamp(2rem, 5vw, 4rem);
            --spacing-xl: clamp(3rem, 8vw, 6rem);
        }

        /* Reset et base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
            font-size: var(--fs-xs);
        }

        /* Utility Classes */
        .container-fluid {
            padding-left: var(--spacing-sm);
            padding-right: var(--spacing-sm);
        }

        .text-responsive {
            font-size: var(--fs-sm);
            line-height: 1.5;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--white) 0%, #F1F8FF 100%);
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 997;
            transition: all 0.3s ease;
            padding: 0;
            border-bottom: 2px solid var(--primary-orange);
        }

        .navbar {
            padding: var(--spacing-xs) 0;
            min-height: 70px;
        }

        .navbar-brand img {
            height: clamp(40px, 8vw, 60px);
            width: auto;
            max-width: 150px;
        }

        .navbar-toggler {
            border: 2px solid var(--primary-orange);
            padding: 8px 12px;
            font-size: 1.2rem;
            border-radius: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .navbar .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 600;
            margin: 0.25rem 0.5rem;
            padding: 0.75rem 1.25rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: var(--fs-xs);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .navbar .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .navbar .nav-link:hover::before,
        .navbar .nav-link.active::before {
            left: 0;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .navbar .nav-link i {
            margin-right: 0.5rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-gray) 0%, #E0F2FE 50%, #FFF7ED 100%);
            padding: calc(90px + var(--spacing-md)) 0 var(--spacing-lg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FF6B35;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%231E3A8A;stop-opacity:0.05" /></radialGradient></defs><circle cx="200" cy="300" r="150" fill="url(%23grad1)" /><circle cx="800" cy="700" r="200" fill="url(%23grad1)" /></svg>');
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: var(--fs-xl);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
            word-wrap: break-word;
            hyphens: auto;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .text-primary {
            color: var(--primary-orange) !important;
        }

        .hero .text-dark {
            color: var(--primary-blue) !important;
        }

        .hero .lead {
            font-size: var(--fs-md);
            margin-bottom: var(--spacing-md);
            max-width: 90%;
            color: var(--text-light);
            font-weight: 500;
        }

        .hero-img {
            text-align: center;
            margin-top: var(--spacing-md);
        }

        .hero-img img {
            max-width: 65%;
            height: auto;
            filter: drop-shadow(0 15px 35px rgba(30, 58, 138, 0.2));
            max-height: 70vh;
            object-fit: contain;
        }

        /* Sections */
        .section {
            padding: var(--spacing-xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
            padding: 0 var(--spacing-sm);
        }

        .section-header p {
            color: var(--primary-orange);
            font-size: var(--fs-sm);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: var(--spacing-xs);
            position: relative;
            display: inline-block;
        }

        .section-header p::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            border-radius: 2px;
        }

        .section-header h2 {
            color: var(--primary-blue);
            font-size: var(--fs-lg);
            font-weight: 800;
            margin-bottom: var(--spacing-sm);
            word-wrap: break-word;
        }

        /* Cards */
        .job-card {
            background: var(--white);
            border-radius: 20px;
            padding: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        }

        .job-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
        }

        .job-card:hover::before {
            height: 6px;
        }

        .job-card h3,
        .job-card h4 {
            color: var(--primary-blue);
            font-size: var(--fs-md);
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            word-wrap: break-word;
            line-height: 1.3;
        }

        .job-card .job-meta {
            color: var(--text-light);
            font-size: var(--fs-xs);
            margin-bottom: var(--spacing-sm);
            flex-grow: 1;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .job-card .job-meta i {
            color: var(--primary-orange);
            margin-right: 8px;
        }

        .btn-apply {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            color: var(--white);
            border: none;
            padding: var(--spacing-sm) var(--spacing-lg);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: var(--fs-sm);
            text-align: center;
            white-space: nowrap;
            width: 100%;
            max-width: 280px;

        }

        .btn-apply i {
            margin-right: 8px;
        }

        .btn-apply:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
            color: var(--white);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FF6B35;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23FF6B35;stop-opacity:0.05" /></radialGradient></defs><circle cx="150" cy="200" r="100" fill="url(%23grad2)" /><circle cx="850" cy="800" r="150" fill="url(%23grad2)" /></svg>');
            z-index: 0;
        }

        .contact .container {
            position: relative;
            z-index: 1;
        }

        .contact .section-header p,
        .contact .section-header h2 {
            color: var(--white);
        }

        .contact .section-header p::after {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        }

        .info-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 0.5rem 0.75rem;
            text-align: center;
            margin-bottom: var(--spacing-md);
            transition: all 0.4s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .info-box:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .info-box:hover::before {
            transform: scaleX(1);
        }

        .info-box i {
            font-size: clamp(2.5rem, 6vw, 3rem);
            color: var(--primary-orange);
            margin-bottom: var(--spacing-sm);
            transition: transform 0.3s ease;
        }

        .info-box:hover i {
            transform: scale(1.1);
        }

        .info-box h3 {
            color: var(--white);
            font-size: var(--fs-md);
            font-weight: 700;
            margin-bottom: var(--spacing-xs);
        }

        .info-box p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-size: var(--fs-sm);
            word-wrap: break-word;
            font-weight: 500;
        }

        /* Form Styles - CORRECTION PRINCIPALE */
        .form-control {
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 15px;
            padding: 0.5rem 0.75rem;
            /* réduit les marges internes */
            font-size: var(--fs-sm);
            transition: all 0.3s ease;
            width: 100%;
            min-height: 45px;
            font-weight: 500;
            /* AJOUT CRUCIAL - assurer que les champs sont interactifs */
            pointer-events: auto !important;
            z-index: auto;
            position: relative;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
            transform: translateY(-2px);
            outline: none;
            /* Enlever l'outline par défaut */
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
        }

        /* Style spécifique pour les champs remplis */
        .form-control:not(:placeholder-shown) {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            color: var(--white);
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: var(--fs-md);
            transition: all 0.3s ease;
            width: 100%;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .btn-submit i {
            margin-right: 10px;
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, var(--white), var(--light-gray));
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
        }

        /* Captcha */
        .captcha-box {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: var(--spacing-lg);
            text-align: center;
            margin-bottom: var(--spacing-sm);
            backdrop-filter: blur(20px);
        }

        .captcha-question {
            font-size: var(--fs-md);
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            color: var(--white);
        }

        /* Alert Messages */
        .alert-success {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            border-radius: 15px;
            padding: var(--spacing-md);
            margin-bottom: var(--spacing-sm);
            font-size: var(--fs-sm);
            word-wrap: break-word;
            font-weight: 600;
        }

        .alert-error {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
            border: 2px solid #dc3545;
            color: #dc3545;
            border-radius: 15px;
            padding: var(--spacing-md);
            margin-bottom: var(--spacing-sm);
            font-size: var(--fs-sm);
            word-wrap: break-word;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: var(--spacing-xl) 0;
            text-align: center;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        }

        .footer p {
            margin-bottom: var(--spacing-xs);
            font-size: var(--fs-sm);
            font-weight: 500;
        }

        .footer a {
            color: var(--primary-orange);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: var(--fs-sm);
            font-weight: 600;
        }

        .footer a:hover {
            color: var(--light-orange);
            text-decoration: underline;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: var(--spacing-lg);
            right: var(--spacing-lg);
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            color: var(--white);
            width: clamp(50px, 10vw, 60px);
            height: clamp(50px, 10vw, 60px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: var(--white);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
        }

        /* Media Queries pour une responsivité améliorée */

        /* Extra Small devices (phones, 576px and down) */
        @media (max-width: 575.98px) {
            .container-fluid {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .navbar .nav-link {
                margin: 0.125rem 0;
                padding: 0.625rem 1rem !important;
                font-size: 0.95rem;
            }

            .hero {
                padding: 120px 0 3rem;
                text-align: center;
            }

            .hero .lead {
                max-width: 100%;
            }

            .job-card {
                margin-bottom: 1.5rem;
                min-height: 200px;
                padding: var(--spacing-md);
            }

            .info-box {
                min-height: 160px;
                padding: var(--spacing-md);
            }

            .form-control {
                padding: 0.875rem 1rem;
                min-height: 50px;
            }

            .btn-submit {
                padding: 1rem 1.5rem;
                min-height: 55px;
            }
        }

        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .hero h1 {
                text-align: center;
            }

            .hero-img {
                margin-top: 2rem;
            }
        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .navbar .nav-link {
                margin: 0.25rem 0.375rem;
            }

            .hero {
                padding: 140px 0 4rem;
            }

            .btn-apply {
                width: auto;
                min-width: 220px;
            }
        }

        /* Large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .hero {
                padding: 160px 0 5rem;
            }

            .hero h1 {
                text-align: left;
            }

            .hero .lead {
                max-width: 85%;
            }

            .job-card {
                min-height: 280px;
            }

            .btn-apply {
                width: auto;
                max-width: none;
            }
        }

        /* Extra large devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        /* Ultra wide screens */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* Animation et performance */
        [data-aos] {
            pointer-events: auto;
            /* CHANGÉ : permettre l'interaction même avec AOS */
        }

        /* Focus styles pour l'accessibilité */
        .form-control:focus,
        .btn-submit:focus,
        .btn-apply:focus,
        .nav-link:focus {
            outline: 3px solid var(--primary-orange);
            outline-offset: 3px;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Pulse animation for buttons */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
            }
        }

        .btn-apply:focus {
            animation: pulse 1.5s infinite;
        }