/* ==========================================
   VARIABLES & RESET
   ========================================== */
:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #faf5ff;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   LANGUAGE SWITCHER - POSITION FIXE
   ========================================== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    font-family: 'Poppins', sans-serif;
}

.lang-dropdown {
    position: relative;
}

.lang-toggle {
    background: white;
    border: 2px solid var(--primary-color);
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    min-width: 80px;
    justify-content: center;
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.flag {
    font-size: 22px;
    line-height: 1;
}

.lang-label {
    display: inline-block;
    min-width: 25px;
    font-weight: 700;
}

.lang-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang-menu.active + .lang-toggle i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 160px;
    border: 1px solid var(--border-color);
}

.lang-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 15px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
}

.lang-option .flag {
    font-size: 20px;
}

.lang-option span:last-child {
    flex: 1;
    text-align: left;
}

.lang-btn:hover {
    background: var(--bg-light);
}

.lang-btn.active {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ==========================================
   BANDEAU GALA URGENT
   ========================================== */
.gala-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.gala-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.gala-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.banner-buttons {
    display: flex;
    gap: 10px;
}

.btn-banner,
.btn-banner-outline {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-banner {
    background: white;
    color: var(--primary-color);
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-banner-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-banner-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-gala {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-gala::after {
    display: none;
}

.nav-gala:hover {
    background: var(--primary-dark);
    color: white !important;
}

/* ==========================================
   HERO SECTION - OPACITÉ RÉDUITE
   ========================================== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(109, 40, 217, 0.6)),
                url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark,
.btn-link {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: white;
}

.btn-link {
    background: none;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-primary-large,
.btn-outline-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary-large {
    background: white;
    color: var(--primary-color);
}

.btn-outline-large {
    background: transparent;
    border: 3px solid white;
    color: white;
}

/* ==========================================
   SECTIONS GÉNÉRALES
   ========================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ==========================================
   PRICE TAG - CACHÉ PAR DÉFAUT
   ========================================== */
.price-tag {
    display: none !important;
}

/* Garder visible UNIQUEMENT pour le Gala */
.ticket-card .price,
.sponsor-card .sponsor-price,
.ticket-prices {
    display: block !important;
}

.pricing {
    display: none !important;
}

/* ==========================================
   PAYMENT SECTION
   ========================================== */
.payment-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.payment-card .account-number {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: var(--text-dark);
}

.payment-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.payment-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   SPORT ACCOMPAGNEMENT SECTION
   ========================================== */
.sport-accompagnement {
    padding: 80px 0;
    background: white;
}

.sport-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.schedule-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.schedule-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.schedule-card .time {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.schedule-card .location {
    color: var(--text-gray);
    font-size: 14px;
}

.sport-activities {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.activity-badge {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .intro-content,
    .gala-content-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .axes-grid-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .gala-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 5px 8px;
    }

    .lang-btn {
        font-size: 20px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-outline-dark {
        padding: 12px 24px;
        font-size: 14px;
    }

    .programs-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary-large,
    .btn-outline-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}


/* ==========================================
   INTRO SECTION
   ========================================== */
.intro-section {
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    font-size: 17px;
}

.intro-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ==========================================
   MISSIONS SECTION
   ========================================== */
.missions-section {
    background: var(--bg-light);
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs-section {
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.program-content p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 15px;
}

.price-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

/* ==========================================
   GALA HIGHLIGHT SECTION
   ========================================== */
.gala-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 100px 0;
}

.gala-content-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gala-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.gala-text h3 {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.95;
}

.gala-intro {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.axes-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.axes-preview h4 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.axes-grid-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.axe-mini {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.axe-mini:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.axe-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.axe-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.gala-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.info-item {
    padding: 8px 0;
    font-size: 16px;
}

.gala-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-caption {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* ==========================================
   RECENT ACTIVITIES SECTION
   ========================================== */
.recent-activities {
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.activity-image {
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 25px;
}

.activity-date {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.activity-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.activity-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 28px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-slogan {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .intro-content,
    .gala-content-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .axes-grid-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .gala-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .help-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .help-popup {
        right: 20px;
        bottom: 80px;
        width: calc(100% - 40px);
        max-width: 320px;
    }

    .gala-text h2 {
        font-size: 36px;
    }

    .gala-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-outline-dark {
        padding: 12px 24px;
        font-size: 14px;
    }

    .programs-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary-large,
    .btn-outline-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ==========================================
   PAGES INTERNES STYLES
   ========================================== */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* CONTENT WRAPPER */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    font-size: 17px;
}

.content-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* HISTOIRE SECTION */
.histoire-section {
    padding: 80px 0;
    background: white;
}

/* MVV SECTION */
.mvv-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mvv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.mission-card-special {
    border-top: 5px solid var(--primary-color);
}

.vision-card-special {
    border-top: 5px solid var(--primary-dark);
}

.mvv-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mvv-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* VALEURS */
.valeurs-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.valeur-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.valeur-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.valeur-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.valeur-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.valeur-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ÉQUIPE SECTION */
.equipe-section {
    padding: 80px 0;
    background: white;
}

.leader-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.leader-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.leader-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.leader-role {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.leader-bio {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.leader-contact {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.leader-contact p {
    margin-bottom: 8px;
    font-size: 15px;
}

.equipe-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* INTERVENTION SECTION */
.intervention-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.intervention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.intervention-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.intervention-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intervention-card ul {
    list-style: none;
    padding: 0;
}

.intervention-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.intervention-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.ambition {
    margin-top: 25px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

/* RÉALISATIONS SECTION */
.realisations-section {
    padding: 80px 0;
    background: white;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.realisation-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.realisation-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.realisation-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.realisation-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.realisation-item p {
    font-size: 15px;
    color: var(--text-gray);
}

/* PARTENAIRES SECTION */
.partenaires-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partenaire-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.partenaire-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partenaire-card.highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
}

.partenaire-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partenaire-card.highlight h3 {
    color: white;
}

.partenaire-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.partenaire-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.partenaire-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.partenaire-cta p {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* PERSPECTIVES SECTION */
.perspectives-section {
    padding: 80px 0;
    background: white;
}

.perspectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.perspective-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.perspective-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.perspective-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.perspective-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.perspective-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* RESPONSIVE PAGES INTERNES */
@media (max-width: 992px) {
    .content-wrapper,
    .mvv-grid,
    .intervention-grid,
    .leader-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .leader-card {
        padding: 30px;
    }

    .action-content,
    .action-content.reverse {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   NOS ACTIONS PAGE STYLES
   ========================================== */

.actions-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ACTION DETAIL SECTIONS */
.action-detail {
    padding: 80px 0;
    background: white;
}

.action-detail.alt {
    background: var(--bg-light);
}

.action-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.action-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.action-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.action-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.action-text h3 {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.action-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.action-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.action-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.action-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.action-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.action-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.action-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-top: 30px;
}

.action-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.price-item-action {
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.price-item-action.highlight {
    background: var(--primary-color);
    color: white;
}

.contact-action {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
}

.contact-action a {
    color: var(--primary-color);
    text-decoration: underline;
}

.highlight-text {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 15px 0;
}

/* SERVICES GRID IN ACTION */
.services-grid-action {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-item-action {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-item-action h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-item-action p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* AUTRES SERVICES */
.autres-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-small {
    font-size: 14px;
    font-weight: 600;
}

.contact-small a {
    color: var(--primary-color);
}

/* ==========================================
   CONCOURS PAGE STYLES
   ========================================== */

.concours-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.concours-intro {
    padding: 80px 0;
    background: white;
}

.concours-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.concours-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 17px;
    line-height: 1.6;
}

.concours-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* POURQUOI PARTICIPER */
.pourquoi-participer {
    padding: 80px 0;
    background: var(--bg-light);
}

.raisons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.raison-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.raison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.raison-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.raison-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.raison-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* EDITION 2025 */
.edition-2025 {
    padding: 80px 0;
    background: white;
}

.edition-intro {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    line-height: 1.7;
}

.stats-edition {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-edition {
    text-align: center;
}

.stat-number-edition {
    font-size: 64px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 10px;
}

.stat-edition p {
    font-size: 16px;
    color: var(--text-gray);
}

.epreuves-edition {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.epreuves-edition h3 {
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.epreuves-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.epreuve-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.epreuve-icon {
    font-size: 32px;
}

.animation-info {
    text-align: center;
    font-size: 17px;
    margin: 15px 0;
}

/* COMMENT PARTICIPER */
.comment-participer {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #f59e0b;
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 60px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-concours {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.cta-concours h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-concours p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-concours-primary {
    display: inline-block;
    background: white;
    color: #f59e0b;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-concours-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.concours-note {
    margin-top: 20px;
    font-size: 16px;
    font-style: italic;
}

/* IMPORTANCE MÉMOIRE */
.importance-memoire {
    padding: 80px 0;
    background: white;
}

.importance-memoire h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.memoire-content {
    max-width: 900px;
    margin: 0 auto;
}

.memoire-text .lead {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.7;
}

.signes-alerte {
    background: #fef3c7;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    margin: 30px 0;
}

.signes-alerte h3 {
    font-size: 24px;
    color: #d97706;
    margin-bottom: 20px;
}

.signes-alerte ul {
    list-style: none;
    padding: 0;
}

.signes-alerte li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.signes-alerte li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-dark);
}

/* CONCOURS CONTACT */
.concours-contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-box {
    background: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-box > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.method-icon {
    font-size: 24px;
}

@media (max-width: 992px) {
    .concours-content {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* SOUTENIR PAGE */
.soutenir-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.intro-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.dons-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.dons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding: 12px 0;
    font-size: 17px;
}

.don-method {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.momo-numbers {
    margin: 20px 0;
}

.momo-item {
    padding: 15px;
    background: var(--bg-light);
    margin-bottom: 10px;
    border-radius: 8px;
}

.momo-item a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.partenariat-section {
    padding: 80px 0;
    background: white;
}

.partenaires-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partenaire-type {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.type-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.benevolat-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.profils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.profil-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sponsoring-rappel {
    padding: 80px 0;
    background: white;
}

.sponsoring-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.packages-mini {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.package-mini {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 8px;
}

.transparence-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.engagements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.engagement-item {
    display: flex;
    gap: 15px;
    align-items: start;
    background: white;
    padding: 25px;
    border-radius: 12px;
}

.engagement-icon {
    font-size: 32px;
    color: var(--primary-color);
}

/* CONTACT PAGE */
.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.tiktok {
    background: #000;
    color: white;
}

.social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.urgence-section {
    padding: 60px 0;
    background: #fef3c7;
}

.urgence-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgence-box h2 {
    color: #d97706;
    margin-bottom: 20px;
}

.urgence-contacts {
    margin-top: 30px;
}

.urgence-btn {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.urgence-note {
    font-size: 14px;
    color: var(--text-gray);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================
   STYLES POUR ICÔNES PROFESSIONNELLES
   ========================================== */

/* Icônes dans les missions */
.mission-icon i {
    color: var(--primary-color);
    font-size: 48px;
}

/* Icônes dans les cartes de raisons */
.raison-icon i,
.service-icon i,
.gain-icon i {
    color: var(--primary-color);
    font-size: 48px;
}

/* Icônes dans le footer */
.footer .contact-list i {
    color: var(--primary-light);
    margin-right: 8px;
    font-size: 16px;
}

.social-links a i {
    font-size: 24px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover i {
    color: var(--primary-light);
}

/* Icônes dans les info-items du gala */
.gala-info .info-item i,
.hero-info-item .info-icon i {
    color: rgba(255, 255, 255, 0.95);
    margin-right: 10px;
    font-size: 20px;
}

/* Icônes dans les épreuves */
.epreuve-icon i {
    color: var(--primary-color);
    font-size: 28px;
}

/* Icônes dans les panels */
.panel-icon i {
    color: var(--primary-color);
    font-size: 32px;
}

/* Icônes dans le programme */
.programme-icon i {
    color: var(--primary-color);
    font-size: 42px;
}

/* Icônes dans les sponsors */
.sponsor-badge i {
    margin-right: 8px;
}

/* Icônes de contact */
.contact-method i,
.method-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-method:hover i {
    color: white;
}

/* Icônes dans les boutons */
.popup-btn i,
.contact-btn i,
.urgence-btn i {
    margin-right: 8px;
}

/* Icônes dans les valeurs */
.valeur-icon i,
.mvv-icon i {
    color: var(--primary-color);
    font-size: 48px;
}

/* Icônes dans les réalisations */
.realisation-icon i {
    color: var(--primary-color);
    font-size: 42px;
}

/* Icônes dans les perspectives */
.perspective-icon i {
    color: white;
    font-size: 24px;
}

/* Icônes dans le header gala */
.gala-hero-info .info-icon i {
    font-size: 36px;
}

/* Icônes dans les axes */
.axe-icon i {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

/* Icônes d'intervention */
.intervention-card li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    font-weight: 900;
}

/* Icônes dans les actions */
.action-badge i {
    margin-right: 8px;
}

/* Icônes dans les liens */
.btn-link i {
    margin-left: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* Mobile toggle */
.mobile-toggle i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Icônes dans les FAQ */
.faq-item h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Icônes dans les dons */
.don-method h4 i,
.momo-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Icônes de type partenaire */
.type-icon i {
    color: var(--primary-color);
    font-size: 48px;
}

/* Engagement icons */
.engagement-icon i {
    font-size: 28px;
}

/* Help button icon */
.help-button i {
    margin-right: 8px;
}

/* Close popup icon */
.close-popup i {
    color: var(--text-gray);
    font-size: 24px;
}

/* Info block icons */
.info-block h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Animation pour certaines icônes */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.mission-card:hover .mission-icon i,
.service-card:hover .service-icon i {
    animation: pulse 0.6s ease-in-out;
}

/* Responsive des icônes */
@media (max-width: 768px) {
    .mission-icon i,
    .raison-icon i,
    .service-icon i {
        font-size: 40px;
    }
    
    .gala-hero-info .info-icon i {
        font-size: 28px;
    }
}

/* ==========================================
   PAYMENT SECTION STYLING
   ========================================== */

.payment-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.payment-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section h4 i {
    font-size: 22px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-method {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.payment-method:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.payment-method i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-method h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.payment-method p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.payment-method p strong {
    color: var(--text-dark);
}

.payment-method a {
    display: inline-block;
    margin-top: 10px;
}

.btn-primary-small {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .payment-section {
        padding: 20px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    /* Language switcher responsive */
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .lang-toggle {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .flag {
        font-size: 18px;
    }
    
    .lang-option {
        padding: 10px 12px;
    }
}
/* Nouveau sélecteur de langue simple */
.lang-toggle-simple {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #7c3aed;
    border-radius: 25px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.lang-toggle-simple:hover {
    background: #7c3aed;
    color: white;
    transform: scale(1.05);
}

.lang-toggle-simple .flag {
    font-size: 18px;
}

.lang-toggle-simple .lang-label {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lang-toggle-simple {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }
    
    .lang-toggle-simple .flag {
        font-size: 16px;
    }
    
    .lang-toggle-simple .lang-label {
        font-size: 12px;
    }
}