
        /* Reset amélioré */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: #fcfaf7;
            color: #333;
            line-height: 1.6;
            transition: 0.4s;
            overflow-x: hidden;
        }

        h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: #b2b9bf;
            font-weight: 700;
        }

        /* Header luxueux */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(
268deg, #826515 0%, #d4b24f 20%);
            padding: 6px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: 0.3s;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(245, 208, 108, 0.3);
        }

        .logo {
            height: 85px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            transition: 0.3s;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #f5d06c;
            transition: 0.3s;
        }

        nav ul li a:hover {
            color: #f5d06c;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* Contrôles améliorés */
        .controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        select, .switch {
            background: transparent;
            border: 1px solid rgba(245, 208, 108, 0.3);
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            color: #fff;
            transition: 0.3s;
        }

        select:hover, .switch:hover {
            background: rgba(245, 208, 108, 0.1);
        }

        select option {
            background: #1a1a1a;
            color: #fff;
        }

        /* Hero section luxueuse */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('0.jpg') no-repeat center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeIn 2s ease;
            max-width: 800px;
        }

        .hero-logo {
            height: 120px;
            margin: 0 auto 30px;
            display: block;
        }

        .hero h2 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            margin-bottom: 20px;
            color: #f5d06c;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            letter-spacing: 1.5px;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .btn {
            background: linear-gradient(135deg, #f5d06c, #d4b24f);
            color: #000;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
            transition: all 0.4s;
            box-shadow: 0 5px 15px rgba(245, 208, 108, 0.4);
            border: none;
            cursor: pointer;
            font-family: 'Playfair Display', serif;
        }

        .btn:hover {
            background: linear-gradient(135deg, #d4b24f, #c19b3c);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 208, 108, 0.5);
        }

        /* Sections améliorées */
        section {
            padding: 100px 10%;
            text-align: center;
            transition: 0.3s;
            position: relative;
        }

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

        section h3 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        section h3:after {
            content: "";
            display: block;
            width: 80px;
            height: 2px;
            margin: 15px auto;
            background: linear-gradient(90deg, #f5d06c, #d4b24f);
        }

        section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Cartes de services */
        .services-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .service-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: 0.4s;
            position: relative;
            top: 0;
        }

        .service-card:hover {
            top: -10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-content p {
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* Section Parallax améliorée */
        .parallax {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            padding: 150px 10%;
        }

        .parallax::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
        }

        .parallax .content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Nouveau Carousel Automatique */
        .carousel-section {
            padding: 100px 5%;
            background: #f8f8f8;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 50px auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            min-width: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            text-align: center;
        }

        .carousel-caption h4 {
            color: #f5d06c;
            margin-bottom: 10px;
        }

        .carousel-nav {
            position: absolute;
            bottom: 60px; /* Ajusté pour laisser de l'espace au texte */
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #f5d06c;
            transform: scale(1.3);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(245, 208, 108, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            color: #000;
            font-size: 1.2rem;
        }

        .carousel-btn:hover {
            background: #f5d06c;
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        /* Footer amélioré */
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto 40px;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h4 {
            color: #f5d06c;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h4:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #f5d06c;
        }

        .footer-section p {
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-section ul li a:hover {
            color: #f5d06c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
            margin-left: -15px;
        }

        .social-icons a {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #f5d06c;
            color: #000;
            transform: translateY(-3px);
        }

        .footer-logo {
            height: 80px;
            margin: 0 auto 30px;
            display: block;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
        }

        /* Dark mode amélioré */
        body.dark {
            background: #0a0a0a;
            color: #e0e0e0;
        }

        body.dark header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid rgba(245, 208, 108, 0.2);
        }

        body.dark nav ul li a {
            color: #e0e0e0;
        }

        body.dark .service-card {
            background: #1a1a1a;
            color: #e0e0e0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.dark .service-card h4 {
            color: #f5d06c;
        }

        body.dark select, body.dark .switch {
            color: #e0e0e0;
            border: 1px solid rgba(245, 208, 108, 0.2);
        }

        body.dark .carousel-section {
            background: #121212;
        }

        body.dark .video-overlay {
            background: linear-gradient(135deg, rgba(130, 101, 21, 0.2), rgba(245, 208, 108, 0.2));
        }

        /* Animation keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes golden-glow {
            0% {
                box-shadow: 0 0 10px rgba(245, 208, 108, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(245, 208, 108, 0.8);
            }
           100% {
                box-shadow: 0 0 10px rgba(245, 208, 108, 0.5);
            }
        }

        /* Navigation responsive améliorée */
        .burger {
            display: none;
            font-size: 1.6rem;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
        }

        @media (max-width: 900px) {
            nav ul {
                display: none;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.98);
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 250px;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                z-index: 1000;
                transition: 0.4s;
                transform: translateX(100%);
            }
            nav ul.show {
                transform: translateX(0);
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            .burger {
                display: block;
            }
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 1.8rem;
                color: #fff;
                cursor: pointer;
            }
            
            .logo {
                height: 50px;
            }
            
            .hero-logo {
                height: 100px;
            }

            .carousel-item img {
                height: 400px;
            }
            
            .carousel-nav {
                bottom: 50px; /* Ajustement pour mobile */
            }
        }

        @media (max-width: 600px) {
            .carousel-item img {
                height: 300px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-nav {
                bottom: 40px; /* Ajustement pour petits écrans */
            }
        }

        /* Scroll reveal amélioré */
        section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        section.reveal-visible {
            opacity: 1;
            transform: none;
        }

        /* Loading élégant */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: 0.5s;
        }

        .loading.hide {
            opacity: 0;
            pointer-events: none;
            display: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(245, 208, 108, 0.3);
            border-radius: 50%;
            border-top-color: #f5d06c;
            animation: spin 1s linear infinite;
        }

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

        /* Amélioration des sélecteurs */
        .select-wrapper {
            position: relative;
            display: inline-block;
        }

        .select-wrapper:after {
            content: "▼";
            font-size: 0.7rem;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #f5d06c;
            pointer-events: none;
        }

        /* Badge de luxe */
        .luxe-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f5d06c;
            color: #000;
            font-size: 0.8rem;
            padding: 5px 10px;
            border-radius: 3px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        /* Section Vidéo YouTube améliorée */
        .video-section {
            padding: 80px 5%;
            background: linear-gradient(to bottom, #f8f4eb, #fff);
        }

        .video-container {
            position: relative;
            max-width: 900px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* Ratio 16:9 */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(130, 101, 21, 0.3), rgba(245, 208, 108, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f5d06c, #d4b24f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 2.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #d4b24f, #c19b3c);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 208, 108, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(245, 208, 108, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(245, 208, 108, 0);
            }
        }

        .video-caption {
            margin-top: 25px;
            font-style: italic;
            color: #666;
            font-size: 1.1rem;
        }

        body.dark .video-caption {
            color: #ccc;
        }

        /* Direction RTL pour l'arabe */
        body[dir="rtl"] {
            text-align: right;
        }

        body[dir="rtl"] .footer-section,
        body[dir="rtl"] .footer-section ul {
            text-align: right;
        }

        body[dir="rtl"] .footer-section h4:after {
            left: auto;
            right: 0;
        }

        body[dir="rtl"] .select-wrapper:after {
            left: 12px;
            right: auto;
        }
        
        /* Ajustements pour le mode RTL */
        body[dir="rtl"] .carousel-btn.prev {
            left: auto;
            right: 20px;
        }
        
        body[dir="rtl"] .carousel-btn.next {
            right: auto;
            left: 20px;
        }
        
        body[dir="rtl"] .carousel-caption {
            text-align: right;
        }
        
        /* Correction pour les images en mode RTL */
        body[dir="rtl"] .carousel-track {
            direction: ltr; /* Force la direction pour que le carousel fonctionne correctement */
        }
        
        /* Ajustement pour la mention du père */
        .tribute {
            font-style: italic;
            margin-top: 20px;
            color: #826515;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 20px auto 0;
            line-height: 1.6;
        }}

