/* Variables de couleurs et typographie */
:root {
    --color-gold: #C0A064;
    --color-black: #1A1A1A;
    --color-dark: #2A2A2A;
    --color-card: #2D2D2D;  /* Nouvelle couleur plus claire pour les cartes */
    --color-light: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

html {
    scroll-padding-top: 80px;
    overscroll-behavior: none;
    overflow-x: hidden;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-black);
    overscroll-behavior: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    min-height: 80px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Ajout d'une classe pour le header lors du scroll */
header.scrolled {
    background: #1A1A1A;
}

.logo {
    height: 120px;
    width: auto;
}

/* Styles spécifiques pour mobile - empêchent les changements de taille */
@media (max-width: 768px) {
    header.scrolled {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }
    
    header.scrolled .logo {
        height: 50px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-family: var(--font-body);
    text-decoration: none;
    color: var(--color-gold);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a:hover {
    color: var(--color-light);
    text-shadow: 0 0 10px var(--color-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    overflow: hidden;
    background: #000;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    pointer-events: none;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    pointer-events: none;
}

@media (max-width: 768px) {
    #background-video {
        object-position: center center;
    }
}

/* Fallback pour la vidéo */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    z-index: 0;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    max-width: 800px;
    margin: 0 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
    color: var(--color-gold);
}

.hero p {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 6rem;
}

.hero .cta-button:hover {
    background: var(--color-light);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 160, 100, 0.4);
}

.hero .cta-button i {
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-light);
    color: var(--color-gold);
}

/* Projects Section */
.projects {
    padding: 4rem 2rem;
    position: relative;
    background: transparent;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Overlay plus sombre pour la lisibilité */
    z-index: 1;
}

.projects h2 {
    position: relative;
    z-index: 2;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.project-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.view-all-projects {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.view-all-projects .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.view-all-projects .cta-button:hover {
    background: var(--color-light);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(192, 160, 100, 0.3);
}

.project-card {
    background: var(--color-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(192, 160, 100, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(192, 160, 100, 0.4);
    border-color: var(--color-light);
}

.project-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel img.active {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.carousel-nav button {
    background: rgba(26, 26, 26, 0.7);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav button:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 10px rgba(192, 160, 100, 0.5);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
}

.project-info p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 1rem;
}

.project-link {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--color-light);
    color: var(--color-gold);
}

/* About Section */
.about {
    padding: 8rem 2rem 4rem 2rem;
    position: relative;
    background: var(--color-black);
    z-index: 2;
    overflow: hidden;
}

.about::before {
    display: none;
}

.about-second {
    padding-top: 4rem;
    margin-top: 0;
    background: var(--color-black);
    border-top: none;
    position: relative;
    z-index: 2;
}

.about h2 {
    color: var(--color-gold);
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    padding: 2rem 0;
    overflow: hidden;
}

.about-second .about-content {
    flex-direction: row;
}

.about-second .about-image {
    order: 2;
}

.about-second .about-text {
    order: 1;
    text-align: left !important;
}

.about-second .about-text p {
    text-align: left !important;
}

.about-second .about-text p strong,
.about-second .about-text p em {
    text-align: left !important;
}

/* Styles spécifiques pour desktop */
@media (min-width: 769px) {
    .about-second .about-text {
        text-align: left !important;
    }
    
    .about-second .about-text p {
        text-align: left !important;
    }
    
    .about-second .about-text p strong,
    .about-second .about-text p em {
        text-align: left !important;
    }
}

/* Styles très spécifiques pour forcer l'alignement à gauche */
.about.about-second .about-content .about-text {
    text-align: left !important;
}

.about.about-second .about-content .about-text p {
    text-align: left !important;
}

.about.about-second .about-content .about-text p strong,
.about.about-second .about-content .about-text p em {
    text-align: left !important;
}

.about-text {
    flex: 1 1 55%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

.about-text p {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: var(--color-light);
    font-weight: bold;
}

.about-text p strong {
    color: var(--color-gold);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0;
    font-weight: 900;
}

.about-text p em {
    color: var(--color-gold);
    font-style: normal;
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 0 0 40%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(192, 160, 100, 0.3);
    border: 2px solid var(--color-gold);
    display: block;
}

@media (max-width: 1200px) {
    .about-text p {
        font-size: 1.3rem;
        line-height: 1.9;
    }
    
    .about-text p strong {
        font-size: 1.5rem;
    }
    
    .about-text p em {
    font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-content,
    .about-second .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text {
        flex: 0 0 100%;
    }

    .about-second .about-text {
        text-align: left;
        order: 2; /* Texte après l'image sur mobile */
    }

    .about-second .about-image {
        order: 1; /* Image avant le texte sur mobile */
    }

    .about-text p {
        font-size: 1.1rem;
    line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-text p strong {
        font-size: 1.3rem;
    }
    
    .about-text p em {
        font-size: 1.1rem;
    }
    
    .about-second {
        padding-top: 4rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    position: relative;
    background: transparent;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.contact h2 {
    color: var(--color-gold);
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

input, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-gold);
    border-radius: 5px;
    background: var(--color-card);
    color: var(--color-light);
}

textarea {
    height: 150px;
}

button[type="submit"] {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: var(--color-light);
    color: var(--color-gold);
}

/* Footer */
footer {
    background: var(--color-black);
    color: var(--color-light);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--color-gold);
}

footer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--color-gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--color-light);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* Presentation Section */
.presentation {
    padding: 6rem 2rem;
    position: relative;
    background: var(--color-black);
    z-index: 2;
}

.presentation::before {
    display: none;
}

.presentation > * {
    position: relative;
    z-index: 2;
}

.presentation-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.presentation-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.intro-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.sub-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-light);
    opacity: 0.9;
}

.services-section {
    margin: 4rem 0;
}

.services-section h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 350px));
    gap: 2.5rem;
    margin: 2rem auto;
    justify-content: center;
    max-width: 1400px;
}

.services-bottom-row {
    display: none;
}

.service-card {
    background: var(--color-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--color-gold);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(192, 160, 100, 0.3);
    border-color: var(--color-light);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Suppression des styles de défilement car ils ne sont plus nécessaires */
.service-card::-webkit-scrollbar,
.service-card::-webkit-scrollbar-track,
.service-card::-webkit-scrollbar-thumb {
    display: none;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(280px, 320px));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: minmax(280px, 320px);
        gap: 2rem;
    }
}

/* Styles pour la section pourquoi nous choisir */
.why-us-section {
    text-align: center;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--color-dark);
    border-radius: 15px;
    border: 1px solid var(--color-gold);
    max-width: 1200px;
}

.why-us-section h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

/* Styles pour la liste des avantages */
.why-us-list, .why-us-bottom-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    list-style: none;
}

.why-us-bottom-row {
    margin-top: 2rem;
}

.why-us-list li, .why-us-bottom-row li {
    width: 350px;
    padding: 1.5rem;
    background: var(--color-dark);
    border: 1px solid var(--color-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-light);
    transition: all 0.3s ease;
}

.why-us-list li:hover, .why-us-bottom-row li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(192, 160, 100, 0.3);
}

.why-us-list i, .why-us-bottom-row i {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .why-us-list, .why-us-bottom-row {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .why-us-section h3 {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
    }

    .why-us-list li, .why-us-bottom-row li {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .why-us-bottom-row {
        margin-top: 1rem;
    }

    .why-us-list {
        margin-bottom: 1rem;
    }
}


.presentation-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--color-dark);
    border-radius: 15px;
    border: 1px solid var(--color-gold);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.presentation-footer h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.presentation-footer p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .presentation-header h2 {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.3rem;
    }

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

    .why-us-list,
    .why-us-bottom-row {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
    }

    .services-bottom-row {
        margin-top: 0;
    }

    .why-us-bottom-row {
        margin-top: 0;
    }

    .service-card {
        height: auto;
    }

    .presentation-footer h3 {
        font-size: 1.8rem;
    }
}

/* Styles pour la page Création de Société */
.company-creation-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image/dubai-business.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
}

.company-creation-intro {
    padding: 4rem 2rem;
    background: var(--color-black);
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--color-gold);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.advantage-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--color-gold);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--color-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

.our-services {
    padding: 4rem 2rem;
    background: var(--color-black);
}

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

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

.service-item {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--color-gold);
}

.service-item h3 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.service-item li {
    color: var(--color-light);
    font-family: var(--font-body);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.process-section {
    padding: 4rem 2rem;
    background: var(--color-black);
}

.process-section h2 {
    color: var(--color-gold);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--color-light);
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .company-creation-hero {
        height: 50vh;
    }

    .advantages-grid,
    .services-container,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 1rem;
    }
}

.social-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-contact-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.social-contact-link i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .social-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-contact-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Menu Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

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

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem !important;
        background: rgba(26, 26, 26, 0.95) !important;
        min-height: 60px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    .logo-container {
        order: 1;
        flex: 0 0 auto;
    }

    .logo {
        height: 50px !important;
        margin: 0;
        display: block;
    }

    .hamburger {
        display: block;
        margin: 0;
        padding: 0.5rem;
        order: 2;
        flex: 0 0 auto;
    }

    nav {
        order: 3;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        padding: 70px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        display: none;
    }

    nav.active {
        right: 0;
        display: block;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Ajustements pour le contenu mobile */
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .presentation-header h2 {
        font-size: 2rem;
    }

    .intro-text, .sub-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .why-us-section h3 {
        font-size: 1.8rem;
        line-height: 1.1;
        text-align: center;
    }

    .why-us-list, .why-us-bottom-row {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .why-us-list li, .why-us-bottom-row li {
        font-size: 0.9rem;
        padding: 0.8rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .why-us-bottom-row {
        margin-top: 1rem;
    }

    .presentation-footer {
        padding: 2rem 1rem;
    }

    .presentation-footer h3 {
        font-size: 1.5rem;
    }

    .social-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .social-contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

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

    .hero p {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustements pour les grands écrans */
@media (min-width: 1025px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* Styles de la galerie */
.gallery-main {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 1px solid var(--color-gold);
    padding: 5px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnails-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    border-color: var(--color-gold);
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 1001;
}

.lightbox-prev,
.lightbox-next {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.8);
}

/* Styles responsifs */
@media (max-width: 768px) {
    .gallery-main {
        margin: 10px;
        padding: 0;
        width: calc(100% - 20px);
    }

    .main-image-container {
        height: auto;
        padding: 2px;
        border: 1px solid var(--color-gold);
        border-radius: 8px;
        width: calc(100% - 20px);
        margin: 0 auto;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-image {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
        border-radius: 6px;
        display: block;
    }

    .thumbnails-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        margin-top: 10px;
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }

    .thumbnail {
        height: 60px;
        width: 100%;
        object-fit: cover;
        border: 1px solid var(--color-gold);
        border-radius: 4px;
        padding: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .thumbnail:hover {
        transform: scale(1.05);
        border-color: var(--color-gold);
    }

    .thumbnail.active {
        border: 2px solid var(--color-gold);
        transform: scale(1.05);
    }

    /* Réduction de la taille de police pour mobile */
    .project-hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem;
    }

    .project-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem;
    }

    .project-description {
        font-size: 0.9rem !important;
        line-height: 1.5;
        padding: 0 15px;
    }

    .info-card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .info-card p {
        font-size: 0.85rem !important;
    }

    .feature-item h4 {
        font-size: 0.9rem !important;
    }

    .feature-item p {
        font-size: 0.8rem !important;
    }

    /* Centrage du contenu */
    .project-detail {
        padding: 100px 10px 20px;
        text-align: center;
    }

    .project-hero {
        padding: 1rem 10px 2rem;
        text-align: center;
    }

    .project-info-grid {
        padding: 0 10px;
        margin: 2rem auto;
    }

    .project-gallery {
        padding: 2rem 10px;
    }

    .project-features {
        padding: 2rem 10px;
    }

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

    .lightbox.active {
        display: flex;
    }

    .lightbox-content {
        position: relative;
        max-width: 95%;
        max-height: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 8px;
    }

    .lightbox-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 2001;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        pointer-events: none;
    }

    .lightbox-prev,
    .lightbox-next {
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
        pointer-events: auto;
    }
}

/* Styles pour les tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-main {
        padding: 0 1.5rem;
    }

    .main-image {
        max-height: 500px;
    }

    .thumbnails-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .thumbnail {
        height: 100px;
    }
}

/* ===== Section FAQ ===== */
.faq-section {
    padding: 6rem 2rem;
    position: relative;
    background: var(--color-black);
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--color-light);
    text-align: center;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(192, 160, 100, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(42, 42, 42, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(42, 42, 42, 0.9);
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-light);
    text-align: left;
    line-height: 1.5;
}

.faq-icon {
    color: var(--color-gold);
    font-size: 1rem;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(26, 26, 26, 0.8);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-light);
    opacity: 0.85;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== Animations au Scroll ===== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* État initial : éléments cachés */
.animate-on-scroll {
    opacity: 0;
}

/* État visible : animation keyframe (pas de transition pour éviter les conflits) */
.animate-on-scroll.is-visible {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Délais échelonnés pour les grilles/listes */
.animate-on-scroll.delay-1.is-visible { animation-delay: 0.1s; }
.animate-on-scroll.delay-2.is-visible { animation-delay: 0.2s; }
.animate-on-scroll.delay-3.is-visible { animation-delay: 0.3s; }
.animate-on-scroll.delay-4.is-visible { animation-delay: 0.4s; }
.animate-on-scroll.delay-5.is-visible { animation-delay: 0.5s; }
.animate-on-scroll.delay-6.is-visible { animation-delay: 0.6s; }

/* Désactiver les animations si l'utilisateur préfère (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1 !important;
        animation: none !important;
    }
}

/* ===== CALCULATEUR ROI ===== */
.roi-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-black) 0%, #1e1e1e 50%, var(--color-black) 100%);
    text-align: center;
}

.roi-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.roi-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sliders */
.roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-slider-group {
    background: var(--color-card);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(192,160,100,0.15);
    transition: border-color 0.3s;
}

.roi-slider-group:hover {
    border-color: rgba(192,160,100,0.4);
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.roi-slider-header label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-light);
    font-size: 1rem;
}

.roi-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
    min-width: 140px;
    text-align: right;
}

/* Range input custom */
.roi-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--color-gold) 0%, var(--color-gold) var(--progress, 50%), #444 var(--progress, 50%), #444 100%);
    outline: none;
    cursor: pointer;
    transition: background 0.1s;
}

.roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: grab;
    box-shadow: 0 0 10px rgba(192,160,100,0.5), 0 2px 6px rgba(0,0,0,0.3);
    border: 3px solid var(--color-black);
    transition: transform 0.2s, box-shadow 0.2s;
}

.roi-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(192,160,100,0.7), 0 2px 8px rgba(0,0,0,0.4);
}

.roi-range::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
}

.roi-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: grab;
    box-shadow: 0 0 10px rgba(192,160,100,0.5), 0 2px 6px rgba(0,0,0,0.3);
    border: 3px solid var(--color-black);
}

.roi-range::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #444;
}

.roi-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* Results */
.roi-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-result-card {
    background: var(--color-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(192,160,100,0.15);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.roi-result-card:hover {
    border-color: rgba(192,160,100,0.35);
    transform: translateY(-2px);
}

.roi-result-card.roi-main {
    background: linear-gradient(135deg, rgba(192,160,100,0.12) 0%, var(--color-card) 100%);
    border-color: rgba(192,160,100,0.35);
    padding: 2rem;
}

.roi-result-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.roi-main .roi-result-icon {
    font-size: 2rem;
}

.roi-result-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-result-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-light);
    font-weight: 700;
    transition: color 0.3s;
}

.roi-main .roi-result-number {
    font-size: 3rem;
    color: var(--color-gold);
}

.roi-result-bar {
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.roi-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), #e6c97a);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.roi-result-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .roi-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roi-section h2 {
        font-size: 2rem;
    }

    .roi-main .roi-result-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .roi-section {
        padding: 3rem 1rem;
    }

    .roi-slider-group {
        padding: 1.2rem 1rem;
    }

    .roi-value {
        font-size: 1.1rem;
        min-width: 110px;
    }

    .roi-result-cards-grid {
        grid-template-columns: 1fr;
    }

    .roi-result-number {
        font-size: 1.4rem;
    }

    .roi-main .roi-result-number {
        font-size: 2rem;
    }
}
/* ===== FIN CALCULATEUR ROI ===== */

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */

/* Désactiver les animations si l'utilisateur préfère (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Font display swap pour éviter le FOIT (Flash of Invisible Text) */
@font-face {
    font-display: swap;
}

/* ===== FIN OPTIMISATIONS DE PERFORMANCE ===== */

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    text-align: center;
}
.preloader-logo {
    width: 120px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    margin-bottom: 2rem;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(192, 160, 100, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    border-radius: 3px;
    animation: preloaderBar 1.8s ease-in-out infinite;
    transform-origin: left center;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}
/* ===== FIN PRELOADER ===== */

/* ===== BANDEAU PROMOTEURS PARTENAIRES ===== */
.partners-banner {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(26,26,26,1), rgba(42,42,42,0.4), rgba(26,26,26,1));
    text-align: center;
    overflow: hidden;
}
.partners-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.partners-track-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: partnersScroll 30s linear infinite;
    width: max-content;
}
.partner-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .partners-banner h3 { font-size: 1.4rem; }
    .partner-logo { width: 90px; height: 45px; }
    .partners-track { gap: 2rem; }
}
/* ===== FIN BANDEAU PROMOTEURS ===== */

/* ===== BANNIÈRE COOKIES RGPD ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    border-top: 2px solid var(--color-gold);
    padding: 1.2rem 2rem;
    z-index: 99998;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieSlideUp 0.5s ease;
}
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}
.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.cookie-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    flex-shrink: 0;
}
.cookie-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-light);
    line-height: 1.5;
    margin: 0;
}
.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
    letter-spacing: 0.5px;
}
.cookie-accept {
    background: var(--color-gold);
    color: var(--color-black);
}
.cookie-accept:hover {
    background: #d4b574;
    border-color: #d4b574;
    transform: translateY(-2px);
}
.cookie-decline {
    background: transparent;
    color: var(--color-gold);
}
.cookie-decline:hover {
    background: rgba(192, 160, 100, 0.15);
    transform: translateY(-2px);
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
/* ===== FIN BANNIÈRE COOKIES ===== */
