/* ====================================
   STYLE-1.CSS - Design moderne et épuré pour SFK9
   Version redesignée sans modification du CSS original
   ==================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Variables CSS pour la nouvelle charte graphique */
:root {
    /* Couleurs principales SFK9 - Palette du PDF */
    --primary-navy: #0D3657;
    --primary-red: #C02B49;
    --primary-cyan: #1F9ED9;
    --primary-yellow: #EEB525;
    --primary-gray: #E8E8E8;

    /* Couleurs neutres */
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #F8F8F8;

    /* Typographie */
    --font-heading: "Bebas Neue", sans-serif;
    --font-body: "Roboto", sans-serif;

    /* Espacements */
    --section-padding: 120px;
    --section-padding-tablet: 80px;
    --section-padding-mobile: 60px;

    /* Bordures */
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --border-radius-lg: 30px;

    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Typographie moderne */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 6vw, 72px); }
h3 { font-size: clamp(28px, 4vw, 48px); }
h4 { font-size: clamp(24px, 3vw, 36px); }
h5 { font-size: clamp(20px, 2.5vw, 28px); }
h6 { font-size: clamp(18px, 2vw, 24px); }

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Header moderne et minimaliste */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 80px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all var(--transition-normal);
}

.header-modern.scrolled {
    padding: 15px 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-modern img {
    height: 60px;
    transition: all var(--transition-normal);
}

.header-modern.scrolled .logo-modern img {
    height: 50px;
}

.nav-modern {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-modern a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.header-modern.scrolled .nav-modern a {
    color: var(--primary-navy);
}

.nav-modern a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.nav-modern a:hover {
    color: var(--primary-yellow);
}

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

.cta-btn-modern {
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(192, 43, 73, 0.4);
    border: 2px solid var(--primary-red);
}

.cta-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(192, 43, 73, 0.7);
    background: var(--white);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--primary-cyan);
}

.header-modern.scrolled .mobile-menu-btn {
    background: var(--primary-navy);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Split Screen Design (selon cahier de correction PDF) */
.hero-split {
    min-height: 75vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Barre jaune accent en haut */
.hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-yellow);
    z-index: 150;
}

/* Background Image Slider - Full Width */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-bg-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Left Panel with Blue Overlay - 55% width */
.hero-left-panel {
    position: relative;
    width: 55%;
    background: #0D3657;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 100px 60px 80px 80px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-content-inner {
    max-width: 700px;
    color: var(--white);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Text Styles */
.hero-edition {
    font-size: 16px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
}

.hero-edition sup {
    font-size: 12px;
    top: -0.4em;
}

.hero-main-title {
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-main-title em {
    font-style: italic;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
    margin-top: 5px;
}

.hero-year {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-yellow);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.hero-cta-primary,
.hero-cta-secondary {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.hero-cta-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(192, 43, 73, 0.4);
}

.hero-cta-primary:hover {
    background: #a02238;
    border-color: #a02238;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 43, 73, 0.6);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.hero-cta-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Hero Slider Pagination positioned at bottom */
.hero-slider-pagination {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 120 !important;
}

/* ===================================
   NOUVEAU HERO - STYLE ÉVÉNEMENTIEL MODERNE
   (Inspiré des modèles design/01.jpg et 02.jpg)
   =================================== */

.hero-event {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 80px 60px;
}

/* Image de fond en full width et cover */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vidéo de fond hero */
.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay violet/bleu profond par-dessus l'image */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: rgba(13, 54, 87, 0.85);
    z-index: 1;
}

/* PAS de barre verticale blanche - On supprime */

/* Icônes sociales gauche sans ligne */
.hero-social-left {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.hero-social-left a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s ease;
}

.hero-social-left a:hover {
    color: var(--primary-yellow);
}

.follow-text {
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
}

/* Contenu principal du hero */
.hero-event-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Zone de texte - À gauche */
.hero-text-zone {
    color: var(--white);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Zone countdown - À droite */
.hero-countdown-zone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-date-range {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.hero-event-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.9;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.title-highlight {
    color: var(--primary-yellow);
    font-style: italic;
}

.hero-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-location i {
    color: var(--primary-yellow);
    font-size: 20px;
}

/* Compteur de compte à rebours */
.hero-countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    min-width: 90px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.count-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.count-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bouton Découvrir */
.hero-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: #C02B49;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(192, 43, 73, 0.4);
    transition: all 0.3s ease;
}

.hero-discover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 43, 73, 0.6);
    background: #d63454;
}

.hero-discover-btn i {
    font-size: 18px;
}

/* Groupe de boutons CTA hero */
.hero-cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Bouton S'inscrire hero - visible uniquement sur mobile */
.hero-participate-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.hero-participate-btn:hover {
    background: var(--white);
    color: #C02B49;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.hero-participate-btn i {
    font-size: 18px;
}

/* Zone visuelle droite */
.hero-visuals {
    position: relative;
    height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Badge rotatif - EN BAS À DROITE comme le modèle */
.hero-badge-rotate {
    position: absolute;
    bottom: 120px;
    right: 50px;
    width: 130px;
    height: 130px;
    animation: rotateInfinite 20s linear infinite;
    z-index: 50;
}

@keyframes rotateInfinite {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation pulse pour le bouton vidéo */
@keyframes videoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 181, 37, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(238, 181, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 181, 37, 0);
    }
}

#openVideoModal {
    animation: videoPulse 2s ease-in-out infinite;
}

.badge-circle {
    width: 100%;
    height: 100%;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    fill: var(--primary-navy);
    letter-spacing: 2px;
}

.badge-circle circle {
    fill: var(--primary-yellow);
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-navy);
    animation: rotateReverse 20s linear infinite;
}

@keyframes rotateReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.badge-center sup {
    font-size: 24px;
}

/* Grille de carrés colorés - Exactement comme modèle 01.jpg */
.hero-grid-shapes {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, 120px);
    grid-template-rows: repeat(3, 120px);
    gap: 15px;
    z-index: 5;
}

.grid-square {
    width: 120px;
    height: 120px;
    border-radius: 15px;
}

.grid-blue {
    background: #4a90e2;
}

.grid-pink {
    background: #ff4d7d;
}

.grid-orange {
    background: #ff6b35;
}

.grid-blue-dark {
    background: #5856d6;
}

.grid-cyan {
    background: #1F9ED9;
}

.grid-purple {
    background: #7b68ee;
}

/* Petits bursts au-dessus des têtes - Exactement comme modèle */
.head-burst {
    position: absolute;
    top: 80px;
    width: 60px;
    height: 60px;
    z-index: 25;
}

.burst-left {
    left: 30%;
    background: #1F9ED9;
    opacity: 0.3;
}

.burst-right {
    right: 25%;
    background: #EEB525;
    opacity: 0.3;
}

/* Image de fond en full width et cover */
.hero-speakers-group {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 15;
    pointer-events: none;
}

.speakers-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* PAS de bande ondulée dans le modèle 01.jpg */

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section moderne avec espacement cohérent */
.section-modern {
    padding: var(--section-padding) 80px;
    position: relative;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--gray-light);
}

.section-gradient {
    background: var(--primary-navy);
    color: var(--white);
}

.section-dark {
    background: var(--primary-navy);
    color: var(--white);
}

.section-cyan {
    background: var(--primary-cyan);
    color: var(--white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Titres de section modernes */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(27, 157, 165, 0.15);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-gradient .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-gradient .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Section split - Texte + Image côte à côte */
.section-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-split.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.section-split-content h2 {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 30px;
    line-height: 1.1;
}

.section-split-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.section-split-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-split-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Content Wrapper - Image et Texte */
.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 50px;
}

.about-image-container {
    flex-shrink: 0;
    width: 450px;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

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

.about-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-text-container .section-label {
    text-align: left;
    margin-bottom: 15px;
}

.about-text-container .opportunity-cards-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Responsive About Section */
@media (max-width: 1200px) {
    .about-text-container .opportunity-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text-container .section-label {
        text-align: center;
    }

    .about-text-container .section-title {
        text-align: center !important;
    }

    .about-text-container .opportunity-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-text-container .opportunity-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Opportunity Cards - Effet hover spectaculaire */
.opportunity-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.opportunity-card {
    position: relative;
    perspective: 1000px;
}

.opportunity-card-inner {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--primary-gray);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.opportunity-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.opportunity-card:hover .opportunity-card-inner {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 50px rgba(27, 157, 165, 0.25);
}

.opportunity-card:hover .opportunity-accent {
    transform: scaleX(1);
}

.opportunity-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.opportunity-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.opportunity-icon i {
    position: relative;
    z-index: 1;
}

.opportunity-card:hover .opportunity-icon {
    transform: rotateY(360deg) scale(1.1);
}

.opportunity-card:hover .opportunity-icon::before {
    opacity: 1;
}

.opportunity-title {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.opportunity-card:hover .opportunity-title {
    color: var(--primary-cyan);
}

.opportunity-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    transition: color 0.3s ease;
}

.opportunity-card:hover .opportunity-text {
    color: var(--gray-dark);
}

/* Thematic Cards - Style index.php */
.thematic-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.thematic-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thematic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.thematic-card-content {
    padding: 30px;
}

.thematic-icon-wrapper {
    width: 102px;
    height: 102px;
    border: 10px solid #EDF3FE;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.thematic-icon-wrapper img {
    transition: transform 0.4s ease;
}

.thematic-card:hover .thematic-icon-wrapper img {
    transform: scaleX(-1);
}

.thematic-card-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.thematic-card:hover .thematic-card-title {
    color: var(--primary-cyan);
}

.thematic-card-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray-medium);
    line-height: 1.6;
}

.thematic-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: white;
    z-index: 1;
}

/* Responsive Thematic Cards */
@media (max-width: 1024px) {
    .thematic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .thematic-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Background image for thematiques section */
#thematiques {
    background-color: #0D3657 !important;
    position: relative;
    z-index: 1;
}

#thematiques::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/features-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Feature boxes - Moins répétitif */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-cyan);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-medium);
}

/* Program Tabs - Système d'onglets avec dates à gauche */
.program-tabs-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Navigation des onglets (gauche) */
.program-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-tab-btn {
    background: var(--white);
    border: 3px solid var(--primary-gray);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.program-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-cyan);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.program-tab-btn:hover::before,
.program-tab-btn.active::before {
    transform: scaleY(1);
}

.program-tab-btn:hover {
    border-color: var(--primary-cyan);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(27, 157, 165, 0.2);
}

.program-tab-btn.active {
    border-color: var(--primary-cyan);
    background: rgba(31, 158, 217, 0.05);
    box-shadow: 0 15px 40px rgba(27, 157, 165, 0.25);
}

.tab-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-cyan);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.program-tab-btn.active .tab-date {
    background: var(--primary-red);
    transform: scale(1.05);
}

.tab-day {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.tab-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.tab-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tab-weekday {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-theme {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

.program-tab-btn.active .tab-weekday {
    color: var(--primary-cyan);
}

.program-tab-btn.active .tab-theme {
    color: var(--primary-navy);
}

/* Contenu des onglets (droite) */
.program-tabs-content {
    position: relative;
    min-height: 500px;
    width: 100%;
    overflow-x: hidden;
}

.program-tab-panel {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    width: 100%;
}

.program-tab-panel.active {
    display: block;
}

.program-panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-cyan);
}

.program-panel-header i {
    font-size: 32px;
    color: var(--primary-cyan);
}

.program-panel-header h3 {
    font-size: 32px;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.program-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.schedule-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(27, 157, 165, 0.15);
    border-left-color: var(--primary-yellow);
}

.schedule-time {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: var(--font-body);
    min-width: 150px;
}

.schedule-time i {
    font-size: 22px;
    color: var(--primary-cyan);
}

.schedule-event {
    flex: 1;
}

.schedule-event h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-event p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

/* Program Event Cards avec images */
.program-event-card {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
}

.program-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 54, 87, 0.15);
}

.event-image {
    flex-shrink: 0;
    width: 220px;
    max-width: 220px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.event-details {
    flex: 1;
    padding: 25px 30px 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.event-time-location {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gray-medium);
    font-weight: 500;
}

.event-time span,
.event-location span {
    display: inline-block;
}

.event-time i {
    color: var(--primary-cyan);
    font-size: 18px;
}

.event-location i {
    color: var(--primary-red);
    font-size: 18px;
}

.event-title {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--primary-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    width: 100%;
}

.event-description {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
    display: block;
    width: 100%;
}

.event-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-yellow);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 8px;
}

/* Responsive pour les cartes d'événements */
@media (max-width: 1024px) {
    .program-event-card {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .event-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        flex-shrink: 0 !important;
    }

    .event-details {
        padding: 25px !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .program-event-card {
        flex-direction: column !important;
    }

    .event-image {
        height: 200px !important;
    }

    .event-details {
        padding: 20px !important;
    }

    .event-time-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .event-time,
    .event-location {
        font-size: 14px;
        width: 100%;
    }

    .event-title {
        font-size: 18px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .event-description {
        font-size: 14px !important;
        line-height: 1.5;
    }

    .event-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (max-width: 576px) {
    .event-image {
        height: 180px;
    }

    .event-details {
        padding: 15px !important;
    }

    .event-title {
        font-size: 16px !important;
    }

    .event-description {
        font-size: 13px !important;
    }

    .event-time,
    .event-location {
        font-size: 13px;
    }
}

/* Stats Section - Design moderne AMÉLIORÉ */
.stats-grid {
/*     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}


.stat-card {
    position: relative;
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 60px rgba(238, 181, 37, 0.5);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: clamp(56px, 7vw, 80px);
    font-family: var(--font-heading);
    background: var(--primary-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
    line-height: 1;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
    background: var(--primary-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.15);
}

.stat-label {
    font-size: 17px;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--primary-cyan);
}

/* Boutons modernes */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 43, 73, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(192, 43, 73, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-navy);
}

/* Save the Date Section */
.save-the-date {
    background: var(--primary-navy);
    padding: 80px 60px;
    text-align: center;
}

.save-the-date h2 {
    font-size: clamp(48px, 8vw, 96px);
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.save-the-date .dates {
    font-size: clamp(36px, 6vw, 72px);
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.save-the-date .location {
    font-size: 24px;
    color: var(--white);
    opacity: 0.9;
}

/* Footer moderne */
.footer-modern {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 80px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 60px;
        padding: 0 60px;
    }

    .header-modern {
        padding: 20px 60px;
    }

    .section-modern {
        padding: var(--section-padding-tablet) 60px;
    }

    .footer-modern {
        padding: 60px 60px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Responsive - Tablettes et Mobile */
@media (max-width: 1200px) {
    .header-modern {
        padding: 20px 60px;
    }

    .header-modern.scrolled {
        padding: 15px 60px;
    }

    .nav-modern {
        gap: 30px;
    }

    .nav-modern a {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .header-modern {
        padding: 20px 40px;
    }

    .header-modern.scrolled {
        padding: 15px 40px;
    }

    .nav-modern {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: var(--primary-navy);
        flex-direction: column;
        gap: 0;
        padding: 100px 30px 30px;
        transition: right var(--transition-normal);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-modern.active {
        right: 0;
    }

    .nav-modern li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-modern li:last-child {
        border-bottom: none;
    }

    .nav-modern a {
        display: block;
        padding: 18px 20px;
        font-size: 18px;
        color: var(--white) !important;
        border-left: 3px solid transparent;
        transition: all var(--transition-fast);
    }

    .nav-modern a:hover,
    .nav-modern a.active {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--primary-yellow);
        padding-left: 30px;
    }

    .nav-modern a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-btn-modern {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-main-content {
        padding-right: 0;
        padding-bottom: 450px;
    }

    .hero-geometric-bloc {
        width: 100%;
        height: 350px;
        left: 0;
        right: 0;
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 80px);
    }

    .hero-theme {
        font-size: clamp(28px, 6vw, 48px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-split.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --section-padding-tablet: 60px;
        --section-padding-mobile: 40px;
    }

    .header-modern {
        padding: 15px 30px;
    }

    .section-modern {
        padding: var(--section-padding-mobile) 30px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .hero-content-wrapper {
        padding: 0 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 18px;
    }

    .hero-date {
        font-size: 22px;
    }

    .hero-date i {
        font-size: 24px;
    }

    .hero-geometric-bloc {
        height: 300px;
        padding: 30px;
    }

    .geometric-pattern {
        width: 140px;
        height: 110px;
        top: 20px;
        right: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-modern {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hero Event - Responsive Tablet */
    .hero-event {
        min-height: 70vh;
        padding: 100px 30px 60px;
    }

    .hero-event-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text-zone {
        align-items: center;
        text-align: center;
    }

    .hero-countdown-zone {
        justify-content: center;
    }

    .hero-countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .countdown-box {
        min-width: auto;
        padding: 15px 10px;
    }

    .count-number {
        font-size: 32px;
    }

    .count-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .header-modern {
        padding: 15px 20px;
    }

    .logo-modern img {
        height: 45px;
    }

    .section-modern {
        padding: 40px 20px;
    }

    .hero-content-wrapper {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
    }

    .hero-theme {
        font-size: clamp(24px, 5vw, 36px);
    }

    .hero-edition {
        font-size: 24px;
    }

    .hero-btn {
        padding: 16px 25px;
        font-size: 16px;
    }

    .hero-btn i {
        font-size: 20px;
    }

    .hero-geometric-bloc {
        height: 250px;
        padding: 25px;
    }

    /* Hero Event - Responsive Mobile */
    .hero-event {
        min-height: auto;
        padding: 100px 20px 50px;
    }

    .hero-event-content {
        gap: 40px;
    }

    .hero-event-title {
        font-size: clamp(36px, 10vw, 60px);
        line-height: 1;
        margin-bottom: 20px;
    }

    .hero-date-range {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-discover-btn {
        padding: 12px 4px;
        font-size: 14px;
        width: 85%;
        justify-content: center;
    }

    .hero-participate-btn {
        display: inline-flex;
        padding: 12px 4px;
        font-size: 14px;
        width: 85%;
        justify-content: center;
    }

    .hero-countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .countdown-box {
        padding: 15px 8px;
    }

    .count-number {
        font-size: 28px;
    }

    .count-label {
        font-size: 9px;
    }

    .hero-organizer h3 {
        font-size: 18px;
    }

    .hero-organizer img {
        max-width: 180px;
    }

    .footer-modern {
        padding: 30px 20px 15px;
    }
}

/* Animations au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utilitaires */
.text-gradient {
    background: var(--primary-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container-fluid {
    max-width: 1920px;
    margin: 0 auto;
}

/* ===========================
   MODAL SAVE THE DATE
   =========================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 43, 71, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    transform: scale(0.8) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(192, 43, 73, 0.4);
}

.modal-close i {
    font-size: 22px;
    color: var(--primary-navy);
    transition: color 0.3s ease;
    font-weight: bold;
}

.modal-close:hover i {
    color: var(--white);
}

.modal-body {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.modal-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(27, 157, 165, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(27, 157, 165, 0);
    }
}

.modal-icon i {
    font-size: 32px;
    color: var(--white);
}

.modal-title {
    font-size: 32px;
    font-family: var(--font-heading);
    color: var(--primary-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-dates {
    font-size: 28px;
    font-family: var(--font-heading);
    background: var(--primary-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.modal-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-location i {
    font-size: 18px;
    color: var(--primary-cyan);
}

.modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-medium);
    margin-bottom: 25px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.modal-content-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--white);
    border-radius: 0 20px 20px 0;
}

.modal-text-wrapper {
    text-align: center;
    width: 100%;
}

.modal-big-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-big-dates {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.modal-big-location {
    font-size: 18px;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-big-location::before {
    content: '\eb81';
    font-family: 'remixicon';
    font-size: 20px;
}

/* Countdown Timer */
.modal-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(31, 158, 217, 0.05);
    border-radius: 12px;
    border: 2px solid var(--primary-cyan);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    background: var(--primary-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1;
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.countdown-separator {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin: 0 3px;
    align-self: center;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 32px;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-cyan);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(27, 157, 165, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(27, 157, 165, 0.6);
    background: var(--primary-red);
}

.modal-cta-btn i {
    font-size: 22px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
        flex-direction: column;
        max-height: 90vh;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        max-width: 100%;
        max-height: 50%;
        border-radius: 20px 20px 0 0;
    }

    .modal-image img {
        object-fit: contain;
    }

    .modal-content-right {
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 0 0 20px 20px;
    }

    .modal-cta-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* ===========================
   SECTION CCIFC MODERNE
   =========================== */
.ccifc-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.ccifc-text-block {
    position: relative;
}

.ccifc-text-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.ccifc-text-inner:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ccifc-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.ccifc-intro strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.ccifc-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 35px;
}

.ccifc-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ccifc-logo-box img {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Grille de statistiques */
.ccifc-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.ccifc-stat-card {
    position: relative;
}

.stat-card-inner {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ccifc-stat-card:hover .stat-card-inner {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(238, 181, 37, 0.4);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-red);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-icon i {
    position: relative;
    z-index: 1;
}

.ccifc-stat-card:hover .stat-icon {
    transform: rotateY(360deg) scale(1.1);
}

.ccifc-stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--primary-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.ccifc-stat-card:hover .stat-number {
    background: var(--primary-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.ccifc-stat-card:hover .stat-label {
    color: var(--primary-navy);
}

.stat-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ccifc-stat-card:hover .stat-accent {
    transform: scaleX(1);
}

/* Responsive CCIFC */
@media (max-width: 992px) {
    .ccifc-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ccifc-text-inner {
        padding: 40px 35px;
    }

    .ccifc-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .ccifc-text-inner {
        padding: 30px 25px;
    }

    .ccifc-intro {
        font-size: 18px;
    }

    .ccifc-description {
        font-size: 16px;
    }

    .stat-card-inner {
        padding: 30px 25px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* ===========================
   FAQ ACCORDION MODERNE
   =========================== */
.faq-accordion-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--primary-gray);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(27, 157, 165, 0.15);
}

.faq-accordion-item.active {
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(27, 157, 165, 0.2);
}

.faq-accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.faq-accordion-header:hover {
    background: rgba(31, 158, 217, 0.05);
}

.faq-accordion-item.active .faq-accordion-header {
    background: rgba(31, 158, 217, 0.05);
}

.faq-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-icon-box i {
    font-size: 28px;
    color: var(--white);
}

.faq-accordion-item.active .faq-icon-box {
    background: var(--primary-red);
    transform: scale(1.1) rotateY(360deg);
}

.faq-question {
    flex: 1;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-question {
    color: var(--primary-cyan);
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.faq-toggle-icon i {
    font-size: 24px;
    color: var(--primary-navy);
    transition: all 0.4s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
    background: var(--primary-cyan);
    transform: rotate(45deg);
}

.faq-accordion-item.active .faq-toggle-icon i {
    color: var(--white);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-accordion-inner {
    padding: 0 30px 30px 110px;
    animation: fadeIn 0.5s ease;
}

.faq-accordion-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin: 0;
}

.faq-accordion-inner strong {
    color: var(--primary-navy);
    font-weight: 700;
}

/* Responsive FAQ Accordion */
@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 20px 20px;
        gap: 15px;
    }

    .faq-icon-box {
        width: 50px;
        height: 50px;
    }

    .faq-icon-box i {
        font-size: 24px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-toggle-icon {
        width: 35px;
        height: 35px;
    }

    .faq-toggle-icon i {
        font-size: 20px;
    }

    .faq-accordion-inner {
        padding: 0 20px 25px 20px;
    }

    .faq-accordion-inner p {
        font-size: 16px;
    }
}

/* ===========================
   TIMELINE VERTICAL ZIGZAG
   =========================== */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 60px 0;
}

/* Ligne verticale centrale */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(13, 54, 87, 0.7)
        var(--primary-cyan) 0%,
        var(--primary-navy) 50%,
        var(--primary-red) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(27, 157, 165, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Items à gauche */
.timeline-item.timeline-left {
    justify-content: flex-start;
}

.timeline-item.timeline-left .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 40px;
}

.timeline-item.timeline-left .timeline-dot {
    right: calc(50% - 12px);
    left: auto;
}

/* Items à droite */
.timeline-item.timeline-right {
    justify-content: flex-end;
}

.timeline-item.timeline-right .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 40px;
}

.timeline-item.timeline-right .timeline-dot {
    left: calc(50% - 12px);
    right: auto;
}

/* Contenu de la timeline */
.timeline-content {
    position: relative;
    width: 45%;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(31, 43, 71, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 157, 165, 0.15);
    border-color: var(--primary-cyan);
}

/* Point de connexion */
.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--primary-cyan);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(27, 157, 165, 0.1);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-cyan);
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 8px rgba(27, 157, 165, 0.15);
    transform: translateY(-50%) scale(1.2);
}

/* Icône */
.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-cyan);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.timeline-icon i {
    font-size: 24px;
    color: var(--white);
}

.timeline-item:hover .timeline-icon {
    background: var(--primary-red);
    transform: rotateY(360deg) scale(1.1);
}

/* Numéro */
.timeline-number {
    position: absolute;
    top: 12px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(31, 43, 71, 0.04);
    line-height: 1;
    transition: all 0.4s ease;
}

.timeline-item.timeline-left .timeline-number {
    left: 15px;
}

.timeline-item.timeline-right .timeline-number {
    right: 15px;
}

.timeline-item:hover .timeline-number {
    color: rgba(27, 157, 165, 0.12);
    transform: scale(1.08);
}

/* Titre */
.timeline-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-title {
    color: var(--primary-cyan);
}

/* Texte */
.timeline-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline-container {
        padding: 40px 20px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        justify-content: flex-start;
    }

    .timeline-item.timeline-left .timeline-content,
    .timeline-item.timeline-right .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .timeline-item.timeline-left .timeline-dot,
    .timeline-item.timeline-right .timeline-dot {
        left: 12px;
        right: auto;
    }

    .timeline-item.timeline-left .timeline-number,
    .timeline-item.timeline-right .timeline-number {
        font-size: 60px;
        left: 20px;
        right: auto;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-icon i {
        font-size: 28px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-text {
        font-size: 15px;
    }
}

/* ===========================
   RESPONSIVE - MENU HAMBURGER
   =========================== */

/* Afficher le bouton hamburger sur tablettes et mobiles */
@media (max-width: 1024px) {
    /* Hero responsive */
    .hero-left-panel {
        width: 100%;
        clip-path: none;
        padding: 80px 40px 60px 40px;
    }

    .hero-content-inner {
        max-width: 100%;
    }

    .hero-main-title {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }

    /* Nouveau hero responsive */
    .hero-event {
        padding: 120px 40px 80px;
    }

    .hero-event-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-social-bar {
        display: none;
    }

    .hero-event-title {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-countdown {
        flex-wrap: wrap;
    }

    .countdown-box {
        min-width: 75px;
        padding: 15px;
    }

    .count-number {
        font-size: 32px;
    }

    .hero-visuals {
        height: 400px;
    }

    .hero-speakers-group {
        max-width: 600px;
    }

    .speakers-thumb {
        max-width: 500px;
    }

    .hero-badge-rotate {
        width: 140px;
        height: 140px;
        right: 30px;
    }

    .badge-center {
        font-size: 40px;
    }

    .geo-shape {
        transform: scale(0.8);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--primary-red);
        border-radius: 12px;
        transition: all var(--transition-normal);
        z-index: 1001;
    }

    .mobile-menu-btn:hover {
        background: var(--primary-cyan);
        transform: scale(1.05);
    }

    .mobile-menu-btn i {
        font-size: 24px;
    }

    /* Masquer la navigation et le bouton CTA par défaut sur mobile */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        padding: 100px 30px 30px;
    }

    nav.active {
        right: 0;
    }

    .nav-modern {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav-modern li {
        width: 100%;
        border-bottom: 1px solid var(--primary-gray);
    }

    .nav-modern a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        color: var(--primary-navy);
        font-weight: 600;
    }

    .nav-modern a::after {
        display: none;
    }

    .nav-modern a:hover {
        color: var(--primary-red);
        padding-left: 10px;
    }

    .cta-btn-modern {
        display: none;
    }

    /* Overlay sombre quand le menu est ouvert */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    /* Header responsive */
    .header-modern {
        padding: 15px 30px;
    }

    .header-modern.scrolled {
        padding: 12px 30px;
    }

    .logo-modern img {
        height: 50px;
    }
}

/* Responsive pour mobiles uniquement */
@media (max-width: 768px) {
    .header-modern {
        padding: 15px 20px;
    }

    nav {
        width: 100%;
        max-width: 100%;
        padding: 90px 25px 25px;
    }

    .logo-modern img {
        height: 45px;
    }

    .mobile-menu-btn {
        width: 45px;
        height: 45px;
    }

    .mobile-menu-btn i {
        font-size: 20px;
    }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        padding: 100px 40px 60px;
    }

    .hero-main-content {
        padding-right: 50px;
    }

    .hero-geometric-bloc {
        width: 350px;
        height: 320px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-left-panel {
        padding: 70px 25px 50px 25px;
    }

    .hero-main-title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 15px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-left-panel {
        padding: 60px 20px 40px 20px;
    }

    .hero-edition {
        font-size: 14px;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .hero-year {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-slider-pagination {
        bottom: 15px !important;
        padding: 10px 15px;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 80px 20px 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 38px);
        margin-bottom: 12px;
    }

    .hero-title .italic-part {
        font-size: clamp(24px, 5.5vw, 34px);
    }

    .hero-theme {
        font-size: clamp(14px, 3vw, 20px);
        margin-bottom: 18px;
    }

    .hero-date {
        font-size: 14px;
    }

    .hero-date i {
        font-size: 18px;
    }

    .hero-btn {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }

    .hero-btn i {
        font-size: 20px;
    }
}

/* Responsive Sections */
@media (max-width: 1024px) {
    .section-modern {
        padding: var(--section-padding-tablet) 40px;
    }

    .opportunity-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .program-tabs-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .program-tabs-nav {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--primary-gray);
        margin-bottom: 30px;
    }

    .program-tab-btn {
        padding: 20px 25px;
    }

    .ccifc-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .section-modern {
        padding: var(--section-padding-mobile) 20px;
    }

    .section-title {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .opportunity-cards-grid {
        gap: 20px;
    }

    .opportunity-card {
        padding: 25px;
    }

    .opportunity-title {
        font-size: 20px;
    }

    .opportunity-text {
        font-size: 15px;
    }

    .program-tab-btn {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        gap: 10px;
    }

    .program-schedule {
        gap: 15px;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
    }

    .ccifc-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-accordion-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Modal responsive */
    .modal-content {
        width: 95%;
        max-width: 95%;
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        width: 100%;
        min-height: 200px;
    }

    .modal-content-right {
        width: 100%;
        padding: 30px 20px;
    }

    .modal-big-title {
        font-size: 28px;
    }

    .modal-big-dates {
        font-size: 20px;
    }

    .modal-big-location {
        font-size: 16px;
    }

    .modal-countdown {
        gap: 8px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-separator {
        font-size: 24px;
    }

    .modal-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Styles supplémentaires pour très petits écrans */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-title .italic-part {
        font-size: 28px !important;
    }

    .hero-theme {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .modal-countdown {
        flex-wrap: wrap;
        gap: 12px;
    }

    .countdown-item {
        min-width: calc(50% - 6px);
    }

    .countdown-separator {
        display: none;
    }
}

/* ===========================
   GALERIE PHOTOS
   =========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(31, 43, 71, 0.85);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 28px;
    opacity: 0;
    z-index: 2;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Galerie */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .gallery-zoom {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

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

/* ===========================
   LIGHTBOX SIMPLE
   =========================== */

.simple-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.simple-lightbox.active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox responsive */
@media (max-width: 1024px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* ===========================
   HERO AMÉLIORATIONS SPECTACULAIRES
   =========================== */

/* Navigation Dots pour le slider Hero */
.hero-slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    border: 2px solid transparent;
}

.hero-slider-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--primary-yellow);
    width: 40px;
    border-radius: 20px;
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(238, 181, 37, 0.6);
}

/* Overlay gradient */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}


/* Badge compteur Hero */
.hero-counter-badge {
    position: absolute;
    top: 120px;
    right: 80px;
    z-index: 100;
    background: var(--primary-yellow);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(238, 181, 37, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(238, 181, 37, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(238, 181, 37, 0.6);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-days {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    font-family: 'Orbitron', monospace;
}

.badge-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive pagination dots */
@media (max-width: 768px) {
    .hero-slider-pagination {
        bottom: 20px;
        padding: 10px 15px;
        gap: 8px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
}

/* ===========================
   BACK TO TOP AVEC LOADER CIRCULAIRE
   =========================== */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(192, 43, 73, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(192, 43, 73, 0.6);
}

.back-to-top i {
    position: absolute;
    font-size: 24px;
    color: var(--white);
    z-index: 2;
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.1s linear;
    color: var(--white);
}

/* Responsive Hero Améliorations */
@media (max-width: 1024px) {
    .hero-counter-badge {
        top: 100px;
        right: 30px;
        padding: 15px 20px;
        gap: 10px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .badge-days {
        font-size: 28px;
    }

    .badge-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero-counter-badge {
        top: 90px;
        right: 20px;
        padding: 12px 16px;
        gap: 8px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .badge-days {
        font-size: 24px;
    }

    .badge-label {
        font-size: 9px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top i {
        font-size: 18px;
    }

    .progress-ring {
        width: 50px;
        height: 50px;
    }

    .progress-ring-circle {
        /* Ajuster le rayon pour un bouton de 50px */
        r: 22;
        cx: 25;
        cy: 25;
    }
}

@media (max-width: 480px) {
    .hero-counter-badge {
        display: none;
    }
}

/* ====================================
   PAGE CONTACT - STYLES MODERNES
   ==================================== */

/* Page Header */
.page-header-modern {
    position: relative;
    padding: 180px 0 120px;
    background: var(--primary-navy);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Box */
.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.contact-info-box {
    background: var(--primary-navy);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-yellow);
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-text a:hover {
    color: var(--primary-yellow);
}

/* Contact Social */
.contact-social {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition-normal);
}

.contact-social-icon:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-dark);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(31, 158, 217, 0.1);
}

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

/* Form Submit Button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    align-self: flex-start;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn i {
    font-size: 20px;
    transition: var(--transition-fast);
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    margin-top: 0;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Active Navigation Link */
.nav-modern li a.active {
    color: var(--primary-yellow);
}

.nav-modern li a.active::after {
    width: 100%;
    background: var(--primary-yellow);
}

/* Responsive Design - Contact Page */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 40px;
    }

    .contact-info-wrapper {
        position: relative;
        top: 0;
    }

    .contact-info-box,
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .page-header-modern {
        padding: 150px 0 100px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header-modern {
        padding: 130px 0 80px;
    }

    .contact-info-box,
    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 28px;
    }

    .map-section iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .page-header-modern {
        padding: 120px 0 60px;
    }

    .contact-info-box,
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-info-items {
        gap: 25px;
    }

    .contact-info-item {
        padding-bottom: 25px;
    }

    .contact-social-icons {
        gap: 10px;
    }

    .contact-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .map-section iframe {
        height: 350px;
    }
}

/* ====================================
   PAGE INSCRIPTION - STYLES MODERNES
   ==================================== */

/* Registration Wrapper */
.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Registration Info Box */
.registration-info-box {
    position: sticky;
    top: 120px;
    background: var(--primary-navy);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.registration-info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.registration-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-info-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Registration Benefits */
.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-yellow);
}

.benefit-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.benefit-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* Registration Event Details */
.registration-event-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.event-detail-item i {
    font-size: 20px;
    color: var(--primary-yellow);
}

/* Registration Form Wrapper */
.registration-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.registration-form-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-form-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
}

.registration-form .form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.registration-form .form-group input,
.registration-form .form-group select,
.registration-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-dark);
    transition: var(--transition-normal);
    background: var(--white);
}

.registration-form .form-group input:focus,
.registration-form .form-group select:focus,
.registration-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(31, 158, 217, 0.1);
}

.registration-form .form-group select {
    cursor: pointer;
}

.registration-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Active CTA Button */
.cta-btn-modern.active {
    background: var(--primary-yellow);
    color: var(--primary-navy);
}

.cta-btn-modern.active i {
    color: var(--primary-navy);
}

/* Responsive Design - Registration Page */
@media (max-width: 1200px) {
    .registration-wrapper {
        gap: 40px;
    }

    .registration-info-box {
        position: relative;
        top: 0;
    }

    .registration-info-box,
    .registration-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .registration-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .registration-info-box,
    .registration-form-wrapper {
        padding: 30px 25px;
    }

    .registration-info-title,
    .registration-form-title {
        font-size: 28px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .registration-info-box,
    .registration-form-wrapper {
        padding: 25px 20px;
    }

    .registration-benefits {
        gap: 20px;
    }

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

    .benefit-icon {
        margin-bottom: 10px;
    }
}
