:root {
	--fetiche: #121212; 
    --fetiche-glow: rgba(0, 212, 255, 0.3);
    --primary: #121212;
    --accent: #fcddad; 
    --accent-hover: #eec58b;
    --accent-soft: #fff6e9;
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-light: #666;
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- RESET & GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Manrope', sans-serif; 
    color: var(--text); 
    background: var(--bg); 
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
section { padding: 80px 0; }
.highlight { color: var(--accent); }
img { width: 100%; height: 100%; object-fit: cover; }
.mobile-show { display: none; }
.mobile-hide { display: inline-flex; }

/* --- TYPOGRAPHIE --- */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; }
.subtitle { font-weight: 800; color: var(--text-light); letter-spacing: 2px; font-size: 0.75rem; display: block; margin-bottom: 15px; }
.big-title { font-size: 3rem; letter-spacing: -1px; }

/* --- NOUVEAU HEADER (PILLULE) --- */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none; /* Laisse passer le clic autour de la pillule */
}

.nav-pill {
    background: white;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto; /* Réactive le clic sur la pillule */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 90%; /* Responsive safe */
}

/* Gauche: Logo */
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-circle { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: #eee; }
.logo-text { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.5px; }

/* Centre: Liens */
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: #000; opacity: 0.7; }

/* Droite: Actions */
.nav-actions { display: flex; align-items: center; gap: 20px; }
.icon-group { display: flex; gap: 15px; border-right: 1px solid #eee; padding-right: 20px; }
.icon-group a { color: var(--text); transition: var(--transition); display: flex; align-items: center; }
.icon-group a:hover { color: #000; transform: scale(1.1); }

.btn-header {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-header:hover { background: var(--accent-hover); }

/* --- HERO --- */
.hero { 
    padding-top: 180px; padding-bottom: 100px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%);
    text-align: center;
}
.hero-text { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

/* --- SERVICES (SCROLL HORIZONTAL) --- */
.team-title { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.arrow-nav { display: flex; gap: 8px; }
.arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); background: white; user-select: none; }
.arrow:hover { background: var(--primary); color: white; }

.services-grid { 
    display: flex; gap: 20px; overflow-x: auto; padding: 10px 0 30px; 
    scrollbar-width: none; scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
.services-grid::-webkit-scrollbar { display: none; }
.service-card { 
    position: relative; border-radius: var(--radius); overflow: hidden; height: 380px; width: 320px; flex-shrink: 0; 
    transition: var(--transition); border: 1px solid #f0f0f0; background: white; text-decoration: none;
    scroll-snap-align: center;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.service-tag { position: absolute; top: 15px; left: 15px; background: var(--accent); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-weight: 800; font-size: 0.75rem; z-index: 2; }
.service-info { position: absolute; bottom: 0; width: 100%; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; }

/* --- BOUTONS --- */
.btn-main { background: var(--primary); color: white; padding: 15px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-block; transition: var(--transition); }
.btn-main:hover { transform: scale(1.05);
	box-shadow: 0 6px 25px var(--fetiche) !important;
}


.btn-accent {
    background: var(--accent); color: var(--primary); padding: 12px 28px;
    border-radius: 50px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: var(--transition);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* --- SECTION DARK PREMIUM (Combinaison Pourquoi & Expertise) --- */
.dark-section {
    background-color: #0a0a0a;
    color: white;
    background-image: radial-gradient(circle at 80% 20%, rgba(50,50,50,0.5), transparent 40%);
}
.premium-wrap { padding-top: 100px; padding-bottom: 100px; }
.premium-divider { border: 0; border-top: 1px solid rgba(252, 221, 173, 0.1); margin-bottom: 100px; }

/* Pourquoi Choisir */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 100px; }

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius); padding: 40px 30px;
    transition: var(--transition);
}
.glass-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-5px); }
.glass-card h3 { font-size: 1.5rem; margin: 20px 0 10px; color: white;}
.glass-card p { opacity: 0.7; font-size: 0.95rem; }
.icon-box { color: var(--accent); margin-bottom: 10px; }

/* Expertise Tabs */
.expertise-tabs { display: grid; grid-template-columns: 280px 1fr; gap: 40px; margin-top: 40px; }
.tabs-menu { display: flex; flex-direction: column; gap: 10px; }

.dark-section .tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 221, 173, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px; border-radius: 15px; cursor: pointer; text-align: left; font-weight: 700; font-family: inherit; font-size: 1rem;
    transition: var(--transition);
}
.dark-section .tab-btn.active {
    background: var(--accent); color: var(--primary); border-color: var(--accent);
}

.dark-section .tab-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(252, 221, 173, 0.1);
    border-radius: var(--radius);
    display: none; /* caché par défaut */
}

.dark-section .tab-content.active {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 30px;
    animation: fadeIn 0.4s ease;
}

.dark-section .tab-content h3 { color: var(--accent); font-size: 1.8rem; margin-bottom: 10px; }
.dark-section .tab-content p { color: #ccc; }
.dark-section .tab-content img { 
    border-radius: 15px; 
    border: 1px solid rgba(252, 221, 173, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-height: 400px;
}

/* --- TÉMOIGNAGES --- */
.pill-label-left { border: 1px solid #ddd; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 15px; }
.pill-label { border: 1px solid rgba(252, 221, 173, 0.3); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 15px; }

.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;
}
.testimonial-card {
    background: white; border-radius: var(--radius); padding-bottom: 30px;
    border: 1px solid #eee; overflow: hidden; position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-5px); }
.testi-img-wrapper { height: 220px; width: 100%; overflow: hidden; }
.quote-icon {
    position: absolute; top: 190px; right: 20px; width: 50px; height: 50px;
    background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; border: 4px solid white; z-index: 2;
}
.testi-content { padding: 25px 30px 0; }
.testi-content h4 { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; font-weight: 700; }
.testi-author { border-top: 1px solid #eee; padding-top: 15px; }
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

/* --- ÉQUIPE --- */
.centered-header { text-align: center; margin-bottom: 50px; }
.team-grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }

.team-card-large {
    position: relative; height: 450px; border-radius: 30px; overflow: hidden; cursor: pointer;
}
.team-card-large img { transition: transform 0.6s ease; }
.team-card-large:hover img { transform: scale(1.05); }
.card-arrow {
    position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
    background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; z-index: 2; transition: var(--transition);
}
.team-card-large:hover .card-arrow { transform: rotate(-45deg); background: white; }
.team-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: white; text-align: center;
}
.team-overlay .role { display: block; font-size: 0.8rem; font-weight: 500; opacity: 0.8; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.team-overlay h3 { font-size: 1.8rem; font-weight: 700; }

/* --- FAQ BOX & MAP --- */
.faq-section-container { background-color: #ffffff; padding: 80px 0; }
.faq-box-premium {
    background-color: #0a0a0a; background-image: radial-gradient(circle at 80% 20%, rgba(50,50,50,0.5), transparent 40%);
    border-radius: 40px; padding: 60px 50px; max-width: 900px; margin: 0 auto;
    border: 1px solid rgba(252, 221, 173, 0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.1); text-align: center;
}
.faq-box-premium .faq-list { text-align: left; margin-top: 40px; }
.faq-box-premium .faq-item {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(252, 221, 173, 0.2);
    border-radius: 20px; margin-bottom: 15px; padding: 25px; transition: var(--transition);
}
.faq-box-premium .faq-item:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--accent); transform: translateY(-2px); }
.faq-box-premium summary {
    font-weight: 800; font-size: 1.1rem; color: var(--accent); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-box-premium summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-box-premium details[open] summary::after { transform: rotate(45deg); }
.faq-box-premium .faq-item div { color: #ccc; padding-top: 20px; margin-top: 15px; border-top: 1px solid rgba(252, 221, 173, 0.1); }

.map-container-premium {
    border: 1px solid rgba(252, 221, 173, 0.3); padding: 15px; background: rgba(255, 255, 255, 0.05); border-radius: calc(var(--radius) + 5px);
}
.map-box { width: 100%; height: 450px; border-radius: var(--radius); overflow: hidden; }

/* --- FOOTER --- */
footer { padding: 100px 0; text-align: center; background: linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* --- MEDIA QUERIES (MOBILE) --- */
@media (max-width: 900px) {
    /* Header Simplifié */
    .nav-links { display: none; } /* On cache les liens au centre */
    .icon-group { padding-right: 0; border: none; }
    .icon-group a { display: none; } /* On cache les petites icônes pour laisser place au bouton */
    .icon-group a:first-child { display: flex; } /* On garde juste le téléphone si besoin */
    
    /* Titres */
    h1 { font-size: 2.5rem; }
    .big-title { font-size: 2rem; }
    
    /* Expertise Fix (Image qui dépasse) */
    .expertise-tabs { display: block; }
    .tabs-menu { flex-direction: row; overflow-x: auto; margin-bottom: 20px; white-space: nowrap; padding-bottom: 10px; }
    .dark-section .tab-content.active {
        grid-template-columns: 1fr; /* Une seule colonne */
        text-align: left;
        padding: 20px;
    }
    .dark-section .tab-content img {
        margin-top: 20px;
        height: 250px; /* Hauteur fixe pour éviter que ça dépasse trop */
        width: 100%;
    }

    /* FAQ Box */
    .faq-box-premium { padding: 40px 20px; border-radius: 25px; }

    /* Scroll Horizontal Mobile (Avis et Équipe) */
    .scroll-snap-mobile {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px; /* Espace pour le scrollbar si visible */
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Cache scrollbar Firefox */
    }
    .scroll-snap-mobile::-webkit-scrollbar { display: none; /* Cache scrollbar Chrome */ }
    
    .testimonial-card, .team-card-large {
        min-width: 85vw; /* Prend 85% de l'écran */
        scroll-snap-align: center; /* S'aligne au centre au relâchement */
    }

    /* Cacher/Montrer boutons */
    .mobile-hide { display: none; }
    .mobile-show { display: block; }
}
/* --- INTERFACE TÉLÉCHARGEMENT VIDÉO --- */
.video-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
}

.download-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.video-preview-box {
    position: relative;
    height: 200px;
    background: #000;
}

.video-preview-box img {
    opacity: 0.8;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.2);
}

.download-info {
    padding: 25px;
}

.download-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.download-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Adaptation Mobile */
@media (max-width: 600px) {
    .video-download-grid {
        grid-template-columns: 1fr;
    }
}

/* Le conteneur du bouton et du menu */
.dropdown {
    position: relative;
    display: inline-flex; /* S'aligne avec les autres liens */
    align-items: center;
    height: 100%;
}

/* Le menu caché - Mêmes styles qu'avant */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    
    /* Positionnement */
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    
    /* Esthétique */
    border-radius: 20px; 
    padding: 10px;
    margin-top: 15px; /* L'espace visuel qu'on veut garder */
}

/* --- LE CORRECTIF : LE PONT INVISIBLE --- */
/* Cela crée une zone transparente entre le bouton et le menu */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -20px; /* On remonte pour combler l'espace du margin-top */
    left: 0;
    width: 100%;
    height: 20px; /* Hauteur suffisante pour toucher le bouton Services */
    background: transparent; /* Invisible */
    display: block;
}
/* --------------------------------------- */

.dropdown:hover .dropdown-content {
    display: block;
}

/* Le reste du CSS (liens, couleurs) reste identique */
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 15px;
    transition: background 0.3s;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #000;
}
select {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(252, 221, 173, 0.2);
    border-radius: 15px;
    color: white; /* Attention: sur certains navigateurs, il faut styliser les <option> */
    margin-bottom: 20px;
    font-family: inherit;
    appearance: none; /* Enlève le style par défaut du navigateur */
}

select option {
    background: #1a1a1a; /* Fond sombre pour les choix */
    color: white;
}

/* Harmonisation des champs du formulaire */
input, textarea, select {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(252, 221, 173, 0.2);
    border-radius: 15px;
    color: white;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #fcddad; 
}

/* Style spécifique pour le menu déroulant */
select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fcddad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

select option {
    background-color: #1a1a1a;
    color: white;
}

/* Boutons */
.btn-accent {
    display: flex;
    align-items: center;
    background-color: #fcddad;
    color: #1a1a1a;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
}

/* Pour masquer le champ personnalisé au début */
#custom-subject-container {
    display: none;
}

/* --- POP-UP VIDÉO --- */
.video-modal {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 2000; /* Par-dessus tout le reste */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px); /* Joli effet flou */
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.modal-content {
    width: 90%;
    max-width: 1100px; /* Grande taille pour la vidéo */
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.modal-content video {
    width: 100%;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff3333;
}

/* --- 1. L'OMBRE "SIGNATURE" (Ta couleur fétiche) --- */

/* Applique une lueur colorée douce sous les cartes de services et d'expertise */
.glass-card, 
.team-card-large,
.service-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition très fluide */
    /* Ombre de base très légère teintée avec ta couleur */
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Au survol : L'ombre s'intensifie avec ta couleur d'accent */
.glass-card:hover, 
.team-card-large:hover,
.service-card:hover {
    transform: translateY(-8px); /* La carte monte légèrement */
    /* C'est ICI que la magie opère : une ombre lumineuse avec ta couleur */
    box-shadow: 0 15px 35px -5px var(--accent); 
    border-color: var(--accent); /* La bordure s'allume aussi */
}

/* L'image dans les onglets (Expertise) reçoit aussi ce traitement */
.tab-image img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.tab-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px var(--accent);
}


/* --- 2. LA TOUCHE "APAISANTE" (Animations douces) --- */

/* Création de l'animation de "Fade In" (Apparition progressive vers le haut) */


/* Appliquer l'apparition douce sur le texte du Hero et les titres */
.hero h1, 
.hero p, 
.section-header h2 {
    animation: fadeInUpSoft 1.2s ease-out forwards;
}

/* Création de l'animation de "Flottement" (Lévitation) */
@keyframes floatGentle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Appliquer le flottement uniquement sur les images "Premium" ou logos pour donner de la vie */


/* Ajout d'un flou léger sur l'arrière-plan des cartes pour l'effet "Glassmorphism" apaisant */
.glass-card, .faq-item {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03); /* Très transparent pour la légèreté */
}/* Global styles */
[data-theme="global"] {
    /* styles appliqués à tous les pages */
    reset: default;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Autres styles... */
