.elementor-25 .elementor-element.elementor-element-656e1d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8ededbc *//* =========================================
   1. VARIABLES & CONFIGURATION (DESIGN SYSTEM)
   ========================================= */
:root {
    /* --- Palette de Couleurs --- */
    --primary: #009BA6;        /* Teal Vestige */
    --primary-dark: #007A82;   /* Version sombre pour survol */
    --dark: #0F172A;           /* Bleu Nuit très sombre (Luxe) */
    --text-body: #475569;      /* Gris lecture confortable */
    --light-bg: #F8FAFC;       /* Fond sections alternées */
    --white: #FFFFFF;
    
    /* --- Espacements & Formes --- */
    --container-width: 1280px;
    --radius: 16px;            /* Arrondi moderne */
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08); /* Ombre "levitation" */
    --shadow-hover: 0 20px 50px -10px rgba(0, 155, 166, 0.15); /* Ombre colorée au survol */
    
    /* --- Typographie Fluide (Clamp) --- */
    /* S'adapte mathématiquement entre mobile et desktop sans saccade */
    --font-h1: clamp(2.5rem, 5vw, 4.5rem);
    --font-h2: clamp(2rem, 4vw, 3rem);
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden; /* Empêche le scroll horizontal indésirable */
    -webkit-font-smoothing: antialiased; /* Rendu net sur Mac/iOS */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilitaires */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--light-bg); }
.section { padding: 80px 0; }
.max-w-600 { max-width: 600px; }
.center-block { margin-left: auto; margin-right: auto; }

/* =========================================
   3. HERO SECTION (CINEMATIC)
   ========================================= */
.hero-section {
    position: relative;
    height: 85vh; /* Immersion totale */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-color: #000;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover; /* Remplit sans déformer */
    opacity: 0.7; /* Assombri pour lire le texte */
    animation: zoomSlow 20s infinite alternate; /* Effet de vie */
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-text { font-size: 1.2rem; opacity: 0.9; font-weight: 300; }

.tag-pill {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   4. LAYOUTS INTELLIGENTS (GRIDS)
   ========================================= */
.grid-split {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First: 1 colonne */
    gap: 40px;
    align-items: center;
}

.image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease;
}

.image-wrapper:hover img { transform: scale(1.02); }

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* =========================================
   5. VISION & CARDS (GRILLE CLASSIQUE)
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary); /* Petite touche couleur */
}

.icon-box {
    width: 60px; height: 60px;
    background: rgba(0, 155, 166, 0.1); /* Teal très pâle */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* =========================================
   6. SCROLLER MOBILE (SWIPE)
   ========================================= */
.scroller-container {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Active le swipe horizontal */
    padding: 20px 5px 40px 5px; /* Padding pour l'ombre */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Cache la barre de défilement moche */
.scroller-container::-webkit-scrollbar { display: none; }

.category-card {
    min-width: 250px; /* Taille fixe sur mobile */
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
    text-align: center;
    border: 1px solid #f1f1f1;
}

.cat-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

/* =========================================
   7. LISTE AVANTAGES (WHY US)
   ========================================= */
.benefit-list { list-style: none; margin-top: 30px; }

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    background: rgba(0, 155, 166, 0.1);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* =========================================
   8. DARK SECTION (QUALITÉ)
   ========================================= */
.section-quality {
    background-color: var(--dark);
    color: var(--white);
}

.light-text { color: var(--white); }
.opacity-80 { opacity: 0.8; }

.quality-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.badge-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    min-width: 140px;
    background: rgba(255,255,255,0.02);
}

.badge-item h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* =========================================
   9. AGENDA (SCHEDULE)
   ========================================= */
.schedule-container {
    margin-top: 50px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.day-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.day-card:hover { background: var(--primary); color: var(--white); }

.day-name { display: block; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 5px; opacity: 0.7; }
.event-name { font-weight: 600; font-size: 1.1rem; }
.day-card:hover .day-name { color: rgba(255,255,255,0.8); }

/* =========================================
   10. BOUTONS (CTA)
   ========================================= */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0, 155, 166, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   11. MEDIA QUERIES (RESPONSIVE DESKTOP)
   ========================================= */
@media (min-width: 992px) {
    /* Passage à 2 colonnes sur grand écran */
    .grid-split {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    /* Inversement pour effet ZigZag */
    .reverse-desktop { direction: rtl; }
    .reverse-desktop > * { direction: ltr; }

    /* Le scroller devient une grille propre sur desktop */
    .scroller-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 5 colonnes pour 5 catégories */
        overflow: visible;
        gap: 30px;
        justify-content: center;
    }
    
    .category-card { min-width: auto; }
}

/* Animation Simple */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */