/* ================================================
   ASFI - Site Web Officiel
   Charte graphique Rose/Pink & Orange
   ================================================ */

:root {
    /* Couleurs principales */
    --primary: #D81B60;
    --primary-dark: #AD1457;
    --primary-light: #F8BBD9;
    --primary-lighter: #FCE4EC;

    /* Couleurs secondaires */
    --secondary: #FF9800;
    --secondary-dark: #F57C00;
    --secondary-light: #FFE0B2;

    /* Accent */
    --accent: #8D6E63;
    --accent-dark: #5D4037;

    /* Neutres */
    --dark: #2D2D2D;
    --gray: #666666;
    --gray-light: #999999;
    --light: #F5F5F5;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #D81B60 0%, #F06292 50%, #FF9800 100%);
    --gradient-hero: linear-gradient(135deg, rgba(216, 27, 96, 0.6) 0%, rgba(240, 98, 146, 0.5) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-pink: 0 8px 30px rgba(216, 27, 96, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
}

.top-bar-item i {
    color: var(--secondary);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.top-bar-social a:hover {
    color: var(--secondary);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.header-contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.header-contact-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
}

.header-contact-text strong {
    font-size: 1rem;
    color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--gradient-primary);
    padding: 0;
   
    top: 90px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 18px 25px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light);
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: var(--white);
    z-index: 2;
}

.slide-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.slide-title span {
    color: var(--secondary);
}

.slide.active .slide-title {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.slide-text {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.slide.active .slide-text {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slide.active .slide-buttons {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

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

.slider-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

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

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== ÉVÉNEMENTS ===== */
.events-section {
    background: var(--light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
}

.event-date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.event-meta-item i {
    color: var(--primary);
    width: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.event-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.event-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

/* ===== ACTUALITÉS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.news-date i {
    margin-right: 5px;
    color: var(--primary);
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    transition: var(--transition);
}

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

.news-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.news-link i {
    transition: var(--transition);
}

.news-link:hover i {
    transform: translateX(5px);
}

/* ===== ACTIVITÉS ===== */
.activities-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.activities-section .section-subtitle {
    color: var(--secondary);
}

.activities-section .section-subtitle::before,
.activities-section .section-subtitle::after {
    background: var(--secondary);
}

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

.activities-section .section-desc {
    color: rgba(255,255,255,0.8);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.activity-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
}

.activity-card:hover {
    background: var(--white);
    transform: translateY(-10px);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    background: var(--primary);
    transform: rotateY(180deg);
}

.activity-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: var(--transition);
}

.activity-card:hover .activity-title {
    color: var(--dark);
}

.activity-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* ===== ABOUT US ===== */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    margin-top: 5px;
}

.about-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text-content h2 span {
    color: var(--primary);
}

.about-text-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 30px;
    height: 30px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}
/* ================================================
   BUREAU EXÉCUTIF - 4 membres par ligne
   Remplacer la section .team dans site.css
   ================================================ */

/* Section Bureau */
.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(216, 27, 96, 0.95), transparent);
    padding: 30px 15px 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.team-content {
    padding: 15px;
    text-align: center;
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.team-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .team-name {
        font-size: 0.95rem;
    }

    .team-role {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .team-content {
        padding: 12px;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .team-role {
        font-size: 0.75rem;
    }

    .team-social a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-content {
        padding: 10px;
    }

    .team-name {
        font-size: 0.85rem;
    }

    .team-role {
        font-size: 0.7rem;
    }
}
/* ================================================
   PARTENAIRES - Logos agrandis (120px)
   Remplacer dans site.css
   ================================================ */
/* ================================================
   PARTENAIRES - Logos agrandis (120px)
   Remplacer dans site.css
   ================================================ */

/* Section Partenaires */
.partners-section {
    background: var(--light);
    padding: 80px 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-partners 35s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 150px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.15);
}

.partner-item img {
    height: 120px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .partner-item img {
        height: 100px;
        max-width: 200px;
    }

    .partner-item {
        padding: 20px 30px;
        min-height: 130px;
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 40px;
    }

    .partner-item {
        padding: 18px 25px;
        min-height: 110px;
    }

    .partner-item img {
        height: 80px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .partners-track {
        gap: 30px;
    }

    .partner-item {
        padding: 15px 20px;
        min-height: 90px;
    }

    .partner-item img {
        height: 60px;
        max-width: 140px;
    }
}
/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    line-height: 1.8;
}
.footer-brand .logo img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links a i {
    color: var(--primary);
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-pink);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-img-secondary {
        right: 20px;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .btn-member {
        display: none;
    }

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

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: var(--transition);
    }

    .navbar.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .events-grid,
    .news-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-badge {
        display: none;
    }

    .about-img-secondary {
        display: none;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 0 5%;
    }

    .slide-title {
        font-size: 1.6rem;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================================
   GALERIE PHOTOS - Ajouter dans site.css
   ================================================ */

/* Section Galerie */
.gallery-section {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.8) 0%, rgba(255, 152, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.gallery-caption {
    color: #FFFFFF;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 15px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

/* ================================================
   MODAL LIGHTBOX
   ================================================ */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.gallery-modal.active {
    display: block;
}

.gallery-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-modal-body {
    text-align: center;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-body img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease;
}

.gallery-modal-caption {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--primary);
}

.gallery-modal-prev {
    left: 25px;
}

.gallery-modal-next {
    right: 25px;
}

/* ================================================
   RESPONSIVE GALERIE
   ================================================ */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .gallery-modal-prev {
        left: 15px;
    }

    .gallery-modal-next {
        right: 15px;
    }

    .gallery-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
    }

    .gallery-modal-caption {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-overlay i {
        font-size: 1.5rem;
    }

    .gallery-caption {
        font-size: 0.75rem;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }
}
/* ================================================
   TIMELINE ALTERNÉE - DATES À RETENIR
   Ajouter dans site.css
   ================================================ */

/* Section Timeline */
.timeline-section {
    background: #FFFFFF;
    overflow: hidden;
}

/* Container Timeline Alternée */
.timeline-alt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 60px 0;
}

/* Ligne horizontale centrale */
.timeline-alt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 4px;
}

/* Item Timeline */
.timeline-alt-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 150px;
    z-index: 1;
}

/* Position TOP (pair) */
.timeline-alt-item.top {
    flex-direction: column;
}

.timeline-alt-item.top .timeline-alt-content {
    order: 1;
    margin-bottom: 15px;
}

.timeline-alt-item.top .timeline-alt-marker {
    order: 2;
}

.timeline-alt-item.top .timeline-alt-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary);
}

/* Position BOTTOM (impair) */
.timeline-alt-item.bottom {
    flex-direction: column;
}

.timeline-alt-item.bottom .timeline-alt-content {
    order: 2;
    margin-top: 15px;
}

.timeline-alt-item.bottom .timeline-alt-marker {
    order: 1;
}

.timeline-alt-item.bottom .timeline-alt-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary);
}

/* Marqueur rond */
.timeline-alt-marker {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 5px 25px rgba(216, 27, 96, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
    border: 4px solid #FFFFFF;
}

.timeline-alt-marker.secondary {
    background: var(--secondary);
    box-shadow: 0 5px 25px rgba(255, 152, 0, 0.4);
}

.timeline-alt-marker.success {
    background: #4CAF50;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.4);
}

.timeline-alt-marker.info {
    background: #2196F3;
    box-shadow: 0 5px 25px rgba(33, 150, 243, 0.4);
}

.timeline-alt-item:hover .timeline-alt-marker {
    transform: scale(1.2);
}

/* Contenu */
.timeline-alt-content {
    position: relative;
    text-align: center;
    background: var(--light);
    padding: 15px;
    border-radius: 12px;
    min-width: 120px;
    max-width: 140px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-alt-item:hover .timeline-alt-content {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.15);
    transform: translateY(-5px);
}

.timeline-alt-item.bottom:hover .timeline-alt-content {
    transform: translateY(5px);
}

/* Date */
.timeline-alt-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.timeline-alt-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.timeline-alt-month {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Titre */
.timeline-alt-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.timeline-alt-title a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.timeline-alt-title a:hover {
    color: var(--primary);
}

/* Description */
.timeline-alt-desc {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badge Aujourd'hui */
.timeline-alt-badge {
    display: inline-block;
    background: var(--secondary);
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Date passée */
.timeline-alt-item.passed .timeline-alt-marker {
    background: #B0BEC5;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.timeline-alt-item.passed .timeline-alt-content {
    opacity: 0.7;
}

.timeline-alt-item.passed .timeline-alt-day {
    color: #B0BEC5;
}

.timeline-alt-item.passed .timeline-alt-content::before,
.timeline-alt-item.passed .timeline-alt-content::after {
    background: #B0BEC5;
}

/* Date aujourd'hui */
.timeline-alt-item.today .timeline-alt-marker {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(216, 27, 96, 0.5); }
    50% { box-shadow: 0 0 40px rgba(216, 27, 96, 0.8); }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .timeline-alt-item {
        max-width: 130px;
    }

    .timeline-alt-content {
        min-width: 100px;
        max-width: 120px;
        padding: 12px;
    }

    .timeline-alt-day {
        font-size: 1.5rem;
    }

    .timeline-alt-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .timeline-alt {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 20px 0;
    }

    .timeline-alt::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 4px;
        height: 100%;
        transform: none;
    }

    .timeline-alt-item {
        flex-direction: row !important;
        align-items: center;
        max-width: 100%;
        padding-left: 70px;
        margin-bottom: 20px;
    }

    .timeline-alt-item.top .timeline-alt-content,
    .timeline-alt-item.bottom .timeline-alt-content {
        order: 2;
        margin: 0 0 0 20px;
    }

    .timeline-alt-item.top .timeline-alt-marker,
    .timeline-alt-item.bottom .timeline-alt-marker {
        order: 1;
        position: absolute;
        left: 0;
    }

    .timeline-alt-item.top .timeline-alt-content::after,
    .timeline-alt-item.bottom .timeline-alt-content::before {
        display: none;
    }

    .timeline-alt-content {
        text-align: left;
        max-width: 100%;
        min-width: auto;
        flex-grow: 1;
    }

    .timeline-alt-date {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 5px;
    }

    .timeline-alt-day {
        font-size: 1.3rem;
    }

    .timeline-alt-item:hover .timeline-alt-content,
    .timeline-alt-item.bottom:hover .timeline-alt-content {
        transform: translateX(5px);
    }

    .timeline-alt-marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .timeline-alt::before {
        left: 25px;
    }

    .timeline-alt-item {
        padding-left: 60px;
    }

    .timeline-alt-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 3px;
    }

    .timeline-alt-content {
        padding: 10px 12px;
    }

    .timeline-alt-day {
        font-size: 1.1rem;
    }

    .timeline-alt-month {
        font-size: 0.7rem;
    }

    .timeline-alt-title {
        font-size: 0.85rem;
    }

    .timeline-alt-desc {
        display: none;
    }
}

/* ================================================
   PAGE À PROPOS - Styles
   Ajouter dans site.css
   ================================================ */

/* ================================================
   HERO BANNER (Pages intérieures)
   ================================================ */
.page-hero {
    position: relative;
    height: 350px;
    background: url('../images/banners/about-banner.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.9) 0%, rgba(255, 152, 0, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: var(--secondary);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 1;
}

.breadcrumb-nav i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.breadcrumb-nav span {
    color: var(--secondary);
}

/* ================================================
   PRÉSENTATION SECTION
   ================================================ */
.presentation-section {
    background: #FFFFFF;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-images {
    position: relative;
}

.presentation-img-main {
    width: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.presentation-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.presentation-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid #FFFFFF;
}

.presentation-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.presentation-experience {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.4);
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

.presentation-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.presentation-content h2 span {
    color: var(--primary);
}

.presentation-content .lead {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.presentation-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.presentation-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ================================================
   MISSION, VISION, VALEURS
   ================================================ */
.mvv-section {
    background: var(--light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mvv-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.mvv-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.values-list li {
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: var(--primary);
}

/* ================================================
   OBJECTIFS SECTION
   ================================================ */
.objectifs-section {
    background: #FFFFFF;
}

.objectifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.objectif-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.objectif-card:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.1);
    transform: translateX(10px);
}

.objectif-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.objectif-card:hover .objectif-number {
    opacity: 1;
}

.objectif-content h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.objectif-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================================
   STATISTIQUES ALT
   ================================================ */
.stats-section-alt {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number-alt {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.stat-label-alt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* ================================================
   BUREAU EXÉCUTIF SECTION
   ================================================ */
.bureau-section {
    background: var(--light);
}

.bureau-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bureau-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bureau-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

.bureau-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.bureau-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bureau-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(216, 27, 96, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.bureau-card:hover .bureau-overlay {
    opacity: 1;
}

.bureau-social {
    display: flex;
    gap: 10px;
}

.bureau-social a {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.bureau-card:hover .bureau-social a {
    transform: translateY(0);
}

.bureau-social a:hover {
    background: var(--secondary);
    color: #FFFFFF;
}

.bureau-info {
    padding: 20px;
    text-align: center;
}

.bureau-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.bureau-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #b71c50 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--primary);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .presentation-grid {
        gap: 40px;
    }

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

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

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

    .bureau-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

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

    .presentation-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .presentation-img-main img {
        height: 300px;
    }

    .presentation-experience {
        top: 20px;
        right: 20px;
        padding: 20px;
    }

    .experience-number {
        font-size: 2.2rem;
    }

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

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

    .objectif-card {
        flex-direction: column;
        text-align: center;
    }

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

    .stats-grid-alt {
        grid-template-columns: 1fr;
    }

    .stat-card {
        justify-content: center;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .presentation-content h2 {
        font-size: 1.6rem;
    }

    .presentation-highlights {
        grid-template-columns: 1fr;
    }

    .bureau-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

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


/* ================================================
   PAGE PRATIQUE SAGE-FEMME - Styles
   Ajouter dans site.css
   ================================================ */

/* ================================================
   DÉFINITION SECTION
   ================================================ */
.definition-section {
    background: #FFFFFF;
}

.definition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.definition-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.definition-content h2 span {
    color: var(--primary);
}

.definition-content .lead {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.definition-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.definition-quote {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding: 25px 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 15px 15px 0;
    margin-top: 30px;
    position: relative;
}

.definition-quote i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.definition-quote p {
    font-style: italic;
    color: var(--dark);
    font-size: 1.05rem;
    margin: 0;
    padding-left: 30px;
}

.definition-image {
    position: relative;
}

.definition-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.definition-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.definition-badge i {
    font-size: 2.5rem;
}

.definition-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

/* ================================================
   LIEUX D'EXERCICE SECTION
   ================================================ */
.lieux-section {
    background: var(--light);
}

.lieux-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lieu-card {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lieu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lieu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

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

.lieu-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.lieu-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.lieu-card:hover .lieu-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.lieu-card:hover .lieu-icon i {
    color: #FFFFFF;
}

.lieu-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.lieu-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lieu-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.lieu-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.9rem;
    border-top: 1px solid var(--light);
}

.lieu-features li:first-child {
    border-top: none;
}

.lieu-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ================================================
   RÔLE SECTION
   ================================================ */
.role-section {
    background: #FFFFFF;
}

.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.role-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.role-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.role-content h2 span {
    color: var(--primary);
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.role-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.role-item:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.1);
    transform: translateX(10px);
}

.role-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.role-item:hover .role-number {
    opacity: 1;
}

.role-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.role-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   COMPÉTENCES SECTION
   ================================================ */
.competences-section {
    background: var(--light);
}

.competences-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.competence-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.competence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.competence-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.competence-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.competence-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.competence-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Document ICM Download */
.icm-download {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.icm-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icm-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.icm-text {
    flex-grow: 1;
}

.icm-text h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.icm-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.icm-content .btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .competences-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .definition-grid,
    .role-grid {
        gap: 40px;
    }

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

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

    .definition-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .definition-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .role-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .lieux-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .icm-content {
        flex-direction: column;
        text-align: center;
    }

    .role-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .definition-content h2,
    .role-content h2 {
        font-size: 1.6rem;
    }

    .competences-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 50px;
    }

    .role-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ================================================
   FORMATIONS PAGE STYLES
   ================================================

   À COPIER-COLLER À LA FIN DE VOTRE FICHIER site.css

   ================================================ */

/* ===== FORMATION INTRO SECTION ===== */
.formation-intro-section {
    background: #FFFFFF;
}

.formation-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.formation-intro-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.formation-intro-content h2 span {
    color: var(--primary);
}

.formation-intro-content .lead {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.formation-intro-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.formation-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

.formation-intro-image {
    position: relative;
}

.formation-intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.formation-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.formation-badge i {
    font-size: 2.5rem;
}

.formation-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

/* ===== THEMES SECTION ===== */
.themes-section {
    background: var(--light);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.theme-card {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

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

.theme-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.theme-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.theme-card:hover .theme-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.theme-card:hover .theme-icon i {
    color: #FFFFFF;
}

.theme-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.theme-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.theme-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.9rem;
    border-top: 1px solid var(--light);
}

.theme-points li:first-child {
    border-top: none;
}

.theme-points li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* ===== MODES SECTION ===== */
.modes-section {
    background: #FFFFFF;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mode-card {
    position: relative;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mode-presentiel {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(216, 27, 96, 0.1) 100%);
    border: 2px solid rgba(216, 27, 96, 0.15);
}

.mode-enligne {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 2px solid rgba(255, 152, 0, 0.15);
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mode-presentiel:hover {
    border-color: var(--primary);
}

.mode-enligne:hover {
    border-color: var(--secondary);
}

.mode-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mode-presentiel .mode-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.mode-enligne .mode-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.mode-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.mode-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.mode-content > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mode-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.mode-presentiel .mode-features li i {
    color: var(--primary);
}

.mode-enligne .mode-features li i {
    color: var(--secondary);
}

.mode-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.08;
}

.mode-decoration i {
    font-size: 8rem;
}

.mode-presentiel .mode-decoration i {
    color: var(--primary);
}

.mode-enligne .mode-decoration i {
    color: var(--secondary);
}

/* ===== INSCRIPTION SECTION ===== */
.inscription-section {
    background: var(--light);
}

.inscription-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.inscription-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.inscription-info h2 span {
    color: var(--primary);
}

.inscription-info > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.inscription-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.4rem;
    color: #FFFFFF;
}

.benefit-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.inscription-contact {
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.inscription-contact p {
    margin: 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.inscription-contact p:first-child {
    margin-bottom: 5px;
}

.inscription-contact a {
    color: var(--primary);
    font-weight: 600;
}

.inscription-contact a:hover {
    color: var(--secondary);
}

/* ===== FORMULAIRE D'INSCRIPTION ===== */
.inscription-form-wrapper {
    background: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.inscription-form {
    display: block;
}

.form-header {
    background: var(--gradient-primary);
    padding: 25px 35px;
}

.form-header h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-body {
    padding: 35px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 1rem;
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(216, 27, 96, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-item:hover {
    background: var(--primary-lighter);
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #FFFFFF;
}

.checkbox-item input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkmark::after {
    content: '\F272';
    font-family: 'bootstrap-icons';
    color: #FFFFFF;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked ~ .checkmark::after {
    opacity: 1;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.3;
}

/* ===== RADIO STYLES ===== */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.radio-item:hover {
    background: var(--primary-lighter);
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #FFFFFF;
}

.radio-item input[type="radio"]:checked ~ .radio-mark {
    border-color: var(--primary);
}

.radio-mark::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.radio-item input[type="radio"]:checked ~ .radio-mark::after {
    opacity: 1;
    transform: scale(1);
}

.radio-item input[type="radio"]:checked ~ .radio-label {
    color: var(--primary);
    font-weight: 600;
}

.radio-label {
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-label i {
    font-size: 1.1rem;
}

/* ===== FORM FOOTER ===== */
.form-footer {
    padding: 0 35px 35px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
}

.btn-text,
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinning {
    animation: spin 1s linear infinite;
}

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

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 3rem;
    color: #FFFFFF;
}

.success-message h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===== FORM ALERT ===== */
.form-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.form-alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}

.form-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-alert span {
    flex: 1;
}

.form-alert button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: inherit;
}

.form-alert button:hover {
    opacity: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #FFFFFF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary);
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: #FFFFFF;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE FORMATIONS ===== */
@media (max-width: 1024px) {
    .formation-intro-grid,
    .inscription-wrapper {
        gap: 40px;
    }

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

    .modes-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .formation-intro-grid,
    .modes-grid,
    .inscription-wrapper {
        grid-template-columns: 1fr;
    }

    .formation-intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .formation-badge {
        bottom: -15px;
        right: 20px;
    }

    .formation-stats {
        justify-content: center;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .mode-card {
        flex-direction: column;
        text-align: center;
    }

    .mode-icon {
        margin: 0 auto;
    }

    .mode-features li {
        justify-content: center;
    }

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

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

    .radio-group {
        flex-direction: column;
    }

    .inscription-info {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .formation-intro-content h2,
    .inscription-info h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .form-header,
    .form-body,
    .form-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mode-card {
        padding: 30px 25px;
    }

    .formation-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================================================
   INTERNATIONALE PAGE STYLES
   ================================================

   À COPIER-COLLER À LA FIN DE VOTRE FICHIER site.css

   ================================================ */

/* ===== INTRO INTERNATIONAL SECTION ===== */
.intro-international-section {
    background: #FFFFFF;
}

.intro-international-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-international-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.intro-international-content h2 span {
    color: var(--primary);
}

.intro-international-content .lead {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.intro-international-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--light);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-lighter);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--dark);
}

.highlight-item strong {
    color: var(--primary);
}

.intro-international-image {
    position: relative;
}

.intro-international-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.globe-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.4);
    animation: pulse-globe 2s ease-in-out infinite;
}

.globe-badge i {
    font-size: 3rem;
    color: #FFFFFF;
}

@keyframes pulse-globe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== AFFILIATIONS SECTION ===== */
.affiliations-section {
    background: var(--light);
}

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

.affiliation-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.affiliation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

.affiliation-logo {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.affiliation-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.affiliation-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.affiliation-content h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.affiliation-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.affiliation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.affiliation-badge i {
    font-size: 0.9rem;
}

.affiliation-badge-founder {
    background: linear-gradient(135deg, var(--secondary-light) 0%, rgba(255, 152, 0, 0.2) 100%);
    color: var(--secondary-dark);
}

/* ===== PARTENAIRES INTERNATIONAL SECTION ===== */
.partenaires-intl-section {
    background: #FFFFFF;
}

.partenaires-intl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partenaire-intl-card {
    background: var(--light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partenaire-intl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partenaire-intl-card:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

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

.partenaire-intl-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partenaire-intl-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.partenaire-intl-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.partenaire-intl-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    background: var(--light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(216, 27, 96, 0.3);
    z-index: 2;
}

.timeline-marker i {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.timeline-content {
    background: #FFFFFF;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.12);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: #FFFFFF;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: #FFFFFF;
}

.timeline-date {
    display: inline-block;
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-location i {
    font-size: 0.85rem;
}

.timeline-content > p:last-of-type {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 12px;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-more {
    text-align: center;
    margin-top: 30px;
}

.timeline-more p {
    color: var(--gray);
    font-style: italic;
    font-size: 1rem;
}

/* ===== ICM HIGHLIGHT SECTION ===== */
.icm-highlight-section {
    background: #FFFFFF;
}

.icm-highlight-wrapper {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(255, 152, 0, 0.08) 100%);
    border: 2px solid rgba(216, 27, 96, 0.15);
    border-radius: 25px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.icm-highlight-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex: 1;
}

.icm-highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icm-highlight-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.icm-highlight-text h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.icm-highlight-text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.icm-highlight-text strong {
    color: var(--primary);
}

.icm-highlight-logo {
    flex-shrink: 0;
}

.icm-highlight-logo img {
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.icm-highlight-wrapper:hover .icm-highlight-logo img {
    opacity: 1;
}

/* ===== RESPONSIVE INTERNATIONALE ===== */
@media (max-width: 1024px) {
    .intro-international-grid {
        gap: 40px;
    }

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

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

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

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
        border-left-color: transparent;
        border-right-color: #FFFFFF;
    }

    .timeline-content {
        max-width: 100%;
    }

    .icm-highlight-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .icm-highlight-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .intro-international-grid {
        grid-template-columns: 1fr;
    }

    .intro-international-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .globe-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        left: auto;
        right: 20px;
    }

    .globe-badge i {
        font-size: 2.5rem;
    }

    .partenaires-intl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partenaire-intl-card {
        padding: 25px 15px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .timeline-marker i {
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .intro-international-content h2 {
        font-size: 1.6rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .partenaires-intl-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .icm-highlight-wrapper {
        padding: 30px 20px;
    }

    .icm-highlight-icon {
        width: 60px;
        height: 60px;
    }

    .icm-highlight-icon i {
        font-size: 1.8rem;
    }

    .icm-highlight-text h3 {
        font-size: 1.2rem;
    }
}

/* ================================================
   JISF 2026 PAGE STYLES
   ================================================

   À COPIER-COLLER À LA FIN DE VOTRE FICHIER site.css

   ================================================ */

/* ===== JISF HERO ===== */
.jisf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
}

.jisf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.85) 0%, rgba(173, 20, 87, 0.9) 100%);
}

.jisf-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.jisf-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.jisf-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jisf-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.jisf-hero-content h1 span {
    color: var(--secondary);
}

.jisf-theme {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 30px;
}

.jisf-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.jisf-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.jisf-meta-item i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.jisf-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Countdown */
.jisf-countdown {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 2;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 90px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CONTEXTE SECTION ===== */
.contexte-section {
    background: #FFFFFF;
}

.contexte-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contexte-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.contexte-content h2 span {
    color: var(--primary);
}

.contexte-content .lead {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contexte-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contexte-quote {
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding: 25px 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 15px 15px 0;
    margin: 25px 0;
    position: relative;
}

.contexte-quote i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.contexte-quote p {
    font-style: italic;
    color: var(--dark);
    margin: 0;
    padding-left: 30px;
}

.contexte-image {
    position: relative;
}

.contexte-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contexte-year {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.4);
}

.contexte-year span {
    font-size: 1.8rem;
    font-weight: 700;
}

/* ===== OBJECTIFS SECTION ===== */
.objectifs-section {
    background: var(--light);
}

.objectifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.objectif-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.objectif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.15);
}

.objectif-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.objectif-card:hover .objectif-number {
    opacity: 1;
}

.objectif-content h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.objectif-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* TDR Download */
.tdr-download {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tdr-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tdr-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tdr-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.tdr-text {
    flex-grow: 1;
}

.tdr-text h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.tdr-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== CHIFFRES SECTION ===== */
.chiffres-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.chiffres-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.85);
}

.chiffres-section .container {
    position: relative;
    z-index: 2;
}

.section-header-white .section-subtitle,
.section-header-white .section-title,
.section-header-white .section-desc {
    color: #FFFFFF;
}

.section-header-white .section-title span {
    color: var(--secondary);
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chiffre-card {
    text-align: center;
    padding: 30px 20px;
}

.chiffre-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.chiffre-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.chiffre-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.chiffre-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== PROGRAMME SECTION ===== */
.programme-section {
    background: #FFFFFF;
}

.programme-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.programme-tab {
    background: var(--light);
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.programme-tab:hover {
    background: var(--primary-lighter);
}

.programme-tab.active {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

.tab-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.tab-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

.programme-day {
    display: none;
}

.programme-day.active {
    display: block;
}

.programme-item {
    display: flex;
    gap: 30px;
    padding: 25px 30px;
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.programme-item:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.programme-item-break {
    border-left-color: var(--gray-light);
    opacity: 0.7;
}

.programme-item-highlight {
    border-left-color: var(--secondary);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0.1) 100%);
}

.programme-item-gala {
    border-left-color: var(--secondary);
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.05) 0%, rgba(255, 152, 0, 0.08) 100%);
}

.programme-time {
    font-weight: 700;
    color: var(--primary);
    min-width: 120px;
    flex-shrink: 0;
}

.programme-details h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.programme-details > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.programme-location,
.programme-speaker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-right: 15px;
}

.programme-location i,
.programme-speaker i {
    color: var(--primary);
}

/* ===== TARIFS SECTION ===== */
.tarifs-section {
    background: var(--light);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.tarif-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tarif-card-featured {
    border: 3px solid var(--primary);
}

.tarif-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tarif-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.tarif-header p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.tarif-price {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--gray);
    margin-left: 5px;
}

.tarif-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.tarif-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--light);
}

.tarif-features li:last-child {
    border-bottom: none;
}

.tarif-features li i {
    color: var(--primary);
}

/* Modes de paiement */
.paiement-modes {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.paiement-modes > h4 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paiement-modes > h4 i {
    color: var(--primary);
}

.paiement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.paiement-item {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

.paiement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.paiement-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.paiement-item h5 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.paiement-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== INSCRIPTION JISF SECTION ===== */
.inscription-jisf-section {
    background: #FFFFFF;
}

.inscription-jisf-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.inscription-jisf-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: #FFFFFF;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
}

/* Form wrapper */
.inscription-jisf-form-wrapper {
    background: var(--light);
    border-radius: 25px;
    padding: 40px;
}

.jisf-form .form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.jisf-form .form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--primary);
}

/* Radio inline */
.radio-inline {
    display: flex;
    gap: 30px;
}

.radio-item-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item-inline input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.radio-item-inline span {
    color: var(--dark);
    font-size: 0.95rem;
}

/* Radio grid for statut */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Tarif display */
.tarif-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--primary-lighter);
    border-radius: 12px;
    margin-top: 15px;
    border: 2px solid rgba(216, 27, 96, 0.2);
}

.tarif-display span {
    color: var(--dark);
    font-size: 1rem;
}

.tarif-display strong {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Info paiement */
.paiement-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.paiement-info i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.paiement-info-mobile {
    background: #FFF8E1;
    border: 1px solid #FFE082;
}

.paiement-info-mobile i {
    color: #F57C00;
}

.paiement-info-virement {
    background: #E3F2FD;
    border: 1px solid #90CAF9;
}

.paiement-info-virement i {
    color: #1976D2;
}

.paiement-info div {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Success message JISF */
.jisf-success-message {
    text-align: center;
    padding: 50px 30px;
}

.jisf-success-message .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.jisf-success-message .success-icon i {
    font-size: 3rem;
    color: #FFFFFF;
}

.jisf-success-message h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.jisf-success-message > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.code-box {
    background: var(--primary-lighter);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 25px;
}

.code-box span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.code-box strong {
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 3px;
}

/* ===== PARTENAIRES JISF ===== */
.partenaires-jisf-section {
    background: var(--light);
}

.partenaires-jisf-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.partenaire-jisf-item {
    background: #FFFFFF;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partenaire-jisf-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partenaire-jisf-item img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partenaire-jisf-item:hover img {
    filter: grayscale(0);
}

.partenaire-cta {
    text-align: center;
}

.partenaire-cta p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* ===== RESPONSIVE JISF ===== */
@media (max-width: 1024px) {
    .jisf-hero-content h1 {
        font-size: 2.8rem;
    }

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

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

    .inscription-jisf-wrapper {
        grid-template-columns: 1fr;
    }

    .inscription-jisf-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 250px;
    }

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

@media (max-width: 768px) {
    .jisf-hero {
        min-height: auto;
        padding: 100px 0 120px;
    }

    .jisf-hero-content h1 {
        font-size: 2rem;
    }

    .jisf-meta {
        flex-direction: column;
        gap: 15px;
    }

    .jisf-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .jisf-countdown {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

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

    .contexte-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .objectif-card {
        flex-direction: column;
        text-align: center;
    }

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

    .programme-tabs {
        flex-wrap: wrap;
    }

    .programme-tab {
        padding: 15px 25px;
    }

    .programme-item {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .tdr-content {
        flex-direction: column;
        text-align: center;
    }

    .inscription-jisf-info {
        flex-direction: column;
    }

    .info-card {
        min-width: auto;
    }

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

    .radio-inline {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .jisf-hero-content h1 {
        font-size: 1.6rem;
    }

    .jisf-theme {
        font-size: 1rem;
    }

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

    .chiffre-number {
        font-size: 2.5rem;
    }

    .inscription-jisf-form-wrapper {
        padding: 25px 20px;
    }
}


/*
|--------------------------------------------------------------------------
| AJOUTER CE CSS À LA FIN DE public/css/site.css
|--------------------------------------------------------------------------
*/

/* ========================================
   STATS SECTION - CHIFFRES EN BLANC
   ======================================== */

/* Annuler le dégradé de texte et forcer le blanc */
.stats-section .stat-number,
.stats-section .stat-item .stat-number,
.stats-grid .stat-number,
.stat-number {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    -webkit-background-clip: border-box !important;
    -moz-background-clip: border-box !important;
    background-clip: border-box !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Labels en blanc */
.stats-section .stat-label,
.stats-section .stat-item .stat-label,
.stats-grid .stat-label,
.stat-label {
    color: #FFFFFF !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

/* Icônes en blanc */
.stats-section .stat-icon-box i,
.stats-section .bi {
    color: #FFFFFF !important;
}

/* Masquer les anciennes icônes */
.stats-section .stat-icon,
i.stat-icon {
    display: none !important;
}
