
        /* ==========================================
           VARIABLES & RESET
           ========================================== */
        :root {
            --primary: #044738;      /* Émeraude Très Profond */
            --primary-light: #0d9488; 
            --accent: #b48b3e;       /* Or Métallique Authentique */
            --accent-glow: #eab308;
            --cream: #fbf9f6;        /* Fond Parchemin Très Clair */
            --white: #ffffff;
            --dark: #1a202c;
            --gray: #64748b;
            --radius: 12px;
            --shadow-card: 0 10px 30px -5px rgba(4, 71, 56, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: var(--cream);
            line-height: 1.8;
            overflow-x: hidden;
            position: relative;
        }

        /* Titres avec police authentique */
        h1, h2, h3, h4, .logo-text, .subtitle {
            font-family: 'Amiri', serif;
        }

        h1 { letter-spacing: 1px; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* ==========================================
           ARRIÈRE-PLAN ISLAMIQUE ANIMÉ
           ========================================== */
        .islamic-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.04;
            /* Motif géométrique CSS style moucharabieh */
            background-image: 
                radial-gradient(var(--primary) 2px, transparent 2.5px),
                radial-gradient(var(--primary) 2px, transparent 2.5px);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px;
            animation: movePattern 120s linear infinite;
        }

        @keyframes movePattern {
            0% { background-position: 0 0, 20px 20px; }
            100% { background-position: 40px 40px, 60px 60px; }
        }

        /* Ornementation */
        .ornament-top {
            position: absolute;
            top: -20px; left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 40px;
            background: url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 40 C 60 40 40 0 0 0 L 200 0 C 160 0 140 40 100 40' fill='%23b48b3e' opacity='0.2'/%3E%3C/svg%3E") no-repeat center;
        }

        /* ==========================================
           NAVIGATION
           ========================================== */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 2px solid var(--accent);
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 90px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--primary);
        }

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            display: flex;
            flex-direction: column;
        }

        .logo-text span {
            font-size: 14px;
            color: var(--accent);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            letter-spacing: 2px;
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '♦';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .nav-links a:hover { color: var(--accent); }
        .nav-links a:hover::after { transform: translateX(-50%) scale(1); }

        .btn-nav {
            background: linear-gradient(135deg, var(--accent) 0%, #d69e2e 100%);
            color: white !important;
            padding: 12px 28px;
            border-radius: 4px;
            border: 1px solid #d4af37;
            box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(214, 158, 46, 0.6);
        }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--primary); }

        /* ==========================================
           HERO SECTION
           ========================================== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            color: white;
            padding-top: 90px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(4, 71, 56, 0.4), rgba(4, 71, 56, 0.85));
            z-index: 0;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: -1;
            animation: slowZoom 30s infinite alternate;
        }

        @keyframes slowZoom {
            from { transform: scale(1.0); }
            to { transform: scale(1.15); }
        }

        .hero-content {
            max-width: 900px;
            padding: 40px;
            z-index: 1;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(4, 71, 56, 0.3);
            backdrop-filter: blur(8px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .hero-logo-large {
            width: 80px;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(180, 139, 62, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
            font-family: 'Amiri', serif;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            border: 1px solid #d4af37;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(180, 139, 62, 0.4); }

        .btn-white {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-white:hover {
            background: white;
            color: var(--primary);
        }

        /* ==========================================
           STATS SECTION
           ========================================== */
        .stats {
            background: white;
            padding: 60px 0;
            margin-top: -80px;
            position: relative;
            z-index: 10;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            border-bottom: 4px solid var(--accent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }
        
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -20px; top: 20%; height: 60%;
            width: 1px;
            background: #e2e8f0;
            display: none;
        }
        @media(min-width: 900px) { .stat-item:not(:last-child)::after { display: block; } }

        .stat-item h3 {
            font-size: 56px;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-item p {
            color: var(--gray);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        /* ==========================================
           SECTIONS COMMUNES
           ========================================== */
        .section { padding: 120px 0; position: relative; }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .subtitle {
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 3px;
            font-size: 16px;
            display: block;
            margin-bottom: 16px;
        }

        .section h2 { 
            font-size: 3.5rem; 
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-header::after {
            content: '❖';
            display: block;
            font-size: 30px;
            color: var(--accent);
            margin-top: 20px;
            opacity: 0.5;
        }

        /* ==========================================
           OFFRES (CARDS)
           ========================================== */
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .offer-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.5s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }

        .offer-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px -10px rgba(4, 71, 56, 0.25);
        }

        .card-img-wrapper {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .card-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .offer-card:hover .card-img-wrapper img { transform: scale(1.15); }

        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .card-content { 
            padding: 35px; 
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L20 20 M20 0 L0 20' stroke='%23f0f0f0' stroke-width='1'/%3E%3C/svg%3E");
            background-size: 100px 100px;
        }
        
        .offer-card h3 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .card-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin: 5px 0 25px;
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-family: 'Amiri', serif;
        }

        .card-price span { font-size: 16px; color: var(--gray); font-weight: 400; font-family: 'Montserrat', sans-serif; }

        .features-list {
            list-style: none;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #475569;
            font-size: 15px;
        }

        .features-list li i { color: var(--accent); width: 20px; }

        .btn-card {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
        }

        .btn-card:hover { background: var(--primary-light); }

        /* ==========================================
           SERVICES
           ========================================== */
        #services {
            background: linear-gradient(to bottom, transparent, rgba(6, 78, 59, 0.03));
        }

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

        .service-item {
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(10px);
            padding: 50px 30px;
            border-radius: var(--radius);
            transition: 0.4s;
            border: 1px solid rgba(255,255,255,0.5);
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: var(--accent);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin: 0 auto 30px;
            transition: 0.5s;
            position: relative;
        }
        
        .icon-box::after {
            content: '';
            position: absolute;
            top: -5px; left: -5px; right: -5px; bottom: -5px;
            border: 1px dashed var(--primary);
            border-radius: 50%;
            animation: spin 10s linear infinite;
        }

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

        .service-item:hover .icon-box {
            background: var(--primary);
            color: var(--accent);
            border-color: var(--primary);
        }

        .service-item h3 { font-size: 24px; margin-bottom: 15px; }

        /* ==========================================
           TÉMOIGNAGES AVEC PROFONDEUR
           ========================================== */
        #temoignages {
            background: url('https://images.unsplash.com/photo-1542385157-b0d668853f2c?q=80&w=2000&auto=format') no-repeat center center fixed;
            background-size: cover;
            position: relative;
        }

        #temoignages::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(4, 71, 56, 0.9);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            text-align: left;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '“';
            font-family: serif;
            font-size: 100px;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: 20px;
        }

        /* ==========================================
           CONTACT & FOOTER
           ========================================== */
        .contact-section {
            background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
            color: white;
            border-radius: 30px;
            margin: 0 24px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            display: flex;
            flex-wrap: wrap;
        }
        
        .contact-image-side {
            flex: 1;
            min-width: 300px;
            background: url('https://images.unsplash.com/photo-1596522509141-863152648719?q=80&w=1000&auto=format') center/cover;
            position: relative;
            min-height: 400px;
        }
        
        .contact-image-side::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(4, 71, 56, 0.4);
        }

        .contact-content-side {
            flex: 1.5;
            padding: 80px 60px;
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: 0.3s;
        }
        
        .info-row:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent);
        }

        .info-icon {
            width: 50px; height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(180, 139, 62, 0.5);
        }

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 20px;
            color: var(--dark);
            margin-top: 40px;
        }

        .form-control {
            border: 2px solid #f1f5f9;
            background: #f8fafc;
            padding: 16px;
            font-size: 15px;
        }
        
        .form-control:focus {
            border-color: var(--accent);
            background: white;
            box-shadow: 0 0 0 4px rgba(180, 139, 62, 0.1);
        }

        /* Footer */
        footer {
            background: #022c22;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .footer-logo {
            width: 100px;
            margin-bottom: 20px;
            border-radius: 10px;
            background: white;
            padding: 5px;
        }

        /* Animation Scroll */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

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

        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        
        /* Mobile */
        @media (max-width: 968px) {
            .nav-toggle { display: block; font-size: 28px; }
            .nav-links {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 40px 20px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                clip-path: circle(0% at 100% 0);
                transition: clip-path 0.5s ease-in-out;
            }
            .nav-links.active { clip-path: circle(140% at 100% 0); }
            
            .hero h1 { font-size: 2.8rem; }
            .contact-section { flex-direction: column; }
            .contact-image-side { min-height: 200px; }
            .contact-content-side { padding: 40px 20px; }
        }

        /* Floating WhatsApp */
        .floating-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1001;
            transition: 0.3s;
            border: 2px solid white;
        }
        
        .floating-wa:hover { transform: scale(1.1) rotate(10deg); }