* {
            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: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--darker);
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .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: 800px;
            margin: 0 auto;
        }

        /* Content Sections */
        .content-section {
            padding: 6rem 8%;
        }

        .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;
        }

        .content-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            align-items: center;
        }

        .content-block.reverse {
            direction: rtl;
        }

        .content-block.reverse > * {
            direction: ltr;
        }

        .content-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .content-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
        }

        .content-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }

        .content-image:hover {
            transform: scale(1.05);
        }

        /* Grille d'images pour la section Introduction */
        .drone-images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .drone-images-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .drone-images-grid img:hover {
            transform: scale(1.05);
        }

        .full-width-video {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            margin: 4rem 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Drone Types Grid */
        .drone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .drone-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;
        }

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

        .drone-card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .drone-card-content {
            padding: 2rem;
        }

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

        .drone-card-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 8%;
            background: var(--dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 400px;
            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;
        }

        /* 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,
        .contact__form__message {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

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

        .contact__form__champ::placeholder,
        .contact__form__message::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact__form__message {
            resize: vertical;
            min-height: 150px;
        }

        .contact__form__boutton {
            width: 100%;
            padding: 1rem 2rem;
            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(0, 0, 0, 0.3);
            background: var(--dark);
            color: var(--white);
        }

        /* Footer */
        footer {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 3rem;
            padding: 3rem 8%;
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer__logo {
            max-width: 150px;
        }

        .footer__content {
            text-align: center;
        }

        .footer__content span {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer__content__link {
            color: #dacaa4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer__end__content {
            text-align: center;
            margin-bottom: 1rem;
        }

        .footer__end__content span {
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer__end div {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .footer__end__link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .footer__end__link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer__end__link svg {
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .navbar__toggle {
                display: flex;
            }
            
            .navbar__links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(13, 27, 43, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 100px 40px;
                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);
            }

            .content-block,
            .content-block.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

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

            .drone-images-grid {
                grid-template-columns: 1fr;
            }

            .gallery-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;
            }

            .content-section,
            .gallery-section {
                padding: 4rem 5%;
            }

            .full-width-video {
                height: 400px;
            }
        }
    
        /* SVG Icons */
        .emoji-icon {
            display: inline-block;
            vertical-align: middle;
            margin-right: 0.3rem;
        }