
        :root {
            --primary-blue: #1e3a8a;
            --secondary-orange: #D4941E;
            --gold-orange: #D4941E;
            --dark-gray: #1f2937;
            --light-gray: #f8fafc;
            --gold: #D4941E;
            --success-green: #10b981;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --brand-gold: #D4941E;
            --brand-gold-hover: #B8821A;
        }

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

        [dir="rtl"] {
            direction: rtl;
            text-align: right;
        }

        [dir="ltr"] {
            direction: ltr;
            text-align: left;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            line-height: 1.6;
            background: #0a0a0a;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated Background with Particles */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(59, 130, 246, 0.6);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-10vh) translateX(100px);
                opacity: 0;
            }
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
            animation: bgPulse 8s ease-in-out infinite alternate;
        }

        @keyframes bgPulse {
            0% {
                opacity: 0.4;
                transform: scale(1) rotate(0deg);
            }

            100% {
                opacity: 0.8;
                transform: scale(1.1) rotate(5deg);
            }
        }

        /* Header with Glassmorphism */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.1);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            white-space: nowrap;
            height: 60px;
        }


        @keyframes logoFloat {

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

            50% {
                transform: translateY(-5px) rotateY(180deg);
            }
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-orange);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .contact-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .lang-toggle {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .lang-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
        }

        .nav-contact-btn {
            background: #D4941E;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid transparent;
            animation: contactPulse 2s ease-in-out infinite;
        }

        @keyframes contactPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
            }
        }

        .nav-contact-btn:hover {
            background: #D4941E;
            transform: scale(1.05);
            animation: none;
            box-shadow: 0 5px 25px rgba(249, 115, 22, 0.5);
        }

        /* Quick Contact Strip */
        .quick-contact {
            background: #D4941E;
            padding: 1rem 0;
            position: relative;
            overflow: hidden;
        }

        .quick-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: quickContactShine 3s ease-in-out infinite;
        }

        @keyframes quickContactShine {
            0% {
                left: -100%;
            }

            50% {
                left: 100%;
            }

            100% {
                left: -100%;
            }
        }

        .quick-contact-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: white;
            font-weight: 600;
        }

        .contact-item i {
            font-size: 1.2rem;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            transform: scale(1.05);
        }

        /* Enhanced Categories Section */
        .categories {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.9);
            position: relative;
            overflow: hidden;
        }

        .categories::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 49%, rgba(59, 130, 246, 0.03) 50%, transparent 51%);
            background-size: 40px 40px;
            animation: backgroundMove 20s linear infinite;
        }

        @keyframes backgroundMove {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 40px 40px;
            }
        }

        .categories-container {
            width: 100%;
            max-width: none;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 0 2rem;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #3b82f6, #D4941E);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
        }

        /* ✅ Grid corrigé en 5 colonnes */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            padding: 0 2rem;
            max-width: 1800px;
            margin: 0 auto;
        }

        /* ✅ Cards plus grandes */
        .category-card {
            position: relative;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            min-height: 380px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .category-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .category-card:hover::before {
            opacity: 1;
        }

        .category-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4);
            border-color: var(--secondary-orange);
        }

        .category-icon {
            font-size: 3rem;
            color: var(--secondary-orange);
            margin-bottom: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.2) rotate(5deg);
            color: white;
            text-shadow: 0 0 20px #D4941E;
        }

        .category-content {
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .category-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .category-card:hover h3 {
            color: var(--secondary-orange);
            transform: translateY(-5px);
        }

        .category-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        /* ✅ Bouton toujours visible */
        .category-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
            margin-top: auto;
        }

        .category-btn:hover {
            background: linear-gradient(135deg, var(--secondary-orange), var(--primary-blue));
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Floating Contact Buttons */
        .floating-contacts {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: floatingBounce 2s ease-in-out infinite;
            position: relative;
            cursor: pointer;
        }

        .floating-btn.phone {
            background: linear-gradient(135deg, #10b981, #059669);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        }

        .floating-btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .floating-btn.chat {
            background: linear-gradient(135deg, #1e3a8a, #D4941E);
            box-shadow: 0 10px 30px #D4941E;
        }

        @keyframes floatingBounce {

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

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

        .floating-btn:hover {
            transform: scale(1.2);
            animation: none;
        }

        .floating-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .floating-btn:hover::after {
            opacity: 1;
        }

        /* Chat Modal */
        .chat-modal {
            position: fixed;
            bottom: 80px;
            /* au-dessus de l’icône */
            right: 20px;
            background: transparent;
            display: none;
            z-index: 10000;
        }

        /* Quand on ouvre */
        .chat-modal.show {
            display: block;
        }

        /* La boîte du formulaire */
        .chat-form {
            background: #fff;
            border-radius: 15px;
            padding: 1.5rem;
            width: 420px;
            /* plus large */
            max-width: 90vw;
            /* limite pour mobile */
            max-height: 85vh;
            /* éviter qu’elle déborde */
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideUp 0.3s ease;
        }

        /* Animation d’ouverture */
        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

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

        .chat-modal.show .chat-form {
            transform: translateY(0);
        }

        .chat-form h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid rgba(30, 58, 138, 0.2);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary-orange);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
            background: white;
        }

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

        .form-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-submit {
            flex: 1;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-cancel {
            flex: 0 0 auto;
            background: transparent;
            color: var(--dark-gray);
            border: 2px solid rgba(31, 41, 55, 0.3);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-cancel:hover {
            background: rgba(31, 41, 55, 0.1);
            border-color: var(--dark-gray);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            background: rgba(249, 115, 22, 0.1);
            color: var(--secondary-orange);
        }

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

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

        /* Stats Section */
        .stats {
            padding: 4rem 2rem;
            background: rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1 )" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
            border-color: var(--secondary-orange);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--secondary-orange);
            display: block;
            text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .about-container h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff, #3b82f6);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-container p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
             text-align: justify;
            text-justify: inter-word;


        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--secondary-orange);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-contact-item i {
            color: var(--secondary-orange);
            width: 20px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .contact-nav {
                flex-direction: column;
                gap: 0.5rem;
            }

            .nav-contact-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .hero {
                height: 50vh;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .quick-contact-content {
                flex-direction: column;
                gap: 1rem;
            }

            .floating-contacts {
                bottom: 1rem;
                right: 1rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .floating-btn::after {
                display: none;
            }

            .chat-form {
                width: 95%;
                padding: 1.5rem;
            }
        }

        /* RTL Support */
        [dir="rtl"] .nav-container {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .nav-menu {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .contact-nav {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .logo {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .floating-contacts {
            left: 2rem;
            right: auto;
        }

        [dir="rtl"] .floating-btn::after {
            left: 70px;
            right: auto;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 1s ease;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(59, 130, 246, 0.1);
            border-top: 4px solid var(--secondary-orange);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .contact-bar {
            background: var(--accent-orange);
            padding: 1rem 0;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .contact-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        .contact-items {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .brand-tagline {
            font-size: 0.75rem;
            color: var(--accent-orange);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .arabic-numbers {
            font-family: inherit;
            /* garde la police actuelle */
            unicode-bidi: isolate;
            /* empêche la substitution automatique des chiffres */
            direction: ltr;
            /* force l’affichage de gauche à droite pour les chiffres */
        }



        .hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* foncer un peu l'image pour lisibilité texte */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    z-index: 2;
    color: white;
    max-width: 600px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--brand-gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: white;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--brand-gold);
    color: white;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--brand-gold-hover);
}

.hero-nav {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2;
}

.hero-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}


@media (max-width: 768px) {
  .contact-items {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll-left 15s linear infinite;
    width: max-content; /* largeur selon contenu */
  }

  .contact-bar {
    overflow: hidden; /* cache ce qui dépasse */
    white-space: nowrap;
  }

  .contact-item {
    flex: 0 0 auto;
    margin-right: 30px;
  }

  /* Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}


/* ✅ Amélioration pour petits écrans (mobile / tablette) */
@media (max-width: 768px) {
    .about-container p {
        text-align: left;        /* 👈 Texte aligné à gauche sur mobile */
        text-justify: auto;
        line-height: 1.7;
    }
}


/* HERO FULL WIDTH */
.hero-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-swiper {
    width: 100vw;
    height: 640px;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Heights */
@media (max-width: 1024px) {
    .hero-swiper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 280px;
    }
}


