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

        :root {
            --primary: #5765ff;
            --secondary: #ba0808;
            --dark: #0d1b2b;
            --darker: #0a1420;
            --light: #eceff3;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker);
            color: var(--white);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: transparent;
            transition: all 0.3s ease;
            padding: 20px 0;
        }

        header.scrolled {
            background: rgba(13, 27, 43, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .navbar__logo {
            height: 100px;
            width: 100px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .navbar__logo:hover {
            transform: scale(1.05);
        }

        header.scrolled .navbar__logo {
            height: 80px;
            width: 80px;
        }

        .navbar__links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .navbar__link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar__link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .navbar__link:hover, .navbar__link.active {
            color: var(--primary);
        }

        .navbar__link:hover::after, .navbar__link.active::after {
            width: 100%;
        }

        .navbar__toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .navbar__toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 3px 0;
            transition: all 0.3s ease;
            display: block;
        }

        /* Hero Section */
        .page-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../Images/photo/_MG_1065-Modifier-1.jpg') center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .page-hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }

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

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Section */
        .services-section {
            padding: 6rem 8%;
            background: var(--darker);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(87, 101, 255, 0.3);
        }

        .service-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .service-video {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-content {
            padding: 2rem;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 2rem;
        }

        .service-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .service-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 0.8rem 2rem;
            border: 2px solid var(--primary);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateX(5px);
        }

        /* Gallery Intro Section - FORMAT 4/3 avec 3 colonnes */
        .gallery-intro-section {
            padding: 4rem 8%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
        }

        .gallery-intro-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-intro-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            aspect-ratio: 4/3;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

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

        .gallery-intro-item img,
        .gallery-intro-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gallery Section - Vidéos YouTube */
        .gallery-section {
            padding: 6rem 8%;
            background: var(--darker);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            aspect-ratio: 16/9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

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

        .gallery-item iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Projects Section - Vidéos YouTube */
        .projects-section {
            padding: 6rem 8%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16/9;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(87, 101, 255, 0.4);
        }

        /* Style pour les iframes YouTube dans les projets */
        .project-card iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Section */
        .contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 6rem 8%;
            background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
        }

        .contact__text__title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .contact__text__p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact__text__link {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact__link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            color: var(--white);
        }

        .contact__link:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

        .contact__link:hover svg {
            color: var(--primary);
        }

        .contact__link svg {
            width: 24px;
            height: 24px;
            transition: color 0.3s ease;
        }

        .contact__form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact__form__text {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact__form__champ {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact__form__champ:focus {
            outline: none;
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact__form__message {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .contact__form__message:focus {
            outline: none;
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact__form__boutton {
            width: 100%;
            padding: 1rem;
            background: var(--white);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact__form__boutton:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 8%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .footer__logo {
            height: 100px;
            width: 100px;
            object-fit: contain;
        }

        .footer__content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer__content__link {
            color: var(--primary);
            text-decoration: none;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .footer__content__link:hover {
            color: var(--white);
        }

        .footer__end {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1.5rem;
        }

        .footer__end__content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: right;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer__end__link {
            display: inline-flex;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer__end__link:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer__end div:last-child {
            display: flex;
            gap: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar__toggle {
                display: flex;
            }

            .navbar__links {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                width: 280px;
                background: rgba(13, 27, 43, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                padding: 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                gap: 15px;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .navbar__links.active {
                right: 0;
            }
            
            .navbar__link {
                color: var(--white) !important;
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .services-grid,
            .projects-grid,
            .gallery-grid,
            .gallery-intro-grid {
                grid-template-columns: 1fr;
            }

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

            footer {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 5%;
            }

            header {
                padding: 15px 0;
            }

            .navbar__logo {
                height: 80px;
                width: 80px;
            }

            header.scrolled .navbar__logo {
                height: 70px;
                width: 70px;
            }

            .services-section,
            .gallery-section,
            .gallery-intro-section,
            .projects-section {
                padding: 4rem 5%;
            }
        }

        /* Responsive pour tablettes */
        @media (min-width: 768px) and (max-width: 1024px) {
            .gallery-grid,
            .gallery-intro-grid,
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
