  :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --neon-blue: #00d4ff;
            --neon-purple: #b537f2;
            --neon-pink: #ff006e;
            --neon-green: #39ff14;
            --neon-orange: #ff9500;
            --dark-bg: #0a0a0a;
            --glass-bg: rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            background: var(--dark-bg);
            color: white;
            overflow-x: hidden;
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

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

        .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .logo-text {
        display: none; /* Cache complètement le texte */
        /* Ou pour une transition douce : */
        /* opacity: 0;
        width: 0;
        overflow: hidden; */
    }
    
    .logo img {
        height: 40px; /* Ajustez si nécessaire */
    }
}

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

        .nav-item a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 0.8rem 1.2rem;
            transition: all 0.3s ease;
            border-radius: 25px;
        }

        .nav-item a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-item a:hover::before {
            width: 80%;
        }

        .nav-item a:hover {
            color: var(--neon-blue);
            background: rgba(0, 212, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(181, 55, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-title {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            animation: glow 2s ease-in-out infinite alternate;
            line-height: 1.1;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
            }
            to {
                text-shadow: 0 0 40px rgba(181, 55, 242, 0.8), 0 0 60px rgba(181, 55, 242, 0.4);
            }
        }

        .hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: white;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 3px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .btn-primary:hover {
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
        }

        .btn-secondary:hover {
            background: var(--neon-pink);
            box-shadow: 0 20px 50px rgba(255, 0, 110, 0.6);
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 8s ease-in-out infinite;
            filter: blur(1px);
        }

        .orb1 {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .orb2 {
            width: 90px;
            height: 90px;
            background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
            top: 65%;
            right: 12%;
            animation-delay: -3s;
        }

        .orb3 {
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
            bottom: 15%;
            left: 15%;
            animation-delay: -6s;
        }

        .orb4 {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
            top: 25%;
            right: 25%;
            animation-delay: -1.5s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg); 
            }
            25% { 
                transform: translateY(-30px) translateX(20px) rotate(90deg); 
            }
            50% { 
                transform: translateY(-10px) translateX(-15px) rotate(180deg); 
            }
            75% { 
                transform: translateY(20px) translateX(25px) rotate(270deg); 
            }
        }

        /* Section Styles */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
            border-radius: 2px;
        }

        /* Experiences Section */
        .experiences {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            position: relative;
        }

        .experiences::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(181, 55, 242, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .experience-card {
            background: var(--glass-bg);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
        }

        .experience-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(181, 55, 242, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .experience-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
            border-color: rgba(0, 212, 255, 0.4);
        }

        .experience-card:hover::after {
            opacity: 1;
        }

        .experience-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            display: block;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .experience-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .experience-description {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .experience-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .experience-price {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--neon-green);
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        }

        .experience-duration {
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(181, 55, 242, 0.3));
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 1rem;
            border: 1px solid rgba(0, 212, 255, 0.5);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Gallery Section */
        .gallery {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .gallery-item {
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item::after {
            content: '';
            /* content: 'Voir plus'; */
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            opacity: 0;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Pricing Section */
        .pricing {
            background: var(--dark-bg);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: var(--glass-bg);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            transition: all 0.4s ease;
        }

        .pricing-card.featured {
            border: 3px solid var(--neon-purple);
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(181, 55, 242, 0.1), rgba(0, 212, 255, 0.1));
        }

        .pricing-card.featured::before {
            content: '⭐ POPULAIRE ⭐';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
            padding: 0.8rem 2.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(181, 55, 242, 0.4);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--neon-green);
            margin-bottom: 2.5rem;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.8rem 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--neon-green);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.3rem;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #16213e 0%, #0c0c0c 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-right: 2rem;
            color: var(--neon-blue);
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            color: var(--neon-blue);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .contact-form {
            background: var(--glass-bg);
            backdrop-filter: blur(25px);
            padding: 3.5rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--neon-purple);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .form-control {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* Offres Section */
        .offres {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0c0c0c 100%);
        }

        .offres-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .offre-card {
            background: var(--glass-bg);
            backdrop-filter: blur(25px);
            border-radius: 25px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .offre-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-orange), var(--neon-pink));
        }

        .offre-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 149, 0, 0.3);
        }

        .offre-badge {
            background: linear-gradient(45deg, var(--neon-orange), var(--neon-pink));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .offre-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--neon-orange);
            text-transform: uppercase;
        }

        .offre-description {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .offre-details {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
        }

        .offre-detail {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .offre-detail strong {
            color: var(--neon-green);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .social-links a {
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 50%;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            color: var(--neon-blue);
            transform: scale(1.2) translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 3rem;
                transition: right 0.4s ease;
                gap: 1rem;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item a {
                font-size: 1.3rem;
                padding: 1rem 2rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .btn {
                width: 280px;
            }

            .experiences-grid,
            .pricing-grid,
            .offres-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.8rem;
            }

            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 80px 0;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .experiences-grid,
            .pricing-grid,
            .offres-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .experience-card,
            .pricing-card,
            .offre-card {
                padding: 2rem 1.5rem;
            }

            .btn {
                width: 260px;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Smooth Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s ease;
        }

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

        .reveal.slide-left {
            transform: translateX(-60px);
        }

        .reveal.slide-left.active {
            transform: translateX(0);
        }

        .reveal.slide-right {
            transform: translateX(60px);
        }

        .reveal.slide-right.active {
            transform: translateX(0);
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

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

        .loading-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 3rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 1.5s ease-in-out infinite;
        }

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

        /* Experiences Page Styles */
        .experiences-page {
            display: none;
            min-height: 100vh;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            padding-top: 100px;
        }

        .experiences-page.active {
            display: block;
        }

        .page-header {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(181, 55, 242, 0.1));
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .page-title {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 4rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .filter-section {
            padding: 3rem 0;
            text-align: center;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            border-color: var(--neon-blue);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .experiences-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            padding: 2rem 0;
        }
.back-btn {
            position: fixed;
            top: 100px;
            left: 2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-btn:hover {
            background: var(--neon-blue);
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
        }

        .experiences-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            padding: 2rem 0;
        }


       .experience-icon {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px; /* limite sur grands écrans */
    height: auto;     /* conserve le ratio */
    aspect-ratio: 5/3; /* remplace la hauteur fixe par un ratio */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Zoom au survol */
.experience-card:hover .experience-icon {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

/* Tablette */
@media (max-width: 992px) {
    .experience-icon {
        max-width: 400px;
        aspect-ratio: 4/3;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .experience-icon {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
}


@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .filter-section {
        gap: 0.8rem;
    }

    .experience-icon {
        max-width: 400px;
        aspect-ratio: 4/3;
    }

    .experience-title {
        font-size: 1.6rem;
    }

    .experience-description {
        font-size: 1rem;
    }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {
    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .filter-section {
        flex-direction: column;
        align-items: center;
    }

    .filter-section button {
        width: 100%;
        max-width: 300px;
        font-size: 0.95rem;
    }

    .experiences-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-icon {
        max-width: 100%;
        aspect-ratio: 16/9;
    }

    .experience-title {
        font-size: 1.4rem;
    }

    .experience-description {
        font-size: 0.95rem;
    }
}



@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

/* -------- MOBILE -------- */
@media (max-width: 600px) {
    .hero-content {
        padding: 3rem 1rem;
    }

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

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

    .hero-content .btn-primary {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .loading img {
        width: 100px;
        height: 100px;
    }

    .loading p {
        font-size: 1.1rem;
    }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {
    .loading {
        padding: 1.5rem;
    }

    .loading img {
        width: 80px;
        height: 80px;
    }

    .loading p {
        font-size: 1rem;
    }
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9; /* ou 4/3 selon ton design */
    object-fit: cover;
    transition: transform 0.4s ease;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease;
    background: #000;
}

.video-wrapper, .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-wrapper {
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: transform 0.3s ease;
}

.play-button svg {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:hover .video-thumbnail {
    filter: brightness(0.8);
}

.gallery-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox */
.youtube-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.youtube-lightbox iframe {
    width: 90%;
    height: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .play-button {
        width: 50px;
        height: 35px;
    }
    
    .youtube-lightbox iframe {
        width: 95%;
        height: auto;
        max-height: 60%;
    }
}