:root {
    --primary-color: #FF8300;
    --secondary-color: #FF6B00;
    --text-color: #ffffff;
    --background-color: #0A1A2F;
    --dark-blue: #0A1A2F;
    --light-blue: #142942;
    --accent-orange: #FF8300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 26, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 26, 47, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo-container {
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.65) 0%, rgba(20, 41, 66, 0.65) 90%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.title-white {
    color: var(--text-color);
    display: block;
    margin-bottom: -0.4em;
}

.title-gradient {
    background-image: linear-gradient(120deg, 
        #FF8300 0%,
        #FF6B00 25%,
        #FFA500 50%,
        #FFD700 75%,
        #FFFFFF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
}

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

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 131, 0, 0.3);
}

.services {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background-color: var(--light-blue);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--dark-blue);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 131, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--dark-blue);
}

.about-reverse {
    background-color: var(--light-blue);
}

.about-reverse .about-content {
    order: 2;
}

.about-reverse .about-image {
    order: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
    background-image: url('img.jpg');
    background-size: auto;
    background-position: center;
    overflow: hidden;
}

.contact {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background: var(--light-blue);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 131, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--dark-blue);
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-blue);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.submit-button:hover {
    transform: translateY(-3px);
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-blue);
    color: var(--text-color);
    border-top: 1px solid rgba(255, 131, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

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

    .image-placeholder {
        height: 300px;
    }
}

/* Styles pour la page légale */
.legal-container {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 0 2rem;
    color: var(--text-color);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--dark-blue);
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Styles pour la page découverte */
.discover-hero {
    min-height: 80vh;
    padding: 120px 5% 60px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discover-hero::before,
.discover-hero::after {
    content: '';
    position: absolute;
    width: 100vmax;
    height: 100vmax;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
    mix-blend-mode: lighten;
    animation: float 15s ease-in-out infinite alternate;
}

.discover-hero::before {
    left: -30%;
    top: -30%;
    background: radial-gradient(circle at center,
        rgba(255, 131, 0, 0.95) 0%,
        rgba(10, 26, 47, 0) 70%
    );
    opacity: 0.35;
}

.discover-hero::after {
    right: -30%;
    bottom: -30%;
    background: radial-gradient(circle at center,
        rgba(10, 26, 47, 0.9) 0%,
        rgba(255, 131, 0, 0.5) 50%,
        rgba(255, 131, 0, 0) 70%
    );
    opacity: 0.35;
    animation-delay: -7.5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

.discover-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(10, 26, 47, 0.5);
    animation: contentFloat 3s ease-in-out infinite alternate;
}

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

.discover-content h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

.feature-card {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.discover-details {
    padding: 5rem 5%;
    background: var(--light-blue);
}

.detail-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--dark-blue);
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    margin-top: 2rem;
}

.detail-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.discover-contact {
    padding: 5rem 5%;
    background: var(--dark-blue);
}

.discover-contact h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.discover-form {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

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

    .discover-form {
        padding: 2rem;
    }

    .legal-container {
        margin-top: 100px;
    }
}

.clients {
    padding: 4rem 0;
    background: var(--dark-blue);
    overflow: hidden;
}

.clients h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-carousel::before,
.clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-blue), transparent);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-blue), transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

.logo-placeholder {
    color: var(--text-color);
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.7;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 16));
    }
}

/* Styles pour la page produit */
.product-hero {
    min-height: 100vh;
    padding: 120px 5% 60px;
    background: var(--dark-blue);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before,
.product-hero::after {
    content: '';
    position: absolute;
    width: 100vmax;
    height: 100vmax;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
    mix-blend-mode: lighten;
    animation: float 15s ease-in-out infinite alternate;
}

.product-hero::before {
    left: -30%;
    top: -30%;
    background: radial-gradient(circle at center,
        rgba(255, 131, 0, 0.95) 0%,
        rgba(10, 26, 47, 0) 70%
    );
    opacity: 0.35;
}

.product-hero::after {
    right: -30%;
    bottom: -30%;
    background: radial-gradient(circle at center,
        rgba(10, 26, 47, 0.9) 0%,
        rgba(255, 131, 0, 0.5) 50%,
        rgba(255, 131, 0, 0) 70%
    );
    opacity: 0.35;
    animation-delay: -7.5s;
}

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

.product-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.product-cta {
    display: flex;
    gap: 1rem;
}

.secondary-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-orange);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--accent-orange);
    color: var(--dark-blue);
}

.product-hero-image {
    position: relative;
    z-index: 1;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-features {
    padding: 5rem 5%;
    background: var(--light-blue);
}

.product-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-details {
    padding: 5rem 5%;
    background: var(--dark-blue);
}

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

.detail-item {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.product-benefits {
    padding: 5rem 5%;
    background: var(--light-blue);
}

.product-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--dark-blue);
    border-radius: 15px;
    border: 1px solid rgba(255, 131, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-orange);
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-contact {
    padding: 5rem 5%;
    background: var(--dark-blue);
}

.product-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .product-cta {
        justify-content: center;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Styles pour la page de liste des produits */
.products-hero {
    min-height: 50vh;
    padding: 120px 5% 60px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before,
.products-hero::after {
    content: '';
    position: absolute;
    width: 100vmax;
    height: 100vmax;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
    mix-blend-mode: lighten;
    animation: float 15s ease-in-out infinite alternate;
}

.products-hero::before {
    left: -30%;
    top: -30%;
    background: radial-gradient(circle at center,
        rgba(255, 131, 0, 0.95) 0%,
        rgba(10, 26, 47, 0) 70%
    );
    opacity: 0.35;
}

.products-hero::after {
    right: -30%;
    bottom: -30%;
    background: radial-gradient(circle at center,
        rgba(10, 26, 47, 0.9) 0%,
        rgba(255, 131, 0, 0.5) 50%,
        rgba(255, 131, 0, 0) 70%
    );
    opacity: 0.35;
    animation-delay: -7.5s;
}

.products-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.products-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.products-hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.products-grid {
    padding: 5rem 5%;
    background: var(--light-blue);
}

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

.filter-button {
    padding: 0.8rem 1.5rem;
    background: var(--dark-blue);
    color: var(--text-color);
    border: 1px solid rgba(255, 131, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
    background: var(--accent-orange);
    color: var(--dark-blue);
    border-color: var(--accent-orange);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 131, 0, 0.1);
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.product-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 26, 47, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--accent-orange);
}

.product-category {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.product-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-card-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 131, 0, 0.1);
    color: var(--accent-orange);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.product-card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-orange);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 131, 0, 0.3);
}

.products-cta {
    padding: 5rem 5%;
    background: var(--dark-blue);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

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

    .filter-button {
        width: 100%;
        max-width: 300px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Animation des boutons de filtre */
.filter-button {
    position: relative;
    overflow: hidden;
}

.filter-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 131, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.filter-button:active::after {
    width: 200%;
    height: 200%;
} 