@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold:       #fdb913; /* FONGIP Gold/Yellow */
    --gold-light: #fed15c;
    --magenta:    #e91e63; /* Vibrant Pink / Magenta */
    --magenta-dk: #c2185b;
    --navy:       #002d62; /* FONGIP Corporate Navy */
    --navy-mid:   #0054a6; /* FONGIP Corporate Blue */
    --green:      #008837; /* Emerald Green */
    --green-dk:   #005c25;
    --dark:       #001833; /* Very dark corporate blue */
    --dark2:      #002244;
    --white:      #ffffff;
    --off-white:  #F8F7F4;
    --gray:       #6B7280;
    --gray-light: #E5E7EB;
    --text:       #1F2937;
    --radius:     12px;
    --shadow:     0 10px 40px rgba(0,0,0,.12);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-label { color: var(--gold-light); }

.section-label {
    display: inline-block;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-desc {
    font-size: 1.12rem;
    color: #1a2a40;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img { 
    height: 38px; 
    max-height: 38px;
    width: auto; 
    max-width: 160px; 
    object-fit: contain; 
    border-radius: 6px; 
}
.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .05em;
}
.logo-text span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-links li a {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta {
    flex-shrink: 0;
    background: var(--magenta);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--magenta-dk); transform: translateY(-1px); }

.lang-switch-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3px;
    border-radius: 30px;
    margin-right: 8px;
    margin-left: 12px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--magenta);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(233,30,99,.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 80px);
    background: radial-gradient(circle at 70% 50%, #e0f4ff 0%, #7dc5f4 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(233,30,140,.15) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-bg-overlay { display: none; }

/* ---- President photo (LEFT) ---- */
.hero-president-side {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    order: -1; /* always first */
}

.hero-president-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.92) contrast(1.05);
    transition: transform .6s ease;
}
.hero-president-side:hover .hero-president-img { transform: scale(1.02); }

.hero-president-side::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Removed gradients to make the person clearly visible */
    z-index: 1;
    pointer-events: none;
}

/* Sound toggle button */
.sound-toggle-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    background: rgba(0, 24, 51, 0.88);
    color: #ffffff;
    border: 1.5px solid var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sound-toggle-btn:hover {
    background: var(--gold);
    color: #001833;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 25px rgba(253, 185, 19, 0.4);
}

/* caption at the bottom of the photo */
.hero-president-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(10,15,30,.95) 0%, transparent 100%);
}

.president-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.president-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: .02em;
    margin-bottom: 2px;
}
.president-title {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}
.president-patronage {
    font-size: .68rem;
    color: var(--magenta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

/* ---- Text content (RIGHT) ---- */
.hero-content {
    padding: 40px 60px 40px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 136, 55, 0.08);
    border: 1px solid rgba(0, 136, 55, 0.35);
    color: #008837;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 10px 22px;
    border-radius: 24px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.hero-stats-top {
    display: flex;
    gap: 28px;
    margin-bottom: 22px;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
}
.stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--magenta);
    line-height: 1;
}
.plus { font-size: 1.4rem; }
.stat-small {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(0, 45, 98, 0.6);
    margin-top: 4px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    color: var(--navy);
    margin-bottom: 16px;
}
.title-accent { color: var(--magenta); font-style: italic; }
.title-sub { color: var(--magenta); font-size: .7em; }

.hero-subtitle {
    font-size: .95rem;
    color: rgba(0, 45, 98, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
    text-align: justify;
}

.hero-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(0, 45, 98, 0.9);
}
.info-icon { font-size: 1rem; }

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-deadline {
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}
@media (max-width: 992px) {
    .hero-deadline {
        align-self: center;
    }
}

.btn-hero-primary {
    background: var(--magenta);
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(233,30,140,.35);
}
.btn-hero-primary:hover {
    background: var(--magenta-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(233,30,140,.45);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(0, 45, 98, 0.3);
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(0, 45, 98, 0.05);
    transform: translateY(-2px);
}

.hero-image-side {
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .85;
}
.hero-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark) 0%, transparent 30%),
                linear-gradient(to top, var(--dark) 0%, transparent 30%);
    z-index: 1;
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 50%, #002d62 100%);
    padding: 16px 24px;
}
.countdown-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.countdown-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
}
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}
.countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.countdown-text {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}
.countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    margin-bottom: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #e4f7db 0%, #d4f0fd 50%, #aae0fa 100%);
    position: relative;
    overflow: hidden;
}
.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 350px;
    background: url('scr/dakar_skyline.png') center bottom / cover no-repeat;
    mix-blend-mode: multiply;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}
.about-section .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    color: #0b1a30;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.8;
    text-align: justify;
}

.about-subhead {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 10px;
}

.about-orgs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.org-badge {
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 100%);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.3);
}

.about-image-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    object-position: center bottom;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--magenta);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(233,30,140,.4);
}
.badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}
.badge-txt {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .85;
}

/* Key Numbers */
.key-numbers {
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 50%, #002d62 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

/* Video Promo */
.about-video-wrapper {
    position: relative;
    padding: 40px 0 20px;
    margin-top: 20px;
}
.about-video-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-light);
    background: #000;
}
.about-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.about-video-caption {
    text-align: center;
    max-width: 900px;
    margin: 14px auto 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: #0b1a30;
    line-height: 1.55;
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    border: 1px solid rgba(0, 45, 98, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.key-num-item { text-align: center; }
.kn-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.kn-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
}

/* ===== PROGRAMME SECTION ===== */
.programme-section {
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 50%, #002d62 100%);
    padding: 100px 0;
}
.programme-section .section-title { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.programme-section .section-desc { color: rgba(255,255,255,.95); font-size: 1.1rem; font-weight: 500; }

.schedule-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}
.tab-btn {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    padding: 14px 40px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}
.tab-btn:hover { background: rgba(255,255,255,.2); color: var(--white); }
.tab-btn.active {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(233,30,140,.4);
}
.tab-day { font-size: 1.25rem; font-weight: 800; }
.tab-date { font-size: .85rem; font-weight: 600; opacity: 1; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s ease; }

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

.schedule-list { display: flex; flex-direction: column; gap: 14px; }

.schedule-item {
    display: grid;
    grid-template-columns: 95px 52px 1fr;
    gap: 18px;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 20px 26px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.schedule-item:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); }
.schedule-item.panel { border-left: 5px solid var(--magenta); }
.schedule-item.break { opacity: 1; background: rgba(255,255,255,.08); }

.sch-time {
    font-size: .95rem;
    font-weight: 800;
    color: #fdb913;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sch-icon {
    font-size: 1.6rem;
    text-align: center;
    background: rgba(255,255,255,.15);
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sch-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.sch-info p {
    font-size: .92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}
.panel-tag {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== PARTNERS BANNER ===== */
.partners-banner {
    background: var(--off-white);
    padding: 24px 24px;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}
.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.partners-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gray);
    white-space: nowrap;
}
.partner-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.partner-logo-item {
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy);
    padding: 10px 20px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* ===== THEMATIQUES ===== */
.thematiques-section .section-label {
    color: var(--gold) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    background: none !important;
    -webkit-text-fill-color: var(--gold) !important;
}

.thematiques-section .section-title {
    color: var(--gold) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    background: none !important;
    -webkit-text-fill-color: var(--gold) !important;
}

.thematiques-section {
    padding: 100px 0;
    background: var(--off-white);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.theme-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.theme-card.featured-theme {
    background: var(--navy);
    border-color: transparent;
}
.theme-card.featured-theme .theme-num { color: rgba(255,255,255,.3); }
.theme-card.featured-theme h4 { color: var(--white); }

.theme-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-light);
    line-height: 1;
}
.theme-icon { font-size: 2rem; }
.theme-card h4 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

/* ===== CONDITIONS DE PARTICIPATION ===== */
.conditions-section {
    padding: 100px 0 0;
    background: var(--white);
}

.part-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.part-card {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.part-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #008837;
}
.part-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.part-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.part-card p {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.55;
}

.modalites-wrap {
    background: linear-gradient(135deg, rgba(0,45,98,0.04) 0%, rgba(233,30,99,0.04) 100%);
    border: 1px solid rgba(0,45,98,0.12);
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 60px;
}
.modalites-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}
.modalites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mod-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.mod-card:hover {
    border-color: var(--magenta);
    box-shadow: var(--shadow);
}
.mod-card.featured {
    border: 2px solid var(--magenta);
}
.mod-badge {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    font-size: .65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.mod-badge.gold {
    background: linear-gradient(135deg, #c9a84c 0%, #e0c370 100%);
    color: #001833;
}
.mod-badge.blue {
    background: #008cd4;
}
.mod-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.mod-card p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.5;
}

.intervenants-note {
    text-align: center;
    font-size: .85rem;
    color: var(--gray);
    padding: 20px;
    background: rgba(233,30,140,.05);
    border: 1px dashed rgba(233,30,140,.3);
    border-radius: 10px;
    margin-bottom: 60px;
}

.placeholder-tag {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Image band venue */
.intervenants-image-band {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.band-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,15,30,.85) 0%, rgba(10,15,30,.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.band-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 8px;
}
.band-overlay p {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
}

/* ===== STANDS ===== */
.stands-section {
    padding: 100px 0;
    background: var(--off-white);
}

.stands-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.pricing-cards-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 32px 28px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}
.pricing-card.featured-card {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.04);
}
.pricing-card.featured-card:hover { transform: scale(1.04) translateY(-6px); }

.pc-badge-tag {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--magenta);
    color: var(--white);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.pc-header { margin-bottom: 24px; }
.pc-size {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.featured-card .pc-size { color: var(--white); }

.pc-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--magenta);
}
.pc-price-alt {
    display: block;
    font-size: .78rem;
    color: var(--gray);
    margin-top: 2px;
}
.featured-card .pc-price-alt { color: rgba(255,255,255,.5); }

.pc-features {
    list-style: none;
    margin-bottom: 28px;
}
.pc-features li {
    font-size: .83rem;
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pc-features li::before {
    content: '✓';
    color: var(--magenta);
    font-weight: 700;
    flex-shrink: 0;
}
.featured-card .pc-features li {
    color: rgba(255,255,255,.7);
    border-bottom-color: rgba(255,255,255,.08);
}

.btn-stand {
    display: block;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-stand:hover { background: var(--magenta); transform: translateY(-2px); }
.btn-stand.featured-btn { background: var(--magenta); }
.btn-stand.featured-btn:hover { background: var(--magenta-dk); }

.stands-info-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 32px;
    min-width: 260px;
}
.stands-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--magenta);
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 18px;
}
.info-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
}
.info-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}
.btn-contact-stand {
    display: block;
    text-align: center;
    background: var(--magenta);
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 50px;
    margin-top: 24px;
    transition: var(--transition);
}
.btn-contact-stand:hover { background: var(--magenta-dk); transform: translateY(-2px); }

.stands-cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.btn-stands-cta {
    display: inline-block;
    background: linear-gradient(135deg, #fdb913 0%, #e6a100 100%);
    color: #001833 !important;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    border: none;
}
.btn-stands-cta:hover {
    background: linear-gradient(135deg, #ffe082 0%, #fdb913 100%);
    color: #001833 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(253, 185, 19, 0.6);
}

/* ===== GALERIE ===== */
.galerie-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 50%, #002d62 100%);
}
.galerie-section .section-title { color: var(--white); }
.galerie-section .section-desc { color: rgba(255,255,255,.55); }
.galerie-section .section-label { color: var(--gold-light); }

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
}
.gallery-card {
    display: flex;
    flex-direction: column;
}
.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.gallery-img-wrap img,
.gallery-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-card:hover .gallery-img-wrap img,
.gallery-card:hover .gallery-img-wrap video { 
    transform: scale(1.05); 
}
.gallery-caption {
    padding: 12px 2px 6px;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
}

/* ===== HOMMAGE SECTION ===== */
.hommage-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.03) 0%, rgba(233, 30, 140, 0.03) 100%), var(--off-white);
    position: relative;
    overflow: hidden;
}
.hommage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.hommage-card {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 45, 98, 0.06);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}
.hommage-quote-icon {
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(233, 30, 140, 0.07);
    line-height: 1;
    user-select: none;
}
.hommage-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}
.hommage-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--magenta);
    border-radius: 2px;
}
.hommage-content {
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 25px;
}
.hommage-content p {
    margin-bottom: 12px;
}
.hommage-content p:last-child {
    margin-bottom: 0;
}
.hommage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 45, 98, 0.08);
    padding-top: 16px;
}
.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.author-title {
    font-size: 0.85rem;
    color: var(--magenta);
    font-weight: 600;
}
@media (max-width: 768px) {
    .hommage-card {
        padding: 30px 20px;
    }
    .hommage-quote-icon {
        left: 15px;
        top: 5px;
        font-size: 4rem;
    }
}

/* ===== SPONSORING ===== */
.sponsoring-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5fb946 0%, #008cd4 50%, #002d62 100%);
}

.sponsoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.spon-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
}
.spon-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(233,30,140,.4);
    transform: translateY(-4px);
}
.spon-icon { font-size: 2.2rem; margin-bottom: 16px; }
.spon-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.spon-card p { font-size: .82rem; color: rgba(255,255,255,.55); }

.spon-cta-wrap { text-align: center; }
.btn-spon-cta {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(233,30,140,.4);
}
.btn-spon-cta:hover { background: var(--magenta-dk); transform: translateY(-2px); }

/* ===== INTERVENANTS SECTION ===== */
.intervenants-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001833 0%, #002b5c 50%, #001226 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.intervenants-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 136, 55, 0.2), transparent 50%);
    pointer-events: none;
}

.intervenants-card-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.intervenants-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: .02em;
}

.intervenants-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.intervenant-profile-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 22px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.intervenant-profile-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 136, 55, 0.22);
    border-color: var(--green-light);
}

.intervenant-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.intervenant-profile-item span:last-child {
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.45;
    color: #e2e8f0;
}

.intervenants-footer-note {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.intervenants-footer-note p {
    font-size: 1.05rem;
    color: var(--gold-light);
    font-style: italic;
    max-width: 720px;
    line-height: 1.6;
}

.btn-register-intervenant {
    display: inline-block;
    background: linear-gradient(135deg, var(--magenta) 0%, #a8115d 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(216, 27, 96, 0.4);
}

.btn-register-intervenant:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(216, 27, 96, 0.6);
}

/* ===== INSCRIPTION ===== */
.inscription-section {
    padding: 100px 0;
    background: var(--white);
}

.inscription-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.inscription-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin: 16px 0;
}
.inscription-info > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.inscription-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.ins-stat { text-align: center; }
.ins-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--magenta);
}
.ins-lbl {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray);
}

.placeholder-box {
    background: rgba(233,30,140,.06);
    border: 1px dashed rgba(233,30,140,.3);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Forms */
.inscription-form,
.contact-form {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px;
}
.inscription-form h3,
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--magenta);
    outline: none;
    box-shadow: 0 0 0 3px rgba(233,30,140,.1);
}

.btn-submit {
    width: 100%;
    background: var(--magenta);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--magenta-dk); transform: translateY(-2px); }

.form-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: .9rem;
    font-weight: 600;
    margin-top: 16px;
}
.hidden { display: none !important; }

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 28px;
}
.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--magenta);
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .85rem;
    color: var(--gray);
}
.contact-detail a { color: var(--navy); font-weight: 600; }
.contact-detail a:hover { color: var(--magenta); }
.cd-icon { font-size: 1rem; flex-shrink: 0; }

.map-container {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-light);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}
.contact-form-wrap .contact-form {
    background: none;
    border: none;
}

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #004b20 0%, #003a70 50%, #001833 100%); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo { height: 44px; border-radius: 6px; margin-bottom: 16px; }

.footer-brand p {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.8;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--magenta); color: var(--white); }

.footer-links-col h5,
.footer-contact-col h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
    font-size: .83rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}
.footer-links-col ul li a:hover { color: var(--white); }

.footer-contact-col p {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-content > p {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom-stats {
    display: flex;
    gap: 10px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

@media (max-width: 992px) {
    .part-grid, .modalites-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero { display: flex; flex-direction: column; min-height: auto; }
    .hero-president-side { display: block; width: 100%; height: 520px; max-height: 65vh; min-height: 380px; position: relative; order: -1; }
    .hero-president-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-image-side { display: none; }
    .hero-content { padding: 24px 24px 50px; max-width: 700px; margin: 0 auto; text-align: center; }
    .hero-stats-top { justify-content: center; }
    .hero-info { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .key-numbers { grid-template-columns: repeat(2, 1fr); padding: 40px; }
    .stands-layout { grid-template-columns: 1fr; }
    .inscription-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .sponsoring-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .part-grid, .modalites-grid { grid-template-columns: 1fr; gap: 16px; }
    .part-card { padding: 24px 18px; text-align: left; }
    .part-icon { font-size: 2.2rem; margin-bottom: 8px; }
    .part-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
    .part-card p { font-size: .88rem; line-height: 1.6; }
    .modalites-wrap { padding: 24px 16px; border-radius: 18px; }
    .modalites-title { font-size: 1.25rem; margin-bottom: 20px; }
    .mod-card { padding: 20px 16px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-president-side { height: 480px; max-height: 60vh; }
    .hero-content { padding: 20px 16px 40px; }
    .about-img { max-height: 380px; object-position: center bottom; padding: 14px; }
    .about-img-badge { bottom: -15px; left: 10px; padding: 14px 22px; }
    .hero-title { font-size: 2.8rem; }
    .hero-stats-top { gap: 16px; }
    .key-numbers { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }
    .themes-grid { grid-template-columns: 1fr 1fr; }
    .intervenants-grid { grid-template-columns: 1fr 1fr; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: 1 / -1; }
    .sponsoring-grid { grid-template-columns: 1fr; }
    .pricing-cards-wrap { flex-direction: column; }
    .pricing-card.featured-card { transform: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .countdown-inner { flex-direction: column; gap: 16px; }
    .band-overlay { padding: 40px 24px; }
    .band-overlay h3 { font-size: 1.8rem; }
    .schedule-item { grid-template-columns: 70px 44px 1fr; gap: 10px; padding: 14px 16px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: .78rem; padding: 8px 14px; }
    .part-grid, .modalites-grid { grid-template-columns: 1fr; }
    .themes-grid, .intervenants-grid { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: 1fr; }
    .hero-stats-top { flex-wrap: wrap; justify-content: center; }
}

/* ===== MODAL INSCRIPTION INTERVENANT ===== */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 18, 38, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-content-box {
    background: #ffffff;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 1px solid var(--gray-light);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--off-white);
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: var(--navy);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-badge {
    display: inline-block;
    background: var(--gold);
    color: #001833;
    font-size: .75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: .88rem;
    color: var(--gray);
}

.btn-submit-modal {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 24px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 45, 98, 0.35);
    display: block;
    text-align: center;
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    box-shadow: 0 12px 30px rgba(0, 45, 98, 0.5);
}

.btn-submit-modal.green-btn {
    background: linear-gradient(135deg, #008837 0%, #005c25 100%);
    color: #ffffff !important;
    border: 2px solid #a7f3d0;
    box-shadow: 0 8px 25px rgba(0, 136, 55, 0.35);
}

.btn-submit-modal.green-btn:hover {
    background: linear-gradient(135deg, #009c3f 0%, #00702d 100%);
    box-shadow: 0 12px 30px rgba(0, 136, 55, 0.5);
}

/* ===== HÔTELS PARTENAIRES SECTION ===== */
.hotels-section {
    padding: 90px 0;
    background: var(--off-white);
}

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

.hotel-card {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--navy-mid);
}

.hotel-card.featured-hotel {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
}

.hotel-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #001833;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hotel-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.hotel-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.hotel-loc {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--magenta);
    margin-bottom: 10px;
}

.hotel-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

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

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

/* Modal Type Tabs */
.modal-type-tabs {
    display: flex;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 24px;
}

.modal-tab-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.modal-tab-btn.active {
    background: #ffffff;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
    .modal-type-tabs {
        flex-direction: column;
    }
}

/* ===== REFIA PROGRAMME JOUR III STYLES ===== */
.refia-header-card {
    background: linear-gradient(135deg, #001833 0%, #002b5c 50%, #001226 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 24, 51, 0.4);
}
.refia-badge {
    display: inline-block;
    background: var(--gold);
    color: #001833;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.refia-header-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}
.refia-header-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}
.refia-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
}

.refia-concept-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}
.concept-main-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.refia-section-block {
    margin-bottom: 28px;
}
.refia-section-block h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.refia-section-block p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--dark);
    margin-bottom: 10px;
}
.refia-obj-box.main-obj {
    background: #f8f9fa;
    border-left: 4px solid var(--gold);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 18px;
}
.refia-obj-box.main-obj h5 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.sub-obj-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin: 18px 0 12px 0;
}
.refia-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.refia-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
}
.refia-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}
.highlight-gold {
    background: #fffdf5;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 14px;
    padding: 22px;
}
.refia-piliers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 14px;
}
.pilier-card {
    background: #f4f7fa;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(0, 45, 98, 0.08);
}
.pilier-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.pilier-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.pilier-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}
.refia-cta-box {
    text-align: center;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-light);
}
.btn-refia-cta {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c 0%, #a88428 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
}
.btn-refia-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.6);
}

@media (max-width: 768px) {
    .refia-piliers-grid {
        grid-template-columns: 1fr;
    }
    .refia-header-card, .refia-concept-box {
        padding: 24px 18px;
    }
}
