:root {
            /* Official Elton Brand Colors (from dev.elton.ci) */
            --elton-blue: #1a73b5;
            --elton-red: #e5003d;
            --elton-secondary: #e7f0f7;
            --elton-dark: #333333;
            /* Aliases */
            --primary-blue: #1a73b5;
            --accent: #e5003d;
            --bg-color: #ffffff;
            --bg-sections: #e7f0f7;
            --text-color: #333333;
            --nav-bg: rgba(26, 115, 181, 0.97);
            --glass-bg: rgba(26, 115, 181, 0.08);
            --glass-border: rgba(26, 115, 181, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-theme="elton-warm"] {
            --bg-color: #e7f0f7;
            --bg-sections: #ffffff;
            --text-color: #333333;
            --glass-bg: rgba(26, 115, 181, 0.05);
            --nav-bg: rgba(26, 115, 181, 0.97);
        }

        /* 
        Google Translate – masquer la barre native 
         */
        /* Google Translate – masquer la barre native */
        .skiptranslate iframe,
        .VIpgJd-ZVi9od-ORHb-OEVmcd {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        #google_translate_element,
        .goog-te-gadget {
            display: none !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-color) url('../bg-waves.svg') no-repeat center top;
            background-size: 100% auto;
            background-attachment: fixed;
            color: var(--text-color);
            overflow-x: hidden;
            transition: var(--transition);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .brand {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        p {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            text-align: justify;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo img {
            height: 60px;
            width: auto;
            background: white;
            border-radius: 8px;
            padding: 4px 10px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--elton-red);
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 200px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: block;
            color: var(--primary-blue);
            text-decoration: none;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #eee;
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        .dropdown a:hover {
            color: var(--elton-red);
            padding-left: 5px;
        }

        .btn-client {
            background: var(--elton-red);
            color: #ffffff !important;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .btn-client:hover {
            transform: translateY(-2px);
            background: #c90036;
            box-shadow: 0 6px 20px rgba(229, 0, 61, 0.35);
        }

        /* --- HERO SECTION --- */
        #hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        #hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 800px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-align: center;
            opacity: 0.9;
        }

        /* --- SECTIONS --- */
        section {
            padding: 100px 10%;
            position: relative;
        }

        .vibrant-bg {
            background: linear-gradient(135deg, #1a73b5 0%, #0d4f82 100%);
            color: white;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--elton-red);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(5px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--elton-blue);
            box-shadow: 0 12px 30px rgba(26, 115, 181, 0.15);
        }

        .card icon-box {
            color: var(--elton-red);
            margin-bottom: 20px;
        }

        /* --- CHAT WIDGET --- */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .chat-window.active {
            display: flex !important;
        }

        .control-group {
            margin-bottom: 20px;
        }

        .control-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .color-inputs {
            display: flex;
            gap: 10px;
        }

        input[type="color"] {
            border: none;
            width: 100%;
            height: 35px;
            cursor: pointer;
            border-radius: 5px;
        }

        .btn-reset {
            width: 100%;
            padding: 10px;
            border: none;
            background: #eee;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }

        .btn-reset:hover {
            background: #ddd;
        }

        /* --- FOOTER --- */
        footer {
            background: #001021;
            color: white;
            padding: 80px 10%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 2rem;
            color: var(--elton-red);
            margin-bottom: 20px;
        }

        .footer-links h4 {
            margin-bottom: 25px;
            color: var(--elton-red);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .btn-footer-map {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--elton-red);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 6px;
            margin-top: 20px;
            border: none;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .btn-footer-map:hover {
            background: #c90036;
        }

        /* --- UTILS --- */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

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

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        header .translate {
            position: absolute;
            top: 20px;
            right: 5%;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes heroTextIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-slide {
            display: none;
            text-align: center;
            width: 100%;
        }

        .hero-slide.active {
            display: block;
            text-align: center;
        }

        .icon-box {
            transition: var(--transition);
            animation: float 4s ease-in-out infinite;
        }

        .card:hover .icon-box {
            transform: scale(1.2) rotate(5deg);
            animation-play-state: paused;
        }

        /* ─── HAMBURGER MENU ─── */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1100;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: white;
            border-radius: 3px;
            transition: all 0.35s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(26, 115, 181, 0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            overflow-y: auto;
            padding: 100px 20px 40px;
        }

        .mobile-nav-overlay.active {
            display: flex;
        }

        .mobile-nav-overlay a {
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 700;
            font-family: 'Ubuntu', sans-serif;
            transition: 0.3s;
            text-align: center;
        }

        .mobile-nav-overlay a:hover {
            color: var(--elton-red);
        }

        .mobile-nav-overlay .mobile-divider {
            width: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
        }

        .mobile-nav-overlay .mobile-section-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            section {
                padding: 80px 5% !important;
            }

            .section-title {
                font-size: 2rem !important;
            }

            #carrieres>div>div:first-child {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            #assistance .grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 4%;
                height: 70px !important;
            }

            .logo img {
                height: 44px !important;
            }

            .nav-links {
                display: none !important;
            }

            .hamburger {
                display: flex;
            }

            nav>a.hover-scale {
                display: none !important;
            }

            nav>.translate {
                display: none !important;
            }

            .btn-client {
                padding: 6px 14px !important;
                font-size: 0.75rem !important;
            }

            section {
                padding: 60px 4% !important;
            }

            .section-title {
                font-size: 1.7rem !important;
            }

            .grid {
                grid-template-columns: 1fr !important;
            }

            .footer-grid {
                grid-template-columns: 1fr !important;
            }

            .footer-bottom-bar {
                flex-direction: column !important;
                gap: 15px !important;
                text-align: center !important;
            }

            #carrieres>div>div:first-child {
                grid-template-columns: 1fr !important;
            }

            .job-item {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 15px !important;
            }

            .job-item a.btn-client {
                width: 100% !important;
                text-align: center !important;
            }

            div[style*="height: 55vh"] {
                min-height: 300px !important;
                height: 40vh !important;
            }

            #sticky-assistance-container {
                bottom: 90px;
                right: 18px;
            }

            #assistance-text {
                display: none;
            }

            #btn-assistance {
                padding: 15px;
                border-radius: 50%;
            }

        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.4rem !important;
            }

            section {
                padding: 40px 4% !important;
            }

            .card {
                padding: 20px !important;
            }
        }