/* Variables CSS modernes */
        :root {
            --primary-gold: #D4AF37;
            --primary-dark: #1a1a1a;
            --secondary-blue: #2c5f6f;
            --accent-light: #F7F1E5;
            --text-dark: #2c2c2c;
            --white: #ffffff;
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c5f6f 100%);
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Performance optimizations */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--accent-light);
            overflow-x: hidden;
        }

        /* Hero moderne avec gradient classe et sombre */
        .hero-modern {
            background: 
                linear-gradient(135deg, 
                    rgba(0, 0, 0, 0.85) 0%,         /* Noir profond pour lisibilité */
                    rgba(26, 26, 26, 0.8) 30%,     /* Gris très foncé */
                    rgba(40, 40, 40, 0.7) 70%,     /* Gris foncé subtil */
                    rgba(0, 0, 0, 0.9) 100%        /* Noir élégant final */
                ),
                url('../images/dj_bg.jpg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
        }

        .hero-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="30" r="1.5" fill="%23D4AF37" opacity="0.3"/><circle cx="180" cy="60" r="1" fill="%23F4E4BC" opacity="0.4"/><circle cx="50" cy="150" r="0.8" fill="%23D4AF37" opacity="0.2"/><circle cx="150" cy="20" r="1.2" fill="%23C9A961" opacity="0.3"/><circle cx="100" cy="100" r="0.6" fill="%23D4AF37" opacity="0.5"/><circle cx="30" cy="170" r="1" fill="%23F4E4BC" opacity="0.3"/></svg>') repeat;
            animation: float 25s ease-in-out infinite, shimmer 15s ease-in-out infinite alternate;
            z-index: 1;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes shimmer {
            0% { opacity: 0.4; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Badge moderne */
        .hero-badge {
            background: var(--gradient-gold);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-soft);
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Titre moderne avec meilleur contraste */
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        
        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: #f8f9fa;
            opacity: 0.95;
            max-width: 600px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
        }

        /* Carousel Hero moderne */
        #header_carousel {
            position: relative;
            min-height: 200px;
            width: 100%;
            margin: 2rem 0;
        }

        #header_carousel .carousel-item {
            display: none;
            opacity: 0;
            transition: opacity 1s ease;
            text-align: center;
        }

        #header_carousel .carousel-item.active {
            display: block;
            opacity: 1;
        }

        #header_carousel .carousel-item h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            font-weight: 600;
            background: linear-gradient(135deg, #ffffff 0%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #header_carousel .carousel-item p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: #ffffff;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Boutons modernes */
        .btn-modern {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-smooth);
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-modern {
            background: var(--gradient-gold);
            color: white;
            box-shadow: var(--shadow-soft);
        }

        .btn-primary-modern:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
            color: white;
        }

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

        .btn-outline-modern:hover {
            background: white;
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Services modernes */
        .services-modern {
            padding: 100px 0;
            background: white;
        }

        .service-card-modern {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            border: 1px solid rgba(212, 175, 55, 0.1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: var(--transition-smooth);
        }

        .service-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .service-card-modern:hover::before {
            transform: scaleX(1);
        }

        .service-icon-modern {
            width: 80px;
            height: 80px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .service-icon-modern i {
            font-size: 2rem;
            color: white;
        }

        .service-image-modern {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 3px solid var(--primary-gold);
        }

        .service-image-modern img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .service-card-modern:hover .service-image-modern img {
            transform: scale(1.1);
        }

        /* Section titles modernes */
        .section-title-modern {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 600;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle-modern {
            font-size: 1.2rem;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0.8;
        }

        /* Optimisations responsive */
        @media (max-width: 768px) {
            .hero-modern {
                min-height: 90vh;
                padding: 2rem 0;
                background-attachment: scroll; /* Fix pour iOS */
            }
            
            .hero-badge {
                font-size: 1.2rem !important; /* Plus grand sur mobile */
                padding: 1rem 2rem !important; /* Plus de padding */
                margin-bottom: 2rem;
                box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
                border: 2px solid rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(10px);
                animation: mobileGlow 2s ease-in-out infinite alternate;
            }
            
            .services-modern {
                padding: 60px 0;
            }
            
            .service-card-modern {
                padding: 2rem;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-badge {
                font-size: 1.1rem !important;
                padding: 0.9rem 1.8rem !important;
                display: block;
                width: 95%;
                margin: 0 auto 2rem auto;
                text-align: center;
                line-height: 1.4;
            }
            
            .hero-title {
                font-size: 2.2rem !important;
                margin-bottom: 1rem;
            }
        }

        @keyframes mobileGlow {
            0% { 
                box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
                transform: scale(1);
            }
            100% { 
                box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
                transform: scale(1.02);
            }
        }

        /* Optimisation section drone mobile */
        @media (max-width: 768px) {
            #drone-promo {
                padding: 3rem 0 !important;
            }
            
            #drone-promo .drone-video-container video {
                height: 250px !important;
                border-radius: 15px !important;
            }
            
            #drone-promo .badge {
                font-size: 1rem !important;
                padding: 0.75rem 1.5rem !important;
                margin-bottom: 1.5rem !important;
                display: block;
                text-align: center;
                animation: mobileGlow 2s ease-in-out infinite alternate;
            }
            
            #drone-promo .display-5 {
                font-size: 2.2rem !important;
                text-align: center;
                margin-bottom: 2rem !important;
            }
            
            #drone-promo .lead {
                font-size: 1.1rem !important;
                text-align: center;
                margin-bottom: 2rem !important;
            }
            
            #drone-promo .col-lg-6 {
                margin-bottom: 2rem;
            }
            
            #drone-promo .btn-outline-warning {
                width: 100%;
                padding: 1rem;
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            #drone-promo .drone-video-container video {
                height: 200px !important;
                border-radius: 10px !important;
            }
            
            #drone-promo .display-5 {
                font-size: 1.8rem !important;
                line-height: 1.3;
            }
            
            #drone-promo .badge {
                font-size: 0.9rem !important;
                padding: 0.6rem 1.2rem !important;
            }
            
            #drone-promo ul {
                columns: 1 !important;
                text-align: center;
            }
            
            #drone-promo li {
                margin-bottom: 0.8rem !important;
            }
        }

        /* Optimisation carte drone mobile */
        @media (max-width: 768px) {
            .drone-card-mobile {
                order: -1 !important; /* Place en premier */
                margin-bottom: 3rem !important;
                box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3) !important;
                transform: scale(1.02);
                animation: droneCardPulse 3s ease-in-out infinite alternate;
            }
            
            .drone-card-mobile .service-card-front {
                background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%) !important;
                border: 3px solid var(--primary-gold) !important;
            }
            
            .drone-card-mobile h3 {
                font-size: 1.4rem !important;
                text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            }
            
            .drone-badge-mobile {
                font-size: 1.1rem !important;
                padding: 0.5rem 1rem !important;
                background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
                color: #000 !important;
                border-radius: 20px !important;
                display: inline-block !important;
                animation: badgeShine 2s ease-in-out infinite alternate;
            }
        }

        @media (max-width: 480px) {
            .drone-card-mobile {
                margin-bottom: 2.5rem !important;
                transform: scale(1.01);
            }
            
            .drone-card-mobile h3 {
                font-size: 1.2rem !important;
            }
            
            .drone-badge-mobile {
                font-size: 1rem !important;
                padding: 0.4rem 0.8rem !important;
            }
        }

        @keyframes droneCardPulse {
            0% {
                box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
                transform: scale(1.02);
            }
            100% {
                box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5);
                transform: scale(1.03);
            }
        }

        @keyframes badgeShine {
            0% {
                background: linear-gradient(45deg, #ffd700, #ffed4e);
                transform: scale(1);
            }
            100% {
                background: linear-gradient(45deg, #ffed4e, #fff700);
                transform: scale(1.05);
            }
        }

        /* Amélioration des boutons CTA dans les cartes */
        .service-card-back .btn {
            background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%) !important;
            color: #000 !important;
            border: none !important;
            padding: 0.8rem 2rem !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            border-radius: 25px !important;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            position: relative !important;
            overflow: hidden !important;
            margin-top: 1rem !important;
            width: 100% !important;
        }

        .service-card-back .btn::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: left 0.6s ease;
        }

        .service-card-back .btn:hover {
            transform: translateY(-3px) scale(1.02) !important;
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6) !important;
            background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%) !important;
        }

        .service-card-back .btn:hover::before {
            left: 100%;
        }

        .service-card-back .btn:active {
            transform: translateY(-1px) scale(0.98) !important;
        }

        /* Boutons spécialisés par service */
        .service-card-back .btn[href*="vally"] {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa8a8 100%) !important;
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4) !important;
        }

        .service-card-back .btn[href*="vally"]:hover {
            background: linear-gradient(135deg, #ffa8a8 0%, #ff6b6b 100%) !important;
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6) !important;
        }

        .service-card-back .btn[href*="nomade"] {
            background: linear-gradient(135deg, #4ecdc4 0%, #7dd3fc 100%) !important;
            box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4) !important;
        }

        .service-card-back .btn[href*="nomade"]:hover {
            background: linear-gradient(135deg, #7dd3fc 0%, #4ecdc4 100%) !important;
            box-shadow: 0 15px 35px rgba(78, 205, 196, 0.6) !important;
        }

        .service-card-back .btn[href*="drone"] {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5) !important;
            animation: ctaGlow 2s ease-in-out infinite alternate;
        }

        .service-card-back .btn[href*="drone"]:hover {
            background: linear-gradient(135deg, #ffed4e 0%, #fff700 100%) !important;
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.7) !important;
        }

        @keyframes ctaGlow {
            0% {
                box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
            }
            100% {
                box-shadow: 0 12px 30px rgba(255, 215, 0, 0.8);
            }
        }

        /* Amélioration mobile des boutons CTA */
        @media (max-width: 768px) {
            .service-card-back .btn {
                padding: 1rem 1.5rem !important;
                font-size: 1.1rem !important;
                margin-top: 1.5rem !important;
            }
        }

        @media (max-width: 480px) {
            .service-card-back .btn {
                padding: 0.9rem 1.2rem !important;
                font-size: 1rem !important;
            }
        }

        /* Amélioration des indicateurs d'interaction */
        .hover-indicator {
            background: rgba(212, 175, 55, 0.1) !important;
            padding: 0.4rem 0.8rem !important;
            border-radius: 15px !important;
            border: 1px solid rgba(212, 175, 55, 0.3) !important;
            display: inline-block !important;
            font-weight: 500 !important;
            animation: indicatorPulse 2s ease-in-out infinite alternate;
        }

        .hover-indicator i {
            color: var(--primary-gold);
            animation: pointerWiggle 1.5s ease-in-out infinite;
        }

        @keyframes indicatorPulse {
            0% {
                background: rgba(212, 175, 55, 0.1);
                border-color: rgba(212, 175, 55, 0.3);
            }
            100% {
                background: rgba(212, 175, 55, 0.2);
                border-color: rgba(212, 175, 55, 0.5);
            }
        }

        @keyframes pointerWiggle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(-5deg); }
            75% { transform: scale(1.1) rotate(5deg); }
        }

        /* Amélioration des cartes 3D */
        .service-card-3d {
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card-3d:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .service-card-front {
            transition: all 0.3s ease;
        }

        .service-card-3d:hover .service-card-front {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* Indicateur visuel pour les cartes interactives */
        .service-card-3d::after {
            content: '↻';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-gold);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .service-card-3d:hover::after {
            opacity: 1;
            transform: rotate(180deg);
        }

        /* Mobile : Amélioration des cartes tactiles */
        @media (max-width: 768px) {
            .hover-indicator {
                font-size: 0.9rem !important;
                padding: 0.3rem 0.6rem !important;
            }

            .service-card-3d::after {
                opacity: 0.7;
                font-size: 12px;
                width: 25px;
                height: 25px;
            }

            .service-card-3d:hover::after {
                opacity: 1;
            }

            .hover-indicator i {
                font-size: 0.8rem;
            }
        }

        /* Animation d'entrée */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading optimisé */
        .loading-spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 3px solid var(--accent-light);
            border-top: 3px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

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

        /* ===== ANIMATIONS PREMIUM ===== */

        /* Typing Animation pour le titre - version simplifiée sans curseur */
        .typing-title {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 3s steps(20) 1s both;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        /* Curseur standard - supprimé le curseur personnalisé */

        /* Services Cards 3D Flip */
        .service-card-3d {
            perspective: 1000px;
            height: 400px;
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .service-card-3d:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front,
        .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .service-card-front {
            background: white;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .service-card-back {
            background: var(--gradient-gold);
            color: white;
            transform: rotateY(180deg);
        }

        .service-card-back h4 {
            color: white !important;
            margin-bottom: 1rem;
        }

        .service-card-back ul {
            list-style: none;
            padding: 0;
        }

        .service-card-back ul li {
            margin: 0.5rem 0;
            opacity: 0;
            animation: slideInUp 0.6s ease forwards;
        }

        .service-card-back ul li:nth-child(1) { animation-delay: 0.1s; }
        .service-card-back ul li:nth-child(2) { animation-delay: 0.2s; }
        .service-card-back ul li:nth-child(3) { animation-delay: 0.3s; }
        .service-card-back ul li:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Boutons magnétiques */
        .magnetic-btn {
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .magnetic-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .magnetic-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Audio player pour hover sounds */
        .service-audio {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            pointer-events: none;
        }

        /* Témoignages premium */
        .testimonials-premium {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .testimonial-card-premium {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 0 1rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
            animation: avatarFloat 3s ease-in-out infinite;
        }

        @keyframes avatarFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .stars-animated {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .star {
            color: #ddd;
            font-size: 1.5rem;
            margin: 0 2px;
            transition: color 0.3s ease;
        }

        .star.filled {
            color: var(--primary-gold);
            animation: starFill 0.5s ease forwards;
        }

        @keyframes starFill {
            0% {
                transform: scale(0);
                color: #ddd;
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
                color: var(--primary-gold);
            }
        }

        .quote-text {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: 100px;
            display: flex;
            align-items: center;
        }

        .typewriter-quote {
            display: block;
            max-width: 100%;
            word-wrap: break-word;
            line-height: 1.6;
            font-style: italic;
            position: relative;
        }

        .typewriter-cursor {
            display: inline-block;
            background-color: var(--primary-gold);
            width: 2px;
            height: 1.2em;
            animation: blinkCursor 1s infinite;
            margin-left: 2px;
        }

        @keyframes blinkCursor {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .testimonial-author {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .testimonial-author h6 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        /* Carousel infini pour témoignages */
        .testimonials-carousel {
            display: flex;
            animation: infiniteScroll 20s linear infinite;
        }

        .testimonials-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Responsive pour animations */
        @media (max-width: 768px) {
            .service-card-3d {
                height: 350px;
            }
            
            .typing-title {
                animation: none;
                border-right: none;
                white-space: normal;
            }
            
            .typing-title {
                animation: none;
                white-space: normal;
            }
        }

        /* Testimonials Grid System */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonials-grid .testimonial-card-premium {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .testimonials-grid .testimonial-card-premium:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .testimonials-grid .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonials-grid .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .testimonials-grid .testimonial-info h6 {
            margin: 0;
            font-weight: 600;
            color: #333;
        }

        .testimonials-grid .testimonial-info small {
            color: #666;
            font-size: 0.85rem;
        }

        .testimonials-grid .stars-rating {
            margin: 1rem 0;
        }

        .testimonials-grid .stars-rating .star {
            color: #ffc107;
            font-size: 1.2rem;
            margin-right: 0.2rem;
        }

        .testimonials-grid .stars-rating .star:not(.filled) {
            color: #e9ecef;
        }

        .testimonials-grid .testimonial-comment {
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .testimonials-grid .testimonial-card-premium {
                padding: 1.5rem;
            }
        }

@keyframes whatsapp-pulse {
        0% {
          box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
          box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
        }
        100% {
          box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
      }
      .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 150px;
        right: 30px;
        background-color: #25D366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 9998;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        animation: whatsapp-pulse 2s ease-in-out infinite;
      }
      .whatsapp-float:hover {
        background-color: #128C7E;
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
        animation: none;
      }
      .whatsapp-float i {
        color: #FFF;
      }
      @media screen and (max-width: 768px) {
        .whatsapp-float {
          width: 50px;
          height: 50px;
          bottom: 130px;
          right: 20px;
          font-size: 24px;
        }
      }

