/* ===== VARIABLES MODERNES ===== */
:root {
    --primary: #A7001E;
    --primary-dark: #8A0019;
    --primary-light: #FF1A4D;
    --black: #0A0A0A;
    --gray-dark: #1A1A1A;
    --gray: #404040;
    --gray-light: #F0F0F0;
    --white: #FFFFFF;
    
    /* Effets spéciaux */
    --glow: 0 0 20px rgba(167, 0, 30, 0.4);
    --glow-intense: 0 0 40px rgba(167, 0, 30, 0.6);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET MODERNE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

/* CORRECTION URGENTE DU FOOTER - À METTRE EN HAUT DU CSS */
.footer {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.footer-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    box-sizing: border-box !important;
}

/* Supprimer toute marge/padding problématique */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Correction pour Safari iOS */
@supports (-webkit-touch-callout: none) {
    .footer {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: env(safe-area-inset-left) !important;
        padding-right: env(safe-area-inset-right) !important;
    }
}

/* ===== CARROUSEL SIMPLE & ÉLÉGANT ===== */
.carousel-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1);
    transition: transform 15s cubic-bezier(0.33, 0.66, 0.66, 1);
    transform: scale(1);
}

.carousel-slide.active .slide-image {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(167, 0, 30, 0.2) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 850px;
    opacity: 0;
}

.carousel-slide.active .slide-content {
    animation: slideContentEnter 1s ease-out 0.2s forwards;
}

@keyframes slideContentEnter {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-title-simple {
    font-size: clamp(2.0rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f0f0f0 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleGradient 3s ease infinite;
}

@keyframes titleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-word {
    display: block;
    animation: titleSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}

.title-word.accent {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
    font-weight: 950;
    text-shadow: 0 0 30px rgba(255, 26, 77, 0.4);
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
    margin: 1rem auto;
    border-radius: 2px;
    animation: dividerExpand 0.8s ease-out 0.7s backwards;
}

@keyframes dividerExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 50px;
        opacity: 1;
    }
}

.slide-subtitle-simple {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.9;
    animation: subtitleSlide 0.8s ease-out 0.8s backwards;
    letter-spacing: 0.4px;
    color: #f5f5f5;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-actions-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: actionsSlide 0.8s ease-out 0.9s backwards;
}

@keyframes actionsSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-slide-elegant {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(167, 0, 30, 0.35);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-slide-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.btn-slide-elegant:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(167, 0, 30, 0.55);
}

.btn-slide-elegant:hover::before {
    left: 100%;
}

.btn-arrow {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 900;
}

.btn-slide-elegant:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contrôles du carrousel - Luxe */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2.5rem;
    z-index: 4;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.carousel-prev::before,
.carousel-next::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-light);
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(167, 0, 30, 0.5);
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
    opacity: 1;
}

/* Indicateurs de slide - Luxe */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: var(--primary-light);
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(167, 0, 30, 0.6);
}

/* Indicateur de défilement */
.carousel-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    border-radius: 1px;
}

/* ===== NAVBAR EXCEPTIONNELLE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== BRANDING AVANCÉ ===== */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: transparent;}

.logo-wrapper:empty::before {
    content: "Logo";
    color: var(--gray);
    font-size: 0.7rem;
    font-weight: 600;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 8px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.brand-accent {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION CENTRALE AVANCÉE ===== */
.nav-center {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.link-text {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.link-hover {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 25px;
    transition: var(--transition-smooth);
    z-index: 1;
}

.nav-link:hover .link-hover {
    left: 0;
}

.nav-link:hover .link-text {
    color: var(--white);
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active .link-hover {
    left: 0;
}

/* ===== BOUTON CTA EXCEPTIONNEL ===== */
.nav-actions {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-intense);
}

/* ===== TOGGLE MOBILE ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== SECTIONS GÉNÉRIQUES ===== */
.section {
    padding: 5rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SECTION LE FORUMISTE ===== */
.forumiste-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.forumiste-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23A7001E" points="1000,1000 0,1000 0,0 1000,0"/></svg>');
    pointer-events: none;
}

.forumiste-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.edition-current {
    position: relative;
}

.edition-badge {
    position: absolute;
    top: -35px;
    left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--glow);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.badge-date {
    font-size: 0.9rem;
    font-weight: 700;
}

.edition-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.edition-card:hover {
    transform: translateY(-5px);
}

.edition-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.edition-card:hover .cover-image {
    transform: scale(1.05);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(167, 0, 30, 0.1) 0%,
        rgba(167, 0, 30, 0.05) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.edition-card:hover .cover-overlay {
    opacity: 1;
}

.cover-content {
    text-align: center;
    color: var(--white);
    background: rgba(167, 0, 30, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.edition-card:hover .cover-content {
    transform: translateY(0);
}

.cover-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cover-content span {
    font-size: 1rem;
    font-weight: 600;
}

.edition-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.edition-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edition-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary);
    width: 16px;
}

.edition-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
}

.edition-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
}

/* ===== SECTION ÉQUIPE ===== */
.equipe-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.equipe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23A7001E" points="1000,1000 0,1000 0,0 1000,0"/></svg>');
    pointer-events: none;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.membre-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.membre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: var(--transition-smooth);
}

.membre-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.membre-card:hover::before {
    left: 0;
}

.membre-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gray-light);
    transition: var(--transition-smooth);
    position: relative;
}

.membre-card:hover .membre-image {
    border-color: var(--primary);
    transform: scale(1.05);
}

.membre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.membre-card:hover .membre-image img {
    transform: scale(1.1);
}

.membre-info {
    position: relative;
}

.membre-nom {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.membre-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.25rem;
    box-shadow: var(--glow);
}

.linkedin-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--glow-intense);
    color: var(--white);
}

/* ===== SECTION ARCHIVES ===== */
.archives-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.archives-header {
    text-align: center;
    margin-bottom: 3rem;
}

.archives-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.archives-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.archive-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.archive-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.archive-preview {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.archive-info {
    flex: 1;
    margin-bottom: 1.5rem;
}

.archive-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.archive-theme {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.archive-pages {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-pages::before {
    content: '📄';
    font-size: 0.8rem;
}

.archive-actions {
    margin-top: auto;
}

.btn-archive {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary);
    width: 100%;
    justify-content: center;
}

.btn-archive:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.archives-cta {
    text-align: center;
}

.btn-archives-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
}

.btn-archives-all:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
    gap: 1.25rem;
}

/* ===== SECTION ATRIUM ===== */
.atrium-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
}

.atrium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23A7001E" points="1000,1000 0,1000 0,0 1000,0"/></svg>');
    pointer-events: none;
}

.atrium-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.atrium-edition {
    position: relative;
}

.atrium-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.atrium-card:hover {
    transform: translateY(-5px);
}

.atrium-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atrium-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.atrium-card:hover .atrium-cover-image {
    transform: scale(1.05);
}

.atrium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(167, 0, 30, 0.2) 0%,
        rgba(167, 0, 30, 0.1) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.atrium-card:hover .atrium-overlay {
    opacity: 1;
}

.atrium-cover-content {
    text-align: center;
    color: var(--white);
    background: rgba(167, 0, 30, 0.9);
    padding: 2rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.atrium-card:hover .atrium-cover-content {
    transform: translateY(0);
}

.atrium-cover-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.atrium-cover-content span {
    font-size: 1.5rem;
    font-weight: 700;
}

.atrium-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.atrium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atrium-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.atrium-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
}

.atrium-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-atrium-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-atrium-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
}

/* ===== SECTION PARTENAIRES - VERSION UNIFORMISÉE ===== */
.partenaires-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.partenaires-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.01"><polygon fill="%23A7001E" points="1000,1000 0,1000 0,0 1000,0"/></svg>');
    pointer-events: none;
}

/* Catégorie de Partenaires - STYLE UNIFORMISÉ */
.partenaire-categorie {
    margin-bottom: 4rem;
}

.categorie-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.categorie-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

.categorie-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    text-align: center;
    min-width: 300px;
}

/* Grid des Logos Partenaires - TOUS IDENTIQUES MAINTENANT */
.partenaires-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.single-logo {
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    justify-content: center;
}

/* SUPPRIMER les classes .gold-logos, .silver-logos, .bronze-logos */

/* Item Logo Partenaire - TOUS IDENTIQUES */
.partenaire-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partenaire-logo-box {
    width: 100%;
    height: 150px; /* MÊME TAILLE POUR TOUS */
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem; /* PADDING UNIFORME */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partenaire-logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(167, 0, 30, 0.03), 
        transparent
    );
    transition: left 0.6s ease;
}

.partenaire-logo-box:hover::before {
    left: 100%;
}

.partenaire-logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 0, 30, 0.15);
    border-color: var(--primary);
}

/* LOGO IMAGE - MÊME STYLE POUR TOUS */
.partenaire-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

.partenaire-logo-box:hover .partenaire-logo-image {
    transform: scale(1.08);
}

/* TAILLE UNIFORME POUR TOUS LES PARTENAIRES */
.single-logo .partenaire-logo-box {
    height: 160px; /* LÉGÈREMENT PLUS GRAND POUR PARTENAIRE OFFICIEL */
    padding: 1.2rem;
}

/* SUPPRIMER les styles spécifiques pour .gold-logos, .silver-logos, .bronze-logos */

/* Animation d'entrée pour les logos partenaires */
.partenaire-logo-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpPartenaire 0.6s ease forwards;
}

@keyframes fadeInUpPartenaire {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais d'animation pour partenaires */
.partenaire-logo-item:nth-child(1) { animation-delay: 0.1s; }
.partenaire-logo-item:nth-child(2) { animation-delay: 0.2s; }
.partenaire-logo-item:nth-child(3) { animation-delay: 0.3s; }
.partenaire-logo-item:nth-child(4) { animation-delay: 0.4s; }
.partenaire-logo-item:nth-child(5) { animation-delay: 0.5s; }
.partenaire-logo-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive pour partenaires - TOUS IDENTIQUES */
@media (max-width: 1024px) {
    .categorie-title {
        font-size: 1.4rem;
        min-width: 250px;
    }
    
    .partenaires-logos-grid:not(.single-logo) {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .partenaire-categorie {
        margin-bottom: 3rem;
    }
    
    .categorie-header {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .categorie-title {
        font-size: 1.3rem;
        min-width: 200px;
    }
    
    .partenaires-logos-grid {
        gap: 1.5rem;
    }
    
    .single-logo {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .partenaires-logos-grid:not(.single-logo) {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .partenaire-logo-box {
        height: 120px; /* TAILLE UNIFORME SUR TABLETTE */
        padding: 0.8rem;
    }
    
    .single-logo .partenaire-logo-box {
        height: 140px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .categorie-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .categorie-line {
        width: 80px;
    }
    
    .categorie-title {
        min-width: auto;
        font-size: 1.2rem;
    }
    
    .partenaires-logos-grid:not(.single-logo) {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .partenaire-logo-box {
        height: 100px; /* TAILLE UNIFORME SUR MOBILE */
        padding: 0.6rem;
    }
    
    .single-logo .partenaire-logo-box {
        height: 120px;
        padding: 0.8rem;
    }
}

/* ===== FOOTER CRÉATIF ===== */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 5rem 0 3rem;
    position: relative;
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Principale */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f3f4;
}

.footer-logo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.brand-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.brand-text p {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 300;
    margin: 0;
}

/* ===== SECTION CONTACT SIMPLIFIÉE ===== */
.contact-simple-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.contact-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23A7001E" points="1000,1000 0,1000 0,0 1000,0"/></svg>');
    pointer-events: none;
}

.contact-form-container-simple {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-container-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contact-form-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-simple label {
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-group-simple input,
.form-group-simple select,
.form-group-simple textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
    background: var(--white);
    color: var(--black);
}

.form-group-simple input:focus,
.form-group-simple select:focus,
.form-group-simple textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(167, 0, 30, 0.1);
    transform: translateY(-2px);
}

.form-group-simple input::placeholder,
.form-group-simple textarea::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-group-simple select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23A7001E'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-group-simple textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.btn-submit-simple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.btn-submit-simple:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
    gap: 1rem;
}

.btn-submit-simple:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container-simple {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-submit-simple {
        max-width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container-simple {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-group-simple input,
    .form-group-simple select,
    .form-group-simple textarea {
        padding: 0.875rem 1rem;
    }
}

/* Animation d'apparition */
.contact-form-container-simple {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item span,
.contact-item a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Social Section */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(167, 0, 30, 0.3);
}



.footer-signature {
    padding-top: 1rem;
}

.signature-content {
    display: flex;
    justify-content: center; 
    align-items: center;     
    padding: 1rem 0;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.copyright span {
    font-size: 0.85rem;
    color: #6c757d;
}

.developer {
    color: var(--primary);
    text-decoration: none;
    margin-left: 0;
}

.developer:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.developer::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.developer:hover::after {
    width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Animation d'apparition des cartes */
.membre-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.membre-card:nth-child(1) { animation-delay: 0.1s; }
.membre-card:nth-child(2) { animation-delay: 0.2s; }
.membre-card:nth-child(3) { animation-delay: 0.3s; }
.membre-card:nth-child(4) { animation-delay: 0.4s; }
.membre-card:nth-child(5) { animation-delay: 0.5s; }
.membre-card:nth-child(6) { animation-delay: 0.6s; }
.membre-card:nth-child(7) { animation-delay: 0.7s; }
.membre-card:nth-child(8) { animation-delay: 0.8s; }
.membre-card:nth-child(9) { animation-delay: 0.9s; }

/* Animation pour les cartes d'archives */
.archive-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.archive-card:nth-child(1) { animation-delay: 0.2s; }
.archive-card:nth-child(2) { animation-delay: 0.3s; }
.archive-card:nth-child(3) { animation-delay: 0.4s; }

/* Animation d'entrée pour les logos partenaires */
.partenaire-logo-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpPartenaire 0.6s ease forwards;
}

@keyframes fadeInUpPartenaire {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais d'animation pour partenaires */
.partenaire-logo-item:nth-child(1) { animation-delay: 0.1s; }
.partenaire-logo-item:nth-child(2) { animation-delay: 0.2s; }
.partenaire-logo-item:nth-child(3) { animation-delay: 0.3s; }
.partenaire-logo-item:nth-child(4) { animation-delay: 0.4s; }
.partenaire-logo-item:nth-child(5) { animation-delay: 0.5s; }
.partenaire-logo-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== VERSION MOBILE ===== */
@media (max-width: 1024px) {
    .nav-center {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        margin-top: 1rem;
        left: auto;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-brand,
    .nav-actions {
        position: static;
        transform: none;
    }

    .edition-card,
    .atrium-card {
        grid-template-columns: 1fr;
    }
    
    .edition-cover,
    .atrium-cover {
        min-height: 300px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .edition-details,
    .atrium-details {
        padding: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-slide-primary,
    .btn-slide-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }

    .carousel-section {
        min-height: 500px;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .membre-card {
        padding: 1.5rem;
    }
    
    .membre-image {
        width: 120px;
        height: 120px;
    }
    
    .membre-nom {
        font-size: 1.1rem;
    }
    
    .membre-role {
        font-size: 0.9rem;
    }
    
    .linkedin-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .edition-details {
        padding: 2rem;
    }
    
    .edition-title {
        font-size: 1.5rem;
    }
    
    .edition-actions {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .archives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .archive-card {
        padding: 1.5rem;
    }
    
    .archives-title {
        font-size: 1.5rem;
    }
    
    .archive-theme {
        font-size: 1.1rem;
    }
    
    .btn-archives-all {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .atrium-title {
        font-size: 1.8rem;
    }
    
    .atrium-actions {
        flex-direction: column;
    }
    
    .btn-atrium-download {
        width: 100%;
        justify-content: center;
    }
    
    .partenaire-categorie {
        margin-bottom: 3rem;
    }
    
    .categorie-header {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .categorie-title {
        font-size: 1.3rem;
        min-width: 200px;
    }
    
    .partenaires-logos-grid {
        gap: 1.5rem;
    }
    
    .single-logo {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .partenaires-logos-grid:not(.single-logo) {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .gold-logos {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
    
    .silver-logos,
    .bronze-logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .partenaire-logo-box {
        height: 90px;
        padding: 0.4rem;
    }
    
    .single-logo .partenaire-logo-box {
        height: 110px;
        padding: 0.6rem;
    }
    
    .gold-logos .partenaire-logo-box {
        height: 80px;
        padding: 0.4rem;
    }
    
    .silver-logos .partenaire-logo-box,
    .bronze-logos .partenaire-logo-box {
        height: 70px;
        padding: 0.3rem;
    }
    
    .footer {
        padding: 4rem 0 2.5rem;
        margin-top: 2.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-main {
        gap: 3rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 2rem;
        margin-top: 2rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0.75rem 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-main {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }

    .brand-text h3 {
        font-size: 1.2rem;
    }

    .brand-text p {
        font-size: 0.8rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .footer-divider {
        margin: 1rem 0;
        gap: 0.6rem;
    }

    .footer-divider .dot {
        width: 5px;
        height: 5px;
    }

    .copyright span {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 2rem 0.5rem 1rem;
        margin-top: 1rem;
    }

    .footer-container {
        padding: 0 0.5rem;
    }

    .footer-main {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .brand-text h3 {
        font-size: 1rem;
    }

    .contact-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright span {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
        order: 2;
    }

    .nav-actions {
        order: 1;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-actions .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .nav-brand {
        order: 0;
        flex: 0 0 auto;
    }

    .brand-text {
        display: none;
    }

    /* MENU MOBILE */
    .nav-center {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: var(--shadow-heavy);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
        left: auto;
    }

    .nav-center.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        border-radius: 12px;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-slide-primary,
    .btn-slide-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .edition-badge {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo-wrapper {
        width: 40px;
        height: 40px;
    }

    .nav-actions .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .mobile-toggle {
        padding: 0.375rem;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }

    .slide-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .slide-subtitle {
        font-size: 0.9rem;
    }

    .slide-actions {
        gap: 0.5rem;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .membre-card {
        padding: 1.25rem;
    }

    .edition-details {
        padding: 1.5rem;
    }
    
    .edition-title {
        font-size: 1.3rem;
    }
    
    .edition-description {
        font-size: 1rem;
    }
    
    .archives-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .archives-header {
        margin-bottom: 2rem;
    }
    
    .archive-card {
        padding: 1.25rem;
    }
    
    .archive-preview {
        width: 60px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .atrium-details {
        padding: 1.5rem;
    }
    
    .atrium-title {
        font-size: 1.5rem;
    }
    
    .atrium-description {
        font-size: 1rem;
    }
    
    .categorie-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .categorie-line {
        width: 80px;
    }
    
    .categorie-title {
        min-width: auto;
        font-size: 1.2rem;
    }
    
    .partenaires-logos-grid:not(.single-logo) {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .gold-logos {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
    
    .silver-logos,
    .bronze-logos {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .partenaire-logo-box {
        height: 80px;
        padding: 0.3rem;
    }
    
    .single-logo .partenaire-logo-box {
        height: 100px;
        padding: 0.5rem;
    }
    
    .gold-logos .partenaire-logo-box {
        height: 70px;
        padding: 0.3rem;
    }
    
    .silver-logos .partenaire-logo-box,
    .bronze-logos .partenaire-logo-box {
        height: 60px;
        padding: 0.2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .motto-creative {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.8rem 1rem;
    }
    
    .word {
        font-size: 0.8rem;
    }
    
    .motto-decoration {
        margin-left: 0;
        margin-top: 0.3rem;
    }
}

/* Amélioration des performances d'animation */
.carousel-slide {
    will-change: transform;
    backface-visibility: hidden;
}

.membre-card, .archive-card, .edition-card, .atrium-card {
    will-change: transform;
}

/* Prévention du zoom sur les inputs iOS */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Section Contact */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Informations de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

/* Formulaire de contact */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

/* Centrer la signature / copyright dans le footer */
.footer-signature .signature-content {
    display: flex;
    justify-content: center; /* centre horizontalement */
    align-items: center;     /* centre verticalement */
    padding: 1rem 0;
}

.footer-signature .copyright {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap; /* pour mobile : élément sur plusieurs lignes si nécessaire */
}

/* optionnel : petit style pour le lien développeur */
.footer-signature .developer {
    color: var(--primary);
    text-decoration: none;
    margin-left: 0;
}
/* Styles pour la page Participer */
.contact-rapide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-rapide-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.contact-rapide-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.rapide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rapide-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.rapide-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.rapide-link:hover {
    color: var(--primary-dark);
}

.rapide-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}
/* ===== CORRECTIONS MOBILE POUR PARTICIPER ===== */

@media (max-width: 768px) {
    .participer-hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }

    .participer-hero .section-title {
        font-size: 2rem;
        color: var(--white);
        text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.842);
    }

    .participer-hero .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .participer-content {
        padding: 3rem 0;
    }

    .methodes-participation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .methode-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .methode-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .methode-card h3 {
        font-size: 1.3rem;
    }

    .methode-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-methode {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .contact-direct {
        padding: 2rem 1rem;
        margin: 0 0.5rem 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-person {
        padding: 1.5rem;
    }

    .person-avatar {
        width: 80px;
        height: 80px;
    }

    .contact-rapide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-rapide-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .rapide-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .participer-form-section {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }

    .section-header .section-title {
        font-size: 1.8rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .participer-hero {
        padding: 80px 0 40px;
    }

    .participer-hero .section-title {
        font-size: 1.8rem;
    }

    .methode-card {
        padding: 1.5rem 1rem;
    }

    .methode-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-person {
        padding: 1.25rem;
    }

    .person-avatar {
        width: 70px;
        height: 70px;
    }

    .form-group-simple input,
    .form-group-simple select,
    .form-group-simple textarea {
        padding: 0.875rem 1rem;
    }

    .btn-submit-simple {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Correction spécifique pour la navbar mobile */
@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand .brand-text {
        display: none;
    }

    .logo-wrapper {
        width: 40px;
        height: 40px;
    }

    .nav-actions .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .mobile-toggle {
        padding: 0.375rem;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
}

/* Assurer que la navbar mobile fonctionne */
.nav-center {
    display: flex;
}

@media (max-width: 640px) {
    .nav-center {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: var(--shadow-heavy);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-center.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
    }
}
/* ===== CORRECTIONS SPÉCIFIQUES POUR PARTICIPER.HTML MOBILE ===== */

@media (max-width: 768px) {
    /* Hero Section - Correction des marges et espacements */
    .participer-hero {
        padding: 100px 0 40px !important;
        margin-top: 70px;
        min-height: auto;
    }

    .participer-hero .section-title {
        font-size: 2rem !important;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 1rem;
    }

    .participer-hero .section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Contenu principal - Espacement entre les sections */
    .participer-content {
        padding: 2rem 0 !important;
    }

    .participer-content .container {
        padding: 0 1rem;
    }

    /* Méthodes de participation - Espacement et alignement */
    .methodes-participation {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .methode-card {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
        text-align: center;
    }

    .methode-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin: 0 auto 1.5rem !important;
    }

    .methode-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .methode-card p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6;
    }

    .btn-methode {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        justify-content: center;
        margin-top: 1rem;
    }

    /* Section Contact Direct - Espacement et structure */
    .contact-direct {
        padding: 2.5rem 1.5rem !important;
        margin: 2rem 0 3rem !important;
        border-radius: 16px;
    }

    .contact-direct .section-header {
        margin-bottom: 2rem !important;
    }

    .contact-direct .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-direct .section-subtitle {
        font-size: 1.1rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .contact-person {
        padding: 2rem 1.5rem !important;
        text-align: center;
        margin: 0 !important;
    }

    .person-avatar {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto 1.5rem !important;
    }

    .person-info h4 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }

    .person-role {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .person-contact {
        gap: 1rem !important;
    }

    .person-link {
        font-size: 1rem !important;
        justify-content: center;
    }

    /* Contact Rapide - Structure améliorée */
    .contact-rapide-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }

    .contact-rapide-item {
        padding: 2rem 1.5rem !important;
        flex-direction: row !important;
        text-align: left !important;
        gap: 1.5rem !important;
        margin: 0 !important;
    }

    .rapide-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        flex-shrink: 0;
    }

    .rapide-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }

    .rapide-link {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .rapide-info p {
        font-size: 0.95rem !important;
    }

    /* Section Formulaire - Espacement et structure */
    .participer-form-section {
        padding: 2.5rem 1.5rem !important;
        margin: 2rem 0 0 !important;
        border-radius: 16px;
    }

    .participer-form-section .section-header {
        margin-bottom: 2rem !important;
    }

    .participer-form-section .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .participer-form-section .section-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Formulaire - Ajustements mobiles */
    .contact-form-container-simple {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .contact-form-container-simple::before {
        display: none;
    }

    .contact-form-simple {
        gap: 1.5rem !important;
    }

    .form-row-simple {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .form-group-simple {
        gap: 0.75rem !important;
    }

    .form-group-simple label {
        font-size: 1rem !important;
        font-weight: 600;
    }

    .form-group-simple input,
    .form-group-simple select,
    .form-group-simple textarea {
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        border: 2px solid var(--gray-light);
        border-radius: 12px;
    }

    .form-group-simple textarea {
        min-height: 120px !important;
    }

    .btn-submit-simple {
        padding: 1.25rem 2rem !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Version très mobile - Ajustements supplémentaires */
    .participer-hero {
        padding: 90px 0 30px !important;
    }

    .participer-hero .section-title {
        font-size: 1.8rem !important;
    }

    .participer-hero .section-subtitle {
        font-size: 1rem !important;
    }

    .participer-content {
        padding: 1.5rem 0 !important;
    }

    .methodes-participation {
        gap: 1.5rem !important;
    }

    .methode-card {
        padding: 1.5rem 1rem !important;
    }

    .methode-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }

    .methode-card h3 {
        font-size: 1.3rem !important;
    }

    .contact-direct,
    .participer-form-section {
        padding: 2rem 1rem !important;
        margin: 1.5rem 0 !important;
    }

    .contact-person {
        padding: 1.5rem 1rem !important;
    }

    .person-avatar {
        width: 80px !important;
        height: 80px !important;
    }

    .contact-rapide-item {
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
    }

    .rapide-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }

    .form-group-simple input,
    .form-group-simple select,
    .form-group-simple textarea {
        padding: 0.875rem 1rem !important;
    }
}

/* ===== CORRECTIONS GÉNÉRALES POUR L'ESPACEMENT ===== */

/* Assurer un espacement cohérent entre toutes les sections */
.participer-content > .container > * {
    margin-bottom: 4rem;
}

.participer-content > .container > *:last-child {
    margin-bottom: 0;
}

/* Animation d'entrée pour toutes les sections */
.methodes-participation,
.contact-direct,
.participer-form-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.methodes-participation {
    animation-delay: 0.1s;
}

.contact-direct {
    animation-delay: 0.3s;
}

.participer-form-section {
    animation-delay: 0.5s;
}

/* ===== CORRECTIONS SPÉCIFIQUES POUR LA NAVBAR MOBILE ===== */

@media (max-width: 640px) {
    /* S'assurer que la navbar ne chevauche pas le contenu */
    .participer-hero {
        margin-top: 70px !important;
    }

    /* Correction de l'ordre des éléments dans la navbar */
    .nav-container {
        padding: 0 1rem;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-brand {
        order: 1;
        flex: 0 0 auto;
    }

    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    .mobile-toggle {
        order: 3;
        margin-left: 0.5rem;
    }

    .nav-actions .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Menu mobile amélioré */
    .nav-center {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: var(--shadow-heavy);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-center.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* ===== CORRECTIONS POUR LES TRÈS PETITS ÉCRANS ===== */

@media (max-width: 360px) {
    .participer-hero .section-title {
        font-size: 1.6rem !important;
    }

    .methode-card {
        padding: 1.25rem 0.875rem !important;
    }

    .contact-direct,
    .participer-form-section {
        padding: 1.5rem 0.875rem !important;
    }

    .contact-rapide-item {
        padding: 1.25rem 0.875rem !important;
    }

    .btn-methode,
    .btn-submit-simple {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* ===== AMÉLIORATION DE LA LISIBILITÉ ===== */

/* S'assurer que le texte est bien lisible sur mobile */
@media (max-width: 768px) {
    .section-title {
        line-height: 1.2;
    }

    .section-subtitle {
        line-height: 1.4;
    }

    .methode-card p,
    .contact-direct p,
    .participer-form-section p {
        line-height: 1.5;
    }
}

/* ===== CORRECTION DU FOOTER SUR MOBILE ===== */

@media (max-width: 768px) {
    .footer {
        margin-top: 3rem;
    }
}

/* ===== CORRECTIONS SPÉCIFIQUES POUR CONTACT RAPIDE MOBILE ===== */

@media (max-width: 768px) {
    /* Contact Rapide - Réduction de la taille des cases */
    .contact-rapide-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .contact-rapide-item {
        padding: 1.5rem 1rem !important;
        flex-direction: row !important;
        text-align: left !important;
        gap: 1rem !important;
        margin: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .rapide-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .rapide-info {
        flex: 1;
        min-width: 0; /* Permet au texte de s'adapter */
    }

    .rapide-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3;
    }

    .rapide-link {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        word-break: break-all; /* Permet aux longs numéros/emails de s'adapter */
        overflow-wrap: break-word;
    }

    .rapide-info p {
        font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.4;
        color: var(--gray);
    }

    /* Version encore plus compacte pour très petits écrans */
    @media (max-width: 480px) {
        .contact-rapide-item {
            padding: 1.25rem 0.875rem !important;
            gap: 0.875rem !important;
        }

        .rapide-icon {
            width: 45px !important;
            height: 45px !important;
            font-size: 1.2rem !important;
        }

        .rapide-info h3 {
            font-size: 1rem !important;
            margin-bottom: 0.375rem !important;
        }

        .rapide-link {
            font-size: 0.9rem !important;
        }

        .rapide-info p {
            font-size: 0.8rem !important;
        }
    }

    /* Correction spécifique pour les très petits écrans */
    @media (max-width: 360px) {
        .contact-rapide-item {
            padding: 1rem 0.75rem !important;
            gap: 0.75rem !important;
        }

        .rapide-icon {
            width: 40px !important;
            height: 40px !important;
            font-size: 1.1rem !important;
        }

        .rapide-info h3 {
            font-size: 0.95rem !important;
        }

        .rapide-link {
            font-size: 0.85rem !important;
        }
    }
}

/* ===== STYLE ALTERNATIF PLUS COMPACT ===== */

/* Option 2 : Version horizontale ultra-compacte */
@media (max-width: 480px) {
    .contact-rapide-grid.compact {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .contact-rapide-item.compact {
        padding: 1rem !important;
        gap: 0.75rem !important;
        align-items: center;
    }

    .rapide-icon.compact {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .rapide-info.compact h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .rapide-link.compact {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
    }

    .rapide-info.compact p {
        display: none; /* Cache la description sur mobile très compact */
    }
}

/* ===== CORRECTION SPÉCIFIQUE POUR LES NUMÉROS DE TÉLÉPHONE ===== */

/* Assurer que les numéros de téléphone et emails se cassent correctement */
.rapide-link[href^="tel:"],
.rapide-link[href^="mailto:"] {
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Style spécifique pour les liens de contact */
@media (max-width: 768px) {
    .rapide-link {
        display: block;
        padding: 0.25rem 0;
        line-height: 1.3;
    }
}

/* ===== VERSION AMÉLIORÉE AVEC FLEXBOX ===== */

/* Structure flexbox pour mieux contrôler l'espace */
.contact-rapide-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rapide-info {
    flex: 1;
    min-width: 0; /* Important pour le text-overflow */
}

/* Assurer que le texte ne dépasse pas */
.rapide-link {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .rapide-link {
        white-space: normal; /* Permet le retour à la ligne sur mobile */
        word-break: break-word;
    }
}

/* ===== SECTION NOTRE FORUM - ÉLÉGANTE & CRÉATIVE ===== */

.our-forum-section {
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* ===== FORUM PRESENTATION - DESIGN PREMIUM ===== */
.forum-presentation-premium {
    padding: 6rem 0 5rem;
    background: linear-gradient(180deg, 
        #ffffff 0%,
        #fafafa 50%,
        #ffffff 100%);
    position: relative;
    margin-bottom: 2rem;
}

.forum-presentation-premium::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    border-radius: 2px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ===== ACCENT DÉCORATIF SUPÉRIEUR ===== */
.forum-accent-top {
    display: none;
}

/* ===== EN-TÊTE ÉLÉGANT AVEC DÉCORATION ===== */
.forum-header-elegant {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.accent-line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    border-radius: 2px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accent-line-left {
    direction: rtl;
}

.forum-title-elegant {
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--black);
    margin: 0;
    line-height: 1.1;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
    position: relative;
}

.forum-title-elegant::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary) 0%,
        var(--primary) 100%);
    border-radius: 2px;
}

.forum-edition-elegant {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--primary);
    margin: 1.5rem 0 0 0;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

/* ===== GRILLE CONTENU PRINCIPAL ===== */
.content-grid-elegant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== COLONNE TEXTE - HOMOGÈNE ET ÉLÉGANTE ===== */
.text-column-elegant {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Paragraphes - Style unifié et homogène */
.paragraph-elegant {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--gray-dark);
    margin: 0;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.4s ease;
}

.paragraph-elegant strong {
    font-weight: 600;
    color: var(--black);
}

.paragraph-elegant em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

/* ===== COLONNE IMAGE - HERO ===== */
.image-column-elegant {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-hero-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(167, 0, 30, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.image-hero-container:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 40px 100px rgba(167, 0, 30, 0.15),
        0 0 0 1px rgba(167, 0, 30, 0.12);
}

.image-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.image-hero-container:hover .image-hero {
    transform: scale(1.06);
}

.image-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(167, 0, 30, 0.06) 0%,
        rgba(167, 0, 30, 0.01) 100%);
    pointer-events: none;
    border-radius: 20px;
    mix-blend-mode: overlay;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .forum-title-elegant {
        font-size: 3.3rem;
    }

    .content-grid-elegant {
        gap: 3.5rem;
    }

    .paragraph-elegant {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .forum-presentation-premium {
        padding: 4rem 0 5rem;
    }

    .forum-header-elegant {
        margin-bottom: 3.5rem;
    }

    .forum-title-elegant {
        font-size: 3rem;
    }

    .content-grid-elegant {
        gap: 3rem;
    }

    .accent-line {
        max-width: 60px;
    }

    .paragraph-elegant {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .forum-accent-top {
        display: none;
    }

    .forum-presentation-premium {
        padding: 3rem 0 3rem;
    }

    .container-wide {
        padding: 0 1.5rem;
    }

    .forum-header-elegant {
        margin-bottom: 2rem;
    }

    .header-decoration {
        gap: 1rem;
        flex-direction: column;
    }

    .accent-line {
        display: none;
    }

    .forum-title-elegant {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .forum-title-elegant::after {
        bottom: -8px;
        width: 50px;
        height: 2px;
    }

    .forum-edition-elegant {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .content-grid-elegant {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-column-elegant {
        gap: 0.6rem;
    }

    .paragraph-elegant {
        font-size: 1rem;
        line-height: 1.7;
    }

    .image-hero-container {
        aspect-ratio: 1/1;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .forum-presentation-premium {
        padding: 2rem 0 2.5rem;
    }

    .container-wide {
        padding: 0 1rem;
    }

    .forum-header-elegant {
        margin-bottom: 1.5rem;
    }

    .forum-title-elegant {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .forum-title-elegant::after {
        bottom: -6px;
        width: 40px;
    }

    .forum-edition-elegant {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        letter-spacing: 1px;
    }

    .content-grid-elegant {
        gap: 1.5rem;
    }

    .text-column-elegant {
        gap: 0.5rem;
    }

    .paragraph-elegant {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .image-hero-container {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 360px) {
    .forum-accent-top {
        display: none;
    }

    .forum-presentation-premium {
        padding: 1.5rem 0 2rem;
    }

    .container-wide {
        padding: 0 0.75rem;
    }

    .forum-header-elegant {
        margin-bottom: 1.2rem;
    }

    .forum-title-elegant {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }

    .forum-title-elegant::after {
        bottom: -6px;
        width: 30px;
        height: 1.5px;
    }

    .forum-edition-elegant {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-top: 0.5rem;
    }

    .content-grid-elegant {
        gap: 1rem;
    }

    .text-column-elegant {
        gap: 0.4rem;
    }

    .paragraph-elegant {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .image-hero-container {
        aspect-ratio: 3/4;
        margin-top: 0.75rem;
    }

    .image-hero-container {
        border-radius: 12px;
    }

    .image-hero {
        border-radius: 12px;
    }
}

/* ===== PARTIE 2: STATISTIQUES - PREMIUM & ÉLÉGANT ===== */
.forum-statistics {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 5rem;
    background: linear-gradient(180deg,
        #ffffff 0%,
        #fafafa 30%,
        #ffffff 100%);
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Ombre douce au-dessus des statistiques pour la profondeur */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(167, 0, 30, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(250, 250, 250, 0.98) 100%);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 1px;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    width: 60px;
}

.stat-card:hover {
    transform: translateY(-16px);
    box-shadow: 
        0 30px 80px rgba(167, 0, 30, 0.12),
        0 0 0 1px rgba(167, 0, 30, 0.08);
    border-top-color: var(--primary);
}

.stat-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
    transition: all 0.4s ease;
}

.plus-sign {
    color: var(--primary);
    font-weight: 400;
}

.stat-label {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 0.5rem;
}

.stat-label::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== RESPONSIVE STATISTIQUES ===== */
@media (max-width: 1024px) {
    .forum-statistics {
        padding: 5rem 2rem;
    }

    .stats-grid {
        gap: 2.5rem;
    }

    .stat-card {
        padding: 2.75rem 2.25rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .forum-statistics {
        padding: 3rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        text-align: center;
        min-height: auto;
    }

    .stat-card::before {
        display: none;
    }

    .stat-card::after {
        display: none;
    }

    .stat-card:hover {
        transform: translateY(-8px);
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 1rem;
        padding-bottom: 0;
    }

    .stat-label::before {
        bottom: 0;
        width: 40px;
    }
}

@media (max-width: 480px) {
    .forum-statistics {
        padding: 2rem 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
        gap: 0.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-label::before {
        width: 35px;
        height: 1px;
    }
}

@media (max-width: 360px) {
    .forum-statistics {
        padding: 1.5rem 0.75rem;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.2rem 0.75rem;
        gap: 0.5rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-label::before {
        width: 30px;
        height: 1px;
    }
}

/* ===== PARTIE 3: VIDÉO ===== */
.forum-video {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.forum-video::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    border-radius: 2px;
}

.video-header-forum {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.video-header-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.video-accent-line-left {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    display: block;
    border-radius: 2px;
}

.video-title-forum {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.video-subtitle-forum {
    font-size: 1.15rem;
    color: var(--gray-dark);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.video-header-decoration-bottom {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.video-accent-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.video-container-immersive {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
    margin-bottom: 3rem;
}

.video-container-immersive:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.video-wrapper-immersive {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-placeholder:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Gradient overlay premium */
.video-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.play-button-immersive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(167, 0, 30, 0.88) 0%,
        rgba(138, 0, 25, 0.85) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    cursor: pointer;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 40px rgba(167, 0, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.play-button-immersive::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(167, 0, 30, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-button-immersive:hover {
    background: linear-gradient(135deg, 
        var(--primary) 0%,
        #8A0019 100%);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 
        0 20px 80px rgba(167, 0, 30, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Overlay text premium */
.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 3rem;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.video-overlay-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-placeholder:hover .video-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.video-overlay-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
}

.video-overlay-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video stats bar premium */
.video-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(167, 0, 30, 0.1);
}

.video-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.video-stat-item:first-child {
    padding-left: 0;
}

.video-stat-item:last-child {
    padding-right: 0;
}

.video-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(167, 0, 30, 0.2) 50%, transparent 100%);
    margin: 0 0.5rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(167, 0, 30, 0.1) 0%, rgba(167, 0, 30, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    font-family: 'Georgia', serif;
}

.stat-number span {
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 400;
    margin: 0;
}

/* ===== RESPONSIVE VIDEO ===== */
@media (max-width: 1024px) {
    .forum-video {
        padding: 5rem 2rem;
    }

    .video-title-forum {
        font-size: 2.8rem;
    }

    .video-subtitle-forum {
        font-size: 1rem;
    }

    .play-button-immersive {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .play-button-immersive::after {
        width: 120px;
        height: 120px;
    }

    .video-overlay-title {
        font-size: 2rem;
    }

    .video-stats-bar {
        padding: 2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .forum-video {
        padding: 4rem 1.5rem;
    }

    .video-header-decoration {
        margin-bottom: 1rem;
    }

    .video-accent-line-left {
        width: 60px;
        height: 2px;
    }

    .video-title-forum {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .video-subtitle-forum {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .video-header-decoration-bottom {
        margin-top: 1.5rem;
    }

    .video-container-immersive {
        margin-bottom: 2rem;
    }

    .video-wrapper-immersive {
        aspect-ratio: 16 / 9;
    }

    .play-button-immersive {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .play-button-immersive::after {
        width: 110px;
        height: 110px;
    }

    .video-overlay-text {
        padding: 3rem 2rem;
    }

    .video-overlay-title {
        font-size: 1.8rem;
    }

    .video-overlay-subtitle {
        font-size: 0.9rem;
    }

    .video-stats-bar {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .video-stat-item {
        padding: 1rem 0 !important;
        gap: 1rem;
    }

    .video-stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .forum-video {
        padding: 3rem 1rem;
    }

    .video-accent-line-left {
        width: 50px;
        height: 1.5px;
    }

    .video-title-forum {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .video-subtitle-forum {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .video-header-decoration-bottom {
        margin-top: 1rem;
    }

    .video-container-immersive {
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .video-wrapper-immersive {
        aspect-ratio: 16 / 9;
    }

    .play-button-immersive {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .play-button-immersive::after {
        width: 100px;
        height: 100px;
    }

    .video-overlay-text {
        padding: 2rem 1.5rem;
    }

    .video-overlay-title {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .video-overlay-subtitle {
        font-size: 0.8rem;
    }

    .video-stats-bar {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1rem;
        border-radius: 16px;
    }

    .video-stat-item {
        padding: 0.8rem 0 !important;
        gap: 0.8rem;
    }

    .video-stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .stat-content {
        gap: 0.1rem;
    }
}

@media (max-width: 360px) {
    .forum-video {
        padding: 2rem 0.75rem;
    }

    .video-accent-line-left {
        width: 40px;
        height: 1px;
    }

    .video-title-forum {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .video-subtitle-forum {
        font-size: 0.85rem;
    }

    .video-header-decoration-bottom {
        margin-top: 0.8rem;
    }

    .video-accent-dot {
        width: 6px;
        height: 6px;
    }

    .play-button-immersive {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .play-button-immersive::after {
        width: 90px;
        height: 90px;
        border-width: 1.5px;
    }

    .video-overlay-title {
        font-size: 1.3rem;
    }

    .video-stats-bar {
        padding: 1rem 0.75rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ===== PARTIE 4: TÉMOIGNAGES ===== */
.forum-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(250, 250, 250, 0.98) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(167, 0, 30, 0.04);
    border: 1px solid rgba(167, 0, 30, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 70px rgba(167, 0, 30, 0.12),
        0 0 0 1px rgba(167, 0, 30, 0.08);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0.25rem 0 0 0;
}

/* ===== MEDIA QUERIES POUR TÉMOIGNAGES SUR MOBILE ===== */
@media (max-width: 768px) {
    .forum-testimonials {
        padding: 3rem 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .testimonials-header {
        margin-bottom: 2rem !important;
    }
    
    .testimonials-title {
        font-size: 2rem !important;
    }
    
    .testimonials-subtitle {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .forum-testimonials {
        padding: 2rem 0.75rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .testimonials-header {
        margin-bottom: 1.5rem !important;
    }
    
    .testimonials-title {
        font-size: 1.75rem !important;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem !important;
    }
}

/* ===== PARTIE 5: CTA FINAL ===== */
.forum-cta-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    margin-top: 2rem;
}

.forum-cta-premium::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
    border-radius: 2px;
}

.cta-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    display: block;
}

.cta-title-premium {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-highlight {
    color: var(--primary);
    font-weight: 400;
}

.cta-subtitle-premium {
    font-size: 1.15rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-decoration-bottom {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-accent-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    animation: pulse-dot 2s infinite ease-in-out;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 15px 50px rgba(167, 0, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-family: 'Inter', sans-serif;
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-premium:hover::before {
    left: 100%;
}

.cta-button-premium:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 80px rgba(167, 0, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-button-text {
    font-weight: 400;
}

.cta-arrow {
    font-size: 1.3rem;
    font-weight: 300;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-premium:hover .cta-arrow {
    transform: translateX(8px);
}

/* ===== RESPONSIVE CTA PREMIUM ===== */
@media (max-width: 1024px) {
    .forum-cta-premium {
        padding: 5rem 2rem;
    }

    .cta-title-premium {
        font-size: 2.8rem;
    }

    .cta-subtitle-premium {
        font-size: 1rem;
    }

    .cta-button-premium {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .forum-cta-premium {
        padding: 4rem 1.5rem;
    }

    .cta-accent-line {
        width: 60px;
        height: 2px;
    }

    .cta-title-premium {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle-premium {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-decoration-bottom {
        margin-top: 1.5rem;
    }

    .cta-button-premium {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .forum-cta-premium {
        padding: 3rem 1rem;
    }

    .cta-accent-line {
        width: 50px;
        height: 1.5px;
    }

    .cta-title-premium {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .cta-subtitle-premium {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .cta-button-premium {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .cta-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .forum-cta-premium {
        padding: 2rem 0.75rem;
    }

    .cta-accent-line {
        width: 40px;
        height: 1px;
    }

    .cta-title-premium {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .cta-subtitle-premium {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .cta-accent-dot {
        width: 6px;
        height: 6px;
    }

    .cta-button-premium {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ===== RESPONSIVE - PRÉSENTATION PREMIUM ===== */

@media (max-width: 1200px) {
    .presentation-grid-premium {
        gap: 3rem;
    }
    
    .forum-title-premium {
        font-size: 3.6rem;
    }
}

@media (max-width: 1024px) {
    .presentation-grid-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .forum-presentation-premium {
        padding: 4rem 0 5rem;
    }
    
    .forum-title-premium {
        font-size: 3.2rem;
    }
    
    .patronage-royal-title {
        font-size: 2.4rem;
    }
    
    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .forum-presentation-premium {
        padding: 3rem 0 4rem;
    }
    
    .royal-patronage-section {
        margin-bottom: 2rem;
    }
    
    .patronage-prefix {
        font-size: 0.85rem;
    }
    
    .patronage-royal-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .forum-header-section {
        margin-bottom: 3rem;
    }
    
    .forum-title-premium {
        font-size: 2.4rem;
    }
    
    .forum-edition-badge {
        font-size: 0.95rem;
        padding: 0.6rem 2rem;
    }
    
    .text-block p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .text-intro {
        font-size: 1.1rem;
    }
    
    .highlight-block {
        padding: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .official-logo-section {
        padding: 3rem 0 0;
    }
    
    .official-logo {
        max-width: 140px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .forum-presentation-premium {
        padding: 2.5rem 0 3.5rem;
    }
    
    .royal-patronage-section {
        margin-bottom: 1.5rem;
    }
    
    .patronage-prefix {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .patronage-royal-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .patronage-divider {
        width: 60px;
        height: 2px;
    }
    
    .forum-header-section {
        margin-bottom: 2rem;
    }
    
    .forum-title-premium {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .forum-edition-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem;
        letter-spacing: 1px;
    }
    
    .presentation-grid-premium {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .text-block {
        padding: 1rem 0;
    }
    
    .text-block p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .text-intro {
        font-size: 1rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
    
    .official-logo-section {
        padding: 2.5rem 0 0;
    }
    
    .logo-label {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-container {
        padding: 1rem 2rem;
    }
    
    .official-logo {
        max-width: 120px;
        height: 60px;
    }
}

/* ===== CORRECTIONS FINALES POUR LA SECTION CONTACT RAPIDE ===== */

@media (max-width: 768px) {
    /* Réduction globale de la section Contact Rapide */
    .contact-direct#contact-rapide {
        padding: 2rem 1rem !important;
        margin: 2rem 0 !important;
    }

    .contact-direct#contact-rapide .section-header {
        margin-bottom: 1.5rem !important;
    }

    .contact-direct#contact-rapide .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-direct#contact-rapide .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }

    /* Cases Contact Rapide - Version finale compacte */
    .contact-rapide-grid {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .contact-rapide-item {
        padding: 1.25rem 1rem !important;
        min-height: 80px !important;
        align-items: center;
    }

    .rapide-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }

    .rapide-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .rapide-link {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }

    .rapide-info p {
        font-size: 0.8rem !important;
        line-height: 1.3;
        margin-top: 0.25rem !important;
    }
}

/* Version ultra-mobile */
@media (max-width: 360px) {
    .contact-rapide-item {
        padding: 1rem 0.75rem !important;
        min-height: 70px !important;
        gap: 0.75rem !important;
    }

    .rapide-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .rapide-info h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.375rem !important;
    }

    .rapide-link {
        font-size: 0.85rem !important;
    }

    .rapide-info p {
        font-size: 0.75rem !important;
    }
}

/* ===== CORRECTION SPÉCIFIQUE POUR L'AFFICHAGE DES NUMÉROS ===== */

/* Permettre aux numéros de téléphone de se casser intelligemment */
.rapide-link[href^="tel:"] {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Style pour les emails */
.rapide-link[href^="mailto:"] {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* ===== AMÉLIORATION VISUELLE ===== */

/* Ajouter une séparation visuelle entre les éléments */
@media (max-width: 768px) {
    .contact-rapide-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 1.25rem !important;
    }

    .contact-rapide-item:last-child {
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .contact-rapide-grid {
        gap: 0 !important;
        padding: 0.5rem 0 !important;
    }
}

/* ===== CORRECTION ESPACEMENT ENTRE TÉLÉPHONE ET EMAIL ===== */

@media (max-width: 768px) {
    /* Contact Rapide - Ajout d'espace entre les éléments */
    .contact-rapide-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important; /* ESPACE AJOUTÉ ICI */
        margin-top: 1.5rem !important;
    }

    .contact-rapide-item {
        padding: 1.25rem 1rem !important;
        min-height: 80px !important;
        align-items: center;
        margin-bottom: 0 !important;
    }

    /* Assurer que chaque item a son propre espace */
    .contact-rapide-item:first-child {
        margin-bottom: 0.75rem !important; /* ESPACE ENTRE TÉLÉPHONE ET EMAIL */
    }

    .rapide-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }

    .rapide-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .rapide-link {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }

    .rapide-info p {
        font-size: 0.8rem !important;
        line-height: 1.3;
        margin-top: 0.25rem !important;
    }
}

/* Version encore plus espacée si besoin */
@media (max-width: 480px) {
    .contact-rapide-grid {
        gap: 1rem !important; /* PLUS D'ESPACE SUR PETITS ÉCRANS */
    }

    .contact-rapide-item:first-child {
        margin-bottom: 1rem !important; /* ENCORE PLUS D'ESPACE */
    }

    .contact-rapide-item {
        padding: 1rem 0.875rem !important;
        min-height: 75px !important;
    }
}

/* ===== SOLUTION ALTERNATIVE AVEC BORDURE ===== */

/* Option avec séparation visuelle */
@media (max-width: 768px) {
    .contact-rapide-grid.with-space {
        gap: 1rem !important;
    }

    .contact-rapide-item.with-space {
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-rapide-item.with-space:last-child {
        margin-bottom: 0 !important;
    }
}

/* ===== CORRECTION ULTIME - VERSION SIMPLIFIÉE ===== */

/* Méthode la plus simple pour ajouter de l'espace */
@media (max-width: 768px) {
    .contact-rapide-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important; /* ESPACE DIRECT ENTRE LES ÉLÉMENTS */
    }

    .contact-rapide-item {
        padding: 1.25rem 1rem !important;
        background: var(--gray-light) !important;
        border-radius: 12px !important;
        margin: 0 !important; /* SUPPRIME TOUTES LES MARGES EXISTANTES */
    }

    /* Supprimer tout espacement supplémentaire problématique */
    .contact-rapide-item + .contact-rapide-item {
        margin-top: 0 !important;
    }
}

/* ===== VERSION AVEC ESPACEMENT CLAIR ===== */

@media (max-width: 768px) {
    /* RÉINITIALISATION COMPLÈTE */
    #contact-rapide .contact-rapide-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important; /* ESPACE CLAIR ENTRE TÉLÉPHONE ET EMAIL */
        margin-top: 1.5rem !important;
    }

    #contact-rapide .contact-rapide-item {
        padding: 1.25rem 1rem !important;
        background: var(--gray-light) !important;
        border-radius: 12px !important;
        margin: 0 !important;
        border: none !important;
    }

    /* S'assurer qu'aucun élément n'est collé */
    #contact-rapide .contact-rapide-item:first-child {
        margin-bottom: 0 !important;
    }

    #contact-rapide .contact-rapide-item:last-child {
        margin-top: 0 !important;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    #contact-rapide .contact-rapide-grid {
        gap: 1rem !important; /* ENCORE PLUS D'ESPACE SUR TRÈS PETITS ÉCRANS */
    }
}

/* = SOLUTION GARANTIE SANS ESPACE PROBLÉMATIQUE = */
@media (max-width: 768px) {
    /* Supprimer tous les styles existants problématiques */
    .contact-rapide-grid * {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Recréer une structure propre */
    .contact-rapide-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important; /* ESPACE ENTRE TÉLÉPHONE ET EMAIL */
        margin-top: 1.5rem !important;
    }

    .contact-rapide-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1.25rem 1rem !important;
        background: var(--gray-light) !important;
        border-radius: 12px !important;
        min-height: 80px !important;
    }

    .rapide-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .rapide-info {
        flex: 1;
    }

    .rapide-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .rapide-link {
        font-size: 0.9rem !important;
        display: block;
        margin-bottom: 0.25rem !important;
    }

    .rapide-info p {
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
}
/* Section Contact Direct */
        .contact-direct {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-heavy);
            margin-bottom: 4rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .contact-person {
            text-align: center;
            padding: 2rem;
            background: var(--gray-light);
            border-radius: 16px;
            transition: var(--transition-smooth);
        }

        .contact-person:hover {
            transform: translateY(-5px);
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .person-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            overflow: hidden;
            border: 4px solid var(--primary);
        }

        .person-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .person-info h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .person-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .person-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .person-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
            justify-content: center;
        }

        .person-link:hover {
            color: var(--primary);
        }

        /* Contact Rapide */
        .contact-rapide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-rapide-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--gray-light);
            border-radius: 16px;
            transition: var(--transition-smooth);
        }

        .contact-rapide-item:hover {
            transform: translateY(-5px);
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .rapide-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .rapide-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .rapide-link {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .rapide-link:hover {
            color: var(--primary-dark);
        }

        .rapide-info p {
            color: var(--gray);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* HERO */
.hero {
    background: var(--background);
}

.hero-grid {
    max-width: 1200px;
    margin: auto;
    min-height: 90vh;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 300;
    margin: 1.5rem 0;
}

.hero-content p {
    max-width: 520px;
    color: var(--gray);
    font-size: 1.05rem;
}

.cta {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.9rem 2.6rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* HERO VISUAL */
.hero-visual {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.45)
        ),
        url("forum.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 420px;
}

/* SECTION */
.section {
    padding: 6rem 2rem;
}

.section-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.section-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-text p {
    color: var(--gray);
}

.section-points ul {
    list-style: none;
}

.section-points li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* NUMBERS */
.numbers {
    background: var(--background);
    padding: 5rem 2rem;
}

.numbers-grid {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.numbers strong {
    font-size: 2.2rem;
    font-weight: 500;
}

.numbers span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

/* FOOTER */
.footer {
    padding: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid,
    .section-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .numbers-grid {
        flex-direction: column;
        gap: 2rem;
    }
}


/* ===== HERO RAFFINÉ ===== */
.hero-refined {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, 
        var(--charcoal) 0%, 
        var(--navy) 50%,
        var(--burgundy) 100%);
    color: var(--ivory);
    overflow: hidden;
    padding: 4rem 0;
}

.hero-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 32, 0.1) 0%, transparent 50%);
}

.hero-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 2px, 
            rgba(212, 175, 55, 0.03) 2px, 
            rgba(212, 175, 55, 0.03) 4px);
}

.hero-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            transparent 60%, 
            rgba(0, 0, 0, 0.3) 100%);
}

.container-refined {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.hero-elegant-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Badge élégant */
.elegant-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(128, 0, 32, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    padding: 0.8rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.elegant-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: var(--transition-prestige);
}

.elegant-badge:hover::before {
    left: 100%;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.8;
}

/* Titre principal */
.title-elegant-wrapper {
    margin-bottom: 2.5rem;
}

.elegant-main-title {
    font-family: 'Georgia', serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-line-1 {
    display: block;
    color: var(--ivory);
    font-weight: 300;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, 
        var(--gold-primary) 0%, 
        var(--gold-secondary) 50%, 
        var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    position: relative;
}

.title-line-2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        transparent);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--gold-primary), 
        transparent);
}

.decoration-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Sous-titre */
.elegant-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--silver);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.subtitle-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

/* Description élégante */
.elegant-description {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.elegant-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(248, 245, 240, 0.9);
    font-weight: 300;
    font-style: italic;
}

.highlight {
    color: var(--gold-primary);
    font-weight: 400;
}

/* Statistiques élégantes */
.elegant-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-prestige);
    min-width: 200px;
}

.stat-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.stat-ornament {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(128, 0, 32, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--silver);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.stat-divider {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* CTA sophistiqué */
.elegant-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-refined-primary {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, 
        var(--gold-primary) 0%, 
        var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: 1.5rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-prestige);
    position: relative;
    overflow: hidden;
    box-shadow: var(--prestige-shadow);
}

.cta-refined-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: var(--transition-prestige);
}

.cta-refined-primary:hover::before {
    left: 100%;
}

.cta-refined-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
    gap: 2rem;
}

.cta-refined-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--ivory);
    padding: 1.5rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-prestige);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-refined-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition-prestige);
    z-index: -1;
}

.cta-refined-secondary:hover::before {
    width: 100%;
}

.cta-refined-secondary:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-icon {
    transition: var(--transition-prestige);
}

/* Scroll raffiné */
.scroll-refined {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--silver);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.scroll-arrow {
    animation: float-arrow 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

@keyframes float-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== SECTION VISION PRESTIGE ===== */
.vision-prestige-section {
    padding: 8rem 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.vision-prestige-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        transparent);
}

/* En-tête élégant */
.section-header-prestige {
    margin-bottom: 6rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.decoration-left,
.decoration-right {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--gold-primary), 
        transparent);
}

.decoration-right {
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary));
}

.header-title-wrapper {
    text-align: center;
    min-width: 600px;
}

.section-pre-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    position: relative;
}

.section-pre-title::after {
    content: '✦';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
}

.section-title-prestige {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
}

.title-part-1 {
    display: block;
}

.title-part-2 {
    display: block;
    color: var(--burgundy);
    font-weight: 400;
}

/* Contenu visionnaire */
.vision-content-prestige {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.vision-text-column {
    padding-right: 3rem;
}

.vision-intro {
    margin-bottom: 3rem;
}

.intro-ornament {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.vision-intro-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.vision-paragraphs {
    margin-bottom: 4rem;
}

.paragraph-elegant {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.paragraph-elegant::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: calc(100% - 1em);
    background: linear-gradient(to bottom, 
        var(--gold-primary), 
        var(--burgundy));
    border-radius: 2px;
}

.paragraph-elegant p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 300;
}

.paragraph-elegant strong {
    font-weight: 500;
    color: var(--burgundy);
}

.paragraph-elegant em {
    font-style: italic;
    color: var(--gold-dark);
}

.paragraph-elegant.highlight {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(128, 0, 32, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 10px 10px 0;
}

.paragraph-elegant.highlight p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--burgundy);
}

/* Chiffres clés */
.prestige-figures {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.figure-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.figure-number {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.figure-label {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.figure-line {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

/* Image d'ambiance */
.vision-image-column {
    position: relative;
}

.prestige-image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--prestige-shadow);
    margin-bottom: 2rem;
}

.prestige-image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1s ease;
}

.prestige-image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay-prestige {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(10, 25, 49, 0.8) 0%, 
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.overlay-content {
    color: var(--ivory);
}

.overlay-content i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.image-caption {
    position: absolute;
    bottom: -25px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--ivory);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.caption-text {
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 300;
}

.caption-ornament {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

/* Citations prestigieuses */
.prestige-quotes {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(128, 0, 32, 0.05) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.quote-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.quote-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.quote-content {
    flex: 1;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 1.1rem;
}

.quote-content cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--burgundy);
    font-size: 0.9rem;
}

/* Valeurs fondamentales */
.core-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-prestige);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.03) 100%);
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--prestige-shadow);
}

.value-card.featured {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(128, 0, 32, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        var(--gold-primary) 0%, 
        var(--burgundy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.value-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-description {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.value-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--gold-primary), 
        var(--burgundy));
    border-radius: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .vision-content-prestige {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .vision-text-column {
        padding-right: 0;
    }
    
    .core-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container-refined {
        padding: 0 2rem;
    }
    
    .elegant-main-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    
    .section-title-prestige {
        font-size: 2.5rem;
    }
    
    .elegant-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 180px;
    }
    
    .header-title-wrapper {
        min-width: auto;
    }
    
    .elegant-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-refined {
        padding: 6rem 0;
    }
    
    .elegant-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .elegant-stats {
        flex-direction: column;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .prestige-figures {
        flex-direction: column;
        gap: 2rem;
    }
    
    .figure-item {
        padding-bottom: 1.5rem;
    }
    
    .figure-line {
        bottom: 0;
    }
    
    .core-values {
        grid-template-columns: 1fr;
    }
    
    .header-decoration {
        gap: 1rem;
    }
    
    .decoration-left,
    .decoration-right {
        display: none;
    }
}

@media (max-width: 576px) {
    .container-refined {
        padding: 0 1.5rem;
    }
    
    .elegant-main-title {
        font-size: 2.8rem;
    }
    
    .section-title-prestige {
        font-size: 2rem;
    }
    
    .vision-intro-title {
        font-size: 2rem;
    }
    
    .title-decoration {
        gap: 1rem;
    }
    
    .decoration-line {
        width: 50px;
    }
}
/* ===== VARIABLES ===== */
:root {
    --primary: #a7001e;
    --primary-light: #d32f2f;
    --primary-dark: #7b0000;
    --secondary: #0d47a1;
    --black: #121212;
    --gray-dark: #424242;
    --gray: #757575;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    
    --elegant-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-elegant: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ET BASES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* ===== HERO ÉLÉGANT ===== */
.hero-elegant {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    text-align: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ornament-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(167, 0, 30, 0.03) 0%, 
        rgba(167, 0, 30, 0.01) 100%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    width: 100%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: rgba(167, 0, 30, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(167, 0, 30, 0.1);
}

.badge-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-right: 1rem;
}

.badge-year::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(167, 0, 30, 0.3);
}

.badge-edition {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-dark);
    letter-spacing: 1px;
}

/* Titre */
.title-wrapper {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: 'Georgia', serif;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary);
    font-weight: 400;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent);
    margin: 1.5rem auto;
}

/* Sous-titre */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.subtitle-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(167, 0, 30, 0.2), 
        transparent);
}

/* Description */
.hero-description {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.hero-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-dark);
    font-weight: 300;
}

.hero-description strong {
    font-weight: 500;
    color: var(--black);
}

/* Statistiques minimalistes */
.hero-stats-minimal {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-elegant);
    box-shadow: var(--soft-shadow);
}

.stat-minimal:hover {
    transform: translateY(-5px);
    box-shadow: var(--elegant-shadow);
    border-color: rgba(167, 0, 30, 0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(167, 0, 30, 0.1) 0%, 
        rgba(167, 0, 30, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    text-align: left;
}

/* CTA élégant */
.hero-cta-elegant {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-elegant {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(167, 0, 30, 0.2);
}

.cta-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: var(--transition-elegant);
}

.cta-elegant:hover::before {
    left: 100%;
}

.cta-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(167, 0, 30, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    border-bottom: 2px solid transparent;
}

.cta-secondary:hover {
    border-bottom-color: var(--primary);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-elegant:hover .cta-arrow {
    transform: translateX(5px);
}

/* ===== SECTION VISION ===== */
.vision-section {
    padding: 8rem 0;
    background: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title-elegant {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--black);
}

.title-pre {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.vision-text {
    margin-bottom: 3rem;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.vision-text strong {
    color: var(--black);
    font-weight: 600;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillar {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-elegant);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--elegant-shadow);
    border-color: var(--primary-light);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(167, 0, 30, 0.1) 0%, 
        rgba(167, 0, 30, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.pillar h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.pillar p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.vision-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--elegant-shadow);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.overlay-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== SECTION VIDÉO IMMERSIVE ===== */
.video-immersive-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--gray-light) 0%, 
        var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.video-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.video-title-line {
    display: block;
}

.video-title-line.accent {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.video-container-immersive {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--elegant-shadow);
}

.video-wrapper-immersive {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.video-placeholder:hover img {
    opacity: 0.5;
}

.play-button-immersive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(167, 0, 30, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition-elegant);
    z-index: 2;
}

.play-button-immersive:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px rgba(167, 0, 30, 0.5);
}

.video-overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    color: var(--white);
    z-index: 2;
}

.video-overlay-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-overlay-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2.5rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
}

.video-stat i {
    font-size: 2rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: rgba(167, 0, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ===== SECTION TEMOIGNAGES ===== */
.temoignages-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle-elegant {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.temoignage-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--elegant-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-elegant);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.temoignage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.temoignage-content {
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(167, 0, 30, 0.1);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.temoignage-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ===== SECTION CTA FINAL ===== */
.cta-final-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--primary) 100%);
    color: var(--white);
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-title .accent {
    color: var(--white);
    position: relative;
}

.cta-title .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary,
.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    border: none;
    cursor: pointer;
}

.cta-button-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.cta-button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-button-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.cta-note i {
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .vision-grid,
    .temoignages-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .vision-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .section-title-elegant,
    .video-title,
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-minimal {
        gap: 2rem;
    }
    
    .vision-pillars,
    .video-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-wrapper-immersive {
        height: 500px;
    }
    
    .hero-cta-elegant {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-elegant {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-badge {
        margin-bottom: 2rem;
    }
    
    .hero-stats-minimal {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-minimal {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stat-content {
        align-items: center;
        text-align: center;
    }
    
    .vision-pillars,
    .video-stats {
        grid-template-columns: 1fr;
    }
    
    .title-underline {
        width: 60px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary,
    .cta-button-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .section-title-elegant,
    .video-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .video-wrapper-immersive {
        height: 300px;
    }
    
    .play-button-immersive {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-elegant,
    .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* ===== SECTION CTA FINAL ===== */
.cta-final-section {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(167, 0, 30, 0.03) 0%, rgba(167, 0, 30, 0.01) 100%);
    pointer-events: none;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-title .accent {
    color: var(--primary);
    position: relative;
}

.cta-title .accent::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:active {
    transform: translateY(-1px);
}

.cta-button-primary span {
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-final-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-button-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button-primary {
        padding: 0.875rem 1.5rem;
    }
}

/* ===== ESPACEMENT COHÉRENT ENTRE SECTIONS ===== */

/* Réinitialiser les styles problématiques */
.cta-final-section {
    padding-bottom: 4rem !important; /* Même que les autres sections */
    margin-bottom: 0 !important;
}

.partenaires-section {
    padding-top: 4rem !important; /* Même que les autres sections */
    margin-top: 0 !important;
}

/* Assurer que les sections suivent le même espacement */
.cta-final-section + .partenaires-section {
    margin-top: 0 !important;
}
.partenaires-section {
    background: linear-gradient(135deg, var(--white) 0%, #f0efef 100%) !important;
    position: relative;
    z-index: 1;
}
/* ===== DESIGN PREMIUM ===== */
.numbers {
    padding: 8rem 0;
    background: #fafafa;
    position: relative;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.numbers-grid > div {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Bordure rouge subtile en haut */
.numbers-grid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a7001e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.numbers-grid > div:hover::before {
    transform: scaleX(1);
}

.numbers-grid strong {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    color: #121212;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

/* Accent rouge sur les chiffres */
.numbers-grid strong::after {
    content: '+';
    position: absolute;
    color: #a7001e;
    font-weight: 400;
    margin-left: 2px;
}

.numbers-grid > div:nth-child(1) strong::after {
    content: '';
}

.numbers-grid span {
    display: block;
    font-size: 1rem;
    color: #757575;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Effet au survol */
.numbers-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(167, 0, 30, 0.08);
}

.numbers-grid > div:hover strong {
    color: #a7001e;
}
/* ===== SECTION FORUM SIMPLE & ÉLÉGANTE ===== */
.section {
    padding: 8rem 0;
    background: #ffffff;
}

.section-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-text {
    text-align: left;
    margin-bottom: 4rem;
}

.section-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #121212;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.section-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #424242;
    max-width: 700px;
    margin: 0 auto;
}

.section-points {
    max-width: 600px;
    margin: 0 auto;
}

.section-points ul {
    list-style: none;
    padding: 0;
}

.section-points li {
    padding: 1.5rem 0;
    color: #424242;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
}

.section-points li:last-child {
    border-bottom: none;
}

/* Point rouge simple */
.section-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #a7001e;
    border-radius: 50%;
}

/* Animation simple */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section {
        padding: 6rem 0;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
    
    .section-text p {
        font-size: 1.1rem;
    }
    
    .section-points li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}
/* ===== HERO SECTION - DESIGN ÉLÉGANT ===== */
.hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Effet de fond subtil */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(167, 0, 30, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 0, 30, 0.02) 0%, transparent 50%);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Contenu principal */
.hero-content {
    padding-right: 40px;
}

.hero-kicker {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a7001e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-left: 24px;
}

/* Point rouge élégant */
.hero-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #a7001e;
    border-radius: 50%;
}

/* Titre principal */
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.1;
    color: #121212;
    margin-bottom: 32px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 48px;
    font-weight: 350;
    max-width: 520px;
}

/* Bouton CTA élégant */
.cta {
    display: inline-block;
    padding: 18px 40px;
    background: #a7001e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #a7001e;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
}

.cta:hover::before {
    left: 100%;
}

.cta:hover {
    background: #8a0019;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 0, 30, 0.2);
}

/* Section visuelle */
.hero-visual {
    height: 500px;
    background: 
        linear-gradient(135deg, 
            rgba(167, 0, 30, 0.8), 
            rgba(138, 0, 25, 0.9)),
        url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Effet de superposition élégant */
.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(167, 0, 30, 0.3), 
        rgba(138, 0, 25, 0.4));
    mix-blend-mode: overlay;
}

/* Animation reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Délais d'animation */
.hero-kicker.reveal {
    transition-delay: 0.2s;
}

.hero-content h1.reveal {
    transition-delay: 0.3s;
}

.hero-content p.reveal {
    transition-delay: 0.4s;
}

.cta.reveal {
    transition-delay: 0.5s;
}

.hero-visual.reveal {
    transition-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
        padding: 0 32px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-kicker {
        padding-left: 0;
        padding-top: 24px;
    }
    
    .hero-kicker::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    
    .hero-visual {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-grid {
        padding: 0 24px;
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .hero-visual {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta {
        padding: 16px 32px;
        width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        height: 280px;
    }
}
/* ===== VISION SECTION ===== */
.vision {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* En-tête */
.vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #a7001e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vision-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #121212;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    width: 60px;
    height: 2px;
    background: #a7001e;
    margin: 0 auto;
}

/* Grille Texte/Image */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Texte */
.vision-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #424242;
    margin-bottom: 25px;
}

.vision-text strong {
    color: #121212;
    font-weight: 500;
}

.highlight {
    background: #f8f8f8;
    padding: 25px;
    border-left: 4px solid #a7001e;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

/* Image */
.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(167, 0, 30, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.image-badge .years {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.image-badge .text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* Points forts */
.vision-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.point {
    text-align: center;
    padding: 30px 25px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
}

.point-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.point h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #121212;
    margin-bottom: 10px;
}

.point p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-header h2 {
        font-size: 2rem;
    }
    
    .vision-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-container img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .vision {
        padding: 60px 0;
    }
    
    .vision-header {
        margin-bottom: 40px;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -40px 20px 20px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .vision-header h2 {
        font-size: 1.8rem;
    }
    
    .vision-text p {
        font-size: 1rem;
    }
    
    .highlight {
        padding: 20px;
    }
    
    .point {
        padding: 25px 20px;
    }
}
/* ===== AVANTAGES STRATÉGIQUES ===== */
.strategic-advantages {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Effet de fond subtil */
.strategic-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(167, 0, 30, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(167, 0, 30, 0.015) 0%, transparent 50%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* En-tête de section */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #a7001e;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(167, 0, 30, 0.08);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #121212;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.header-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a7001e, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Grille des avantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Cartes d'avantages */
.advantage-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 0, 30, 0.15);
    box-shadow: 0 20px 60px rgba(167, 0, 30, 0.08);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a7001e, #ff4d6d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

/* En-tête des cartes */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.card-number {
    font-size: 14px;
    font-weight: 600;
    color: #a7001e;
    opacity: 0.7;
    letter-spacing: 1px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(167, 0, 30, 0.1) 0%, 
        rgba(167, 0, 30, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a7001e;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .card-icon {
    background: linear-gradient(135deg, #a7001e, #ff4d6d);
    color: #ffffff;
    transform: scale(1.1);
}

/* Contenu des cartes */
.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #121212;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 400;
}

.card-line {
    width: 40px;
    height: 2px;
    background: #a7001e;
    opacity: 0.5;
    margin-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .strategic-advantages {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .advantage-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .advantage-card h3 {
        font-size: 1.3rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .strategic-advantages {
        padding: 60px 0;
    }
    
    .advantage-card {
        padding: 35px 25px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-card p {
        font-size: 1rem;
    }
}
/* ===== SOLUTION DÉFINITIVE TÉMOIGNAGES ===== */

.forum-testimonials {
    padding: 4rem 0 !important;
    margin: 2rem auto !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

.forum-testimonials .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* WRAPPER - ÉLÉMENT CRITIQUE */
.testimonials-wrapper {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 1rem 0 2rem 0 !important;
    display: flex !important;
    justify-content: center !important;
}

/* GRID FIXED - NOUVELLE SOLUTION */
.testimonials-grid-fixed {
    display: flex !important;
    width: max-content !important; /* CRITIQUE : permet le scroll horizontal */
    gap: 2rem !important;
    padding: 0 1rem !important;
    transition: transform 0.3s ease !important;
}

/* Desktop: afficher 3 cartes côte à côte */
@media (min-width: 769px) {
    .testimonials-wrapper {
        overflow: visible !important;
    }
    
    .testimonials-grid-fixed {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        width: 100% !important;
        gap: 2rem !important;
        padding: 0 !important;
        transform: none !important;
    }
}

/* CARTES FIXED - CORRECTION DÉFINITIVE */
.testimonial-card-fixed {
    background: var(--white) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(167, 0, 30, 0.1) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 320px !important;
    width: 100% !important;
    min-width: 300px !important;
    max-width: 400px !important;
    flex-shrink: 0 !important; /* CRITIQUE : empêche le rétrécissement */
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Desktop: largeur automatique */
@media (min-width: 769px) {
    .testimonial-card-fixed {
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
    }
}

.testimonial-card-fixed:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 60px rgba(167, 0, 30, 0.15) !important;
}

.testimonial-content {
    flex: 1;
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
    font-style: italic;
    margin: 0;
    text-align: center;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

/* ===== MOBILE - CARROUSEL PARFAIT ===== */
@media (max-width: 768px) {
    .forum-testimonials {
        padding: 3rem 0 !important;
        width: 100%;
        margin: 0 !important;
    }
    
    .forum-testimonials .container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .testimonials-wrapper {
        width: 100vw !important;
        overflow: hidden !important;
        padding: 1rem 0 2rem 0 !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    
    .testimonials-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    
    .testimonials-grid-fixed {
        display: flex !important;
        width: 100vw !important;
        padding: 0 !important;
        gap: 0 !important;
        position: relative !important;
        transition: transform 0.4s ease !important;
    }
    
    /* UNE SEULE CARTE CENTRÉE À LA FOIS */
    .testimonial-card-fixed {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
        flex: 0 0 100vw !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .testimonial-content {
        max-width: calc(100vw - 3rem) !important;
    }
    
    .testimonials-title {
        font-size: 2rem !important;
    }
    
    .testimonials-subtitle {
        font-size: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .quote-mark {
        font-size: 3rem !important;
    }
    
    .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* ===== INDICATEURS ===== */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(167, 0, 30, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Cacher les indicateurs sur desktop */
@media (min-width: 769px) {
    .testimonials-indicators {
        display: none;
    }
}

/* ===== VERSION TRÈS MOBILE ===== */
@media (max-width: 480px) {
    .testimonial-card-fixed {
        width: calc(100vw - 2rem) !important;
        min-width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem) !important;
        padding: 1.75rem 1.25rem !important;
        margin: 0 1rem !important;
        flex: 0 0 calc(100vw - 2rem) !important;
        min-height: auto !important;
    }
    
    .testimonials-grid-fixed {
        width: 100vw !important;
        gap: 0 !important;
    }
    
    .quote-mark {
        font-size: 2.5rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
    }
}

/* ===== SOLUTION ALTERNATIVE SIMPLE ===== */
/* Si la solution ci-dessus ne fonctionne pas, utilisez celle-ci : */

.testimonials-grid-simple {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem 0;
}

.testimonials-grid-simple .testimonial-card-simple {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: center;
    margin: 0 2rem;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

@media (min-width: 769px) {
    .testimonials-grid-simple {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow: visible;
    }
    
    .testimonials-grid-simple .testimonial-card-simple {
        flex: none;
        margin: 0;
        width: 100%;
    }
}
/* ===== FLÈCHES MINIMALISTES - SOLUTION DÉFINITIVE ===== */

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.carousel-prev.minimal-arrow,
.carousel-next.minimal-arrow {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    opacity: 0.6;
}

.carousel-prev.minimal-arrow:hover,
.carousel-next.minimal-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Ajustement du contenu pour ne pas être caché */
.slide-content {
    padding: 0 60px;
    max-width: 85%;
    margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .carousel-controls {
        padding: 0 15px;
    }
    
    .carousel-prev.minimal-arrow,
    .carousel-next.minimal-arrow {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }
    
    .slide-content {
        padding: 0 50px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .carousel-prev.minimal-arrow,
    .carousel-next.minimal-arrow {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
    
    .slide-content {
        padding: 0 40px;
        max-width: 95%;
    }
}
/* ===== TÉMOIGNAGES CENTRÉS - SOLUTION DÉFINITIVE ===== */

.forum-testimonials {
    padding: 4rem 0;
    margin: 2rem auto;
    width: 100%;
    overflow: hidden;
}

.forum-testimonials .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* WRAPPER FIXE */
.testimonials-wrapper {
    width: 100%;
    overflow: visible;
    padding: 1rem 0 2rem;
}

/* GRID CENTRÉE - DESKTOP */
.testimonials-grid-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

/* CARTES CENTRÉES */
.testimonial-card-centered {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(167, 0, 30, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.testimonial-card-centered:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(167, 0, 30, 0.15);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

/* ===== MOBILE - CENTRAGE PARFAIT ===== */
@media (max-width: 768px) {
    .forum-testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-wrapper {
        padding: 0;
        overflow: visible;
    }
    
    /* CARROUSEL MOBILE CENTRÉ */
    .testimonials-grid-centered {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        padding: 1rem 0 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .testimonials-grid-centered::-webkit-scrollbar {
        display: none;
    }
    
    /* CHAQUE CARTE = 85% CENTRÉ */
    .testimonial-card-centered {
        flex: 0 0 calc(85% - 1.5rem);
        scroll-snap-align: center;
        min-width: calc(85% - 1.5rem);
        margin: 0 auto;
        padding: 2rem 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* ESPACE POUR LE CENTRAGE */
    .testimonials-grid-centered::before,
    .testimonials-grid-centered::after {
        content: '';
        flex: 0 0 calc((100% - 85%) / 2);
        min-width: calc((100% - 85%) / 2);
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ===== TRÈS PETITS ÉCRANS ===== */
@media (max-width: 480px) {
    .testimonial-card-centered {
        flex: 0 0 calc(90% - 1rem);
        min-width: calc(90% - 1rem);
        padding: 1.75rem 1.25rem;
    }
    
    .testimonials-grid-centered::before,
    .testimonials-grid-centered::after {
        flex: 0 0 calc((100% - 90%) / 2);
        min-width: calc((100% - 90%) / 2);
    }
    
    .testimonials-grid-centered {
        gap: 1rem;
        padding: 1rem 0 2rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-centered {
    animation: fadeInCenter 0.6s ease forwards;
}

.testimonial-card-centered:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-centered:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card-centered:nth-child(3) { animation-delay: 0.3s; }

/* Small-screen fix: ensure play button remains above overlay and clickable */
@media (max-width: 768px) {
    .video-placeholder { position: relative; }
    .play-button-immersive {
        z-index: 9999 !important;
        pointer-events: auto;
    }
    .video-overlay-text {
        z-index: 1 !important;
        pointer-events: none; /* allow taps to reach play button */
        padding-bottom: 1rem !important; /* reduce overlap on small screens */
    }
}
/* ===== SECTION ÉQUIPE SIMPLIFIÉE ===== */
.equipe-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 5rem 0;
}

.equipe-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Photo de groupe */
.equipe-photo {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.equipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.equipe-photo:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        transparent 70%
    );
    pointer-events: none;
}

/* Description */
.equipe-description {
    text-align: center;
    padding: 0 2rem;
}

.description-content {
    max-width: 700px;
    margin: 0 auto;
}

.equipe-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-divider-small {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.equipe-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.equipe-text:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .equipe-section {
        padding: 3rem 0;
    }
    
    .equipe-simple {
        gap: 2rem;
    }
    
    .equipe-photo {
        height: 300px;
        border-radius: 16px;
    }
    
    .equipe-description {
        padding: 0 1rem;
    }
    
    .equipe-subtitle {
        font-size: 1.6rem;
    }
    
    .title-divider-small {
        width: 50px;
        height: 2px;
        margin: 0.75rem auto 1.5rem;
    }
    
    .equipe-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .equipe-photo {
        height: 250px;
    }
    
    .equipe-subtitle {
        font-size: 1.4rem;
    }
    
    .equipe-text {
        font-size: 0.95rem;
    }
}
/* ===== BOUTON ARCHIVES ATRIUM ===== */
.atrium-section .archives-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.atrium-section .btn-archives-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
}

.atrium-section .btn-archives-all:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
    gap: 1rem;
}

.atrium-section .btn-archives-all:active {
    transform: translateY(-1px);
}

/* Responsive pour le bouton archives */
@media (max-width: 768px) {
    .atrium-section .archives-cta {
        margin-top: 2rem;
    }
    
    .atrium-section .btn-archives-all {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .atrium-section .archives-cta {
        margin-top: 1.5rem;
    }
    
    .atrium-section .btn-archives-all {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
