/* =====================================================
   ÉCOLE SAINTE AGNÈS - style.css
   ===================================================== */
/* ── RESET & BASE ── */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins',sans-serif; line-height:1.6; color:#2c3e50; background:#f8f9fa; overflow-x:hidden; }
html { scroll-behavior:smooth; }
img, video { max-width:100%; height:auto; display:block; }
::selection { background:#d4a84b; color:#1e3c72; }
:root {
  --primary:#1e3c72; --primary-light:#2a5298; --gold:#d4a84b;
  --text:#2c3e50; --text-light:#64748b;
  --shadow-sm:0 2px 10px rgba(0,0,0,.08);
  --shadow-md:0 10px 30px rgba(0,0,0,.12);
  --shadow-lg:0 20px 50px rgba(0,0,0,.15);
  --radius-sm:8px; --radius-md:16px; --radius-lg:24px;
}
.container { max-width:1300px; margin:0 auto; padding:0 20px; }
::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track { background:#f1f1f1; }
::-webkit-scrollbar-thumb { background:#2a5298; border-radius:5px; }
::-webkit-scrollbar-thumb:hover { background:#1e3c72; }
:focus-visible { outline:3px solid #d4a84b; outline-offset:2px; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announcement-bar { background:linear-gradient(90deg,#1e3c72,#2a5298); color:white; padding:12px 50px 12px 20px; position:relative; z-index:1001; overflow:hidden; transition:transform .3s; }
.announcement-bar::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent); animation:shimmerBar 3s infinite; }
@keyframes shimmerBar { 0%{left:-100%} 100%{left:100%} }
.announcement-content { display:flex; align-items:center; justify-content:center; gap:20px; max-width:1200px; margin:0 auto; flex-wrap:wrap; }
.announcement-icon { font-size:18px; animation:bounce 2s infinite; }
.announcement-text { font-size:14px; font-weight:500; }
.announcement-text strong { font-weight:700; }
.announcement-btn { display:inline-flex; align-items:center; gap:8px; background:#d4a84b; color:#1e3c72; padding:8px 20px; border-radius:25px; font-size:13px; font-weight:700; text-decoration:none; transition:all .3s; }
.announcement-btn:hover { background:white; transform:translateX(5px); }
.announcement-close { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.2); border:none; color:white; font-size:14px; cursor:pointer; padding:0; transition:all .3s; border-radius:50%; width:32px; height:32px; display:flex; align-items:center; justify-content:center; }
.announcement-close:hover { background:rgba(255,255,255,.4); }

/* =====================================================
   HEADER & NAVBAR
   ===================================================== */
.header { position:fixed; top:0; left:0; right:0; z-index:9999; width:100%; background:white; transition:all .3s; }
.header.scrolled .top-bar-ultra { display:none; }
.header.scrolled .navbar { box-shadow:0 4px 20px rgba(0,0,0,.15); }
.top-bar-ultra { background:linear-gradient(135deg,#1e3c72,#2a5298); border-bottom:3px solid #d4a84b; padding:12px 0; width:100%; transition:all .3s; }
.top-bar-title { display:flex; align-items:center; justify-content:center; gap:10px; color:#fff; font-size:13px; font-weight:700; letter-spacing:.3px; text-transform:uppercase; text-align:center; margin-bottom:10px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.2); }
.top-bar-title i { color:#d4a84b; font-size:14px; flex-shrink:0; }
.top-bar-info { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:8px; }
.top-info-item { display:inline-flex; align-items:center; gap:6px; color:#fff; font-size:11px; font-weight:500; padding:5px 12px; background:rgba(255,255,255,.1); border-radius:20px; border:1px solid rgba(255,255,255,.2); white-space:nowrap; }
.top-info-separator { width:4px; height:4px; background:rgba(255,255,255,.4); border-radius:50%; flex-shrink:0; }
.navbar { position:relative; background:#fff; box-shadow:0 2px 15px rgba(0,0,0,.1); width:100%; transition:all .3s; }
.navbar-container { display:flex; justify-content:space-between; align-items:center; padding:10px 20px; max-width:1200px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; flex-shrink:0; }
.logo a { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-img { width:55px; height:55px; object-fit:contain; border-radius:8px; flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; }
.logo-text h1 { font-size:20px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1.2; }
.logo-text p { font-size:10px; font-weight:600; color:#2a5298; letter-spacing:.3px; }
.nav-menu { display:flex; list-style:none; gap:5px; margin:0; padding:0; align-items:center; }
.nav-menu a { color:#1e3c72; text-decoration:none; padding:10px 15px; font-weight:600; font-size:14px; border-radius:6px; transition:all .3s; display:block; white-space:nowrap; }
.nav-menu a:hover, .nav-menu a.active { background:rgba(30,60,114,.1); color:#1e3c72; }
.nav-menu a.active { background:linear-gradient(135deg,#1e3c72,#2a5298); color:white !important; }
.nav-inscription { background:linear-gradient(135deg,#d4a84b,#e8c779) !important; color:#1e3c72 !important; padding:8px 18px !important; border-radius:50px !important; font-weight:700 !important; }
.nav-inscription:hover { box-shadow:0 5px 15px rgba(212,168,75,.4); transform:translateY(-2px); }
.cta-button { background:linear-gradient(135deg,#1e3c72,#2a5298); color:#fff; padding:10px 25px; border-radius:50px; text-decoration:none; font-weight:700; font-size:13px; transition:all .3s; border:none; cursor:pointer; box-shadow:0 4px 12px rgba(30,60,114,.3); white-space:nowrap; flex-shrink:0; }
.cta-button:hover { transform:translateY(-2px); box-shadow:0 6px 18px rgba(30,60,114,.4); }
.menu-toggle { display:none; font-size:26px; cursor:pointer; color:#1e3c72; padding:10px; background:rgba(30,60,114,.1); border-radius:8px; transition:all .3s; -webkit-tap-highlight-color:transparent; width:48px; height:48px; align-items:center; justify-content:center; }
.menu-toggle:hover { background:rgba(30,60,114,.2); color:#d4a84b; }
.menu-toggle.active { background:#1e3c72; color:white; }

/* Croix fermeture menu — cachée sur desktop */
.nav-close-item { display:none; border-bottom:none !important; padding:15px 20px 5px !important; }
.nav-close-btn { background:rgba(30,60,114,.1); border:none; border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:20px; color:#1e3c72; cursor:pointer; }
.nav-close-btn:hover { background:#1e3c72; color:white; }

.nav-dropdown { position:relative; }
.dropdown-toggle { display:flex; align-items:center; gap:6px; cursor:pointer; }
.dropdown-toggle i { font-size:11px; transition:transform .3s; }
.nav-dropdown:hover .dropdown-toggle i, .dropdown-toggle.open i { transform:rotate(180deg); }
.dropdown-menu { position:absolute; top:calc(100% + 15px); left:50%; transform:translateX(-50%); background:white; border-radius:14px; box-shadow:0 15px 40px rgba(0,0,0,.15); min-width:200px; padding:10px; opacity:0; visibility:hidden; transition:all .3s; z-index:1000; border:1px solid rgba(30,60,114,.08); }
.dropdown-menu.open, .nav-dropdown:hover .dropdown-menu { opacity:1; visibility:visible; }
.dropdown-menu::before { content:''; position:absolute; top:-6px; left:50%; width:12px; height:12px; background:white; border-left:1px solid rgba(30,60,114,.08); border-top:1px solid rgba(30,60,114,.08); transform:translateX(-50%) rotate(45deg); }
.dropdown-menu li { list-style:none; }
.dropdown-menu li a { display:flex; align-items:center; gap:10px; padding:12px 16px; color:#1e3c72; font-size:14px; font-weight:600; border-radius:10px; text-decoration:none; transition:all .2s; }
.dropdown-menu li a:hover, .dropdown-menu li a.active { background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; }
.dropdown-menu li a i { width:18px; text-align:center; color:#d4a84b; }
.dropdown-menu li a:hover i, .dropdown-menu li a.active i { color:white; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section { position:relative; min-height:85vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:1; }
.hero-bg-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.hero-bg-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,25,47,.92),rgba(30,60,114,.80),rgba(42,82,152,.55)); }
.hero-content { position:relative; z-index:10; width:100%; padding:140px 0 100px; }
.hero-slide { display:none; }
.hero-slide.active { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; animation:hfi .8s ease; }
@keyframes hfi { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-left { display:flex; flex-direction:column; gap:20px; }
.hero-badge { display:inline-flex; align-items:center; gap:10px; background:rgba(212,168,75,.15); border:1px solid rgba(212,168,75,.4); color:#d4a84b; padding:10px 20px; border-radius:50px; font-size:14px; font-weight:600; width:fit-content; }
.hero-title { font-size:52px; font-weight:900; color:white; font-family:'Montserrat',sans-serif; line-height:1.1; }
.hero-gold { color:#d4a84b; }
.hero-tagline { font-size:18px; color:rgba(255,255,255,.8); font-style:italic; letter-spacing:2px; }
.hero-btns { display:flex; flex-wrap:wrap; gap:12px; }
.hbtn { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.25); color:white; padding:13px 22px; border-radius:50px; font-size:13px; font-weight:600; text-decoration:none; transition:all .3s; }
.hbtn:hover { background:rgba(255,255,255,.2); border-color:rgba(212,168,75,.6); }
.hbtn-gold { background:linear-gradient(135deg,#d4a84b,#e8c779); border-color:transparent; color:#1e3c72; }
.hbtn-gold:hover { box-shadow:0 10px 30px rgba(212,168,75,.4); }
.hero-main-img { width:100%; border-radius:20px; box-shadow:0 25px 50px rgba(0,0,0,.4); border:4px solid rgba(255,255,255,.2); }
.hero-right { display:flex; justify-content:center; align-items:center; }
.merites-duo { display:flex; gap:25px; justify-content:center; }
.merite-card { display:flex; flex-direction:column; align-items:center; gap:0; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:20px; width:220px; overflow:hidden; transition:all .4s; }
.merite-card:hover { transform:translateY(-8px); background:rgba(255,255,255,.15); box-shadow:0 20px 40px rgba(0,0,0,.3); }
.merite-card img { width:100%; height:220px; border-radius:0; object-fit:cover; object-position:top; border:none; display:block; }
.merite-ph { width:100%; height:220px; border-radius:0; background:linear-gradient(135deg,#1e3c72,#2a5298); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.3); font-size:60px; border:none; }
.merite-lbl { background:rgba(212,168,75,.25); color:#d4a84b; padding:8px 16px; border-radius:20px; font-size:12px; font-weight:600; margin-top:15px; display:flex; align-items:center; gap:6px; }
.merite-card strong { color:white; font-size:16px; font-weight:700; text-align:center; padding:8px 15px 18px; font-family:'Montserrat',sans-serif; }
.hero-nav { position:absolute; bottom:30px; left:50%; transform:translateX(-50%); z-index:20; display:flex; flex-direction:column; align-items:center; gap:12px; }
.hero-progress-wrap { width:200px; height:3px; background:rgba(255,255,255,.2); border-radius:2px; overflow:hidden; }
.hero-progress-bar { height:100%; background:#d4a84b; width:0%; }
.hero-dots { display:flex; gap:8px; }
.hero-dot { background:rgba(255,255,255,.25); border:none; padding:8px 18px; border-radius:20px; color:rgba(255,255,255,.8); font-size:12px; font-weight:500; cursor:pointer; transition:all .3s; }
.hero-dot.active { background:rgba(212,168,75,.35); color:#d4a84b; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
section { padding:90px 0; }
.section-badge { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; padding:10px 22px; border-radius:50px; font-size:13px; font-weight:600; }
.section-badge i { color:#d4a84b; }
.laureats-header { text-align:center; margin-bottom:50px; }
.laureats-header h2 { font-size:40px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; margin:15px 0 10px; }
.laureats-header p { color:#64748b; font-size:16px; }

/* =====================================================
   SECTION LAURÉATS
   ===================================================== */
.laureats-section { padding:90px 0; background:#f8fafc; }
.l-classe-block { margin-bottom:60px; }
.l-classe-titre { display:flex; align-items:center; gap:14px; margin-bottom:28px; }
.l-classe-titre i { color:#d4a84b; font-size:20px; }
.l-classe-titre span { font-size:20px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; white-space:nowrap; }
.l-classe-line { flex:1; height:2px; background:linear-gradient(90deg,#d4a84b,transparent); border-radius:2px; }
.l-mosaic { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:10px; gap:14px; }
.l-mosaic-1 { grid-row-end:span 32; }
.l-mosaic-2 { grid-row-end:span 25; }
.l-mosaic-3 { grid-row-end:span 28; }
.l-mosaic-4 { grid-row-end:span 23; }
.l-mosaic-5 { grid-row-end:span 30; }
.l-mosaic-card { background:white; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(30,60,114,.1); transition:transform .35s ease,box-shadow .35s ease; cursor:pointer; display:flex; flex-direction:column; }
.l-mosaic-card:hover { transform:translateY(-8px) scale(1.02); box-shadow:0 20px 45px rgba(30,60,114,.2); }
.l-mosaic-img { position:relative; flex:1; overflow:hidden; background:#e2e8f0; min-height:160px; }
.l-mosaic-img img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; transition:transform .5s ease; }
.l-mosaic-card:hover .l-mosaic-img img { transform:scale(1.07); }
.l-mosaic-ph { width:100%; height:100%; min-height:160px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; font-size:42px; }
.l-mosaic-overlay { position:absolute; top:0; left:0; right:0; padding:10px 12px; display:flex; justify-content:flex-end; }
.l-mosaic-zoom { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(0.8); width:44px; height:44px; background:rgba(30,60,114,.85); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#d4a84b; font-size:16px; opacity:0; transition:all .3s ease; }
.l-mosaic-card:hover .l-mosaic-zoom { opacity:1; transform:translate(-50%,-50%) scale(1); }
.l-slide-zoom { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(0.8); width:50px; height:50px; background:rgba(30,60,114,.85); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#d4a84b; font-size:18px; opacity:0; transition:all .3s ease; }
.l-slide:hover .l-slide-zoom { opacity:1; transform:translate(-50%,-50%) scale(1); }
.l-mosaic-exam { background:#1e3c72; color:#d4a84b; font-size:9px; font-weight:800; padding:4px 10px; border-radius:20px; letter-spacing:.5px; border:1px solid rgba(212,168,75,.4); }
.l-mosaic-info { padding:12px 14px 14px; border-top:2px solid #f1f5f9; }
.l-mosaic-name { font-size:13px; font-weight:700; color:#1e3c72; line-height:1.3; margin-bottom:4px; }
.l-mosaic-moy { font-size:12px; font-weight:700; color:#d4a84b; display:flex; align-items:center; gap:4px; }
.l-show { position:relative; width:100%; padding:10px 0 40px; overflow:hidden; }
.l-slider-track { display:flex; gap:24px; transition:transform .7s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
.l-slide { flex:0 0 calc(33.333% - 16px); background:white; border-radius:22px; overflow:hidden; box-shadow:0 8px 30px rgba(30,60,114,.12); border:1px solid rgba(30,60,114,.06); transition:box-shadow .35s ease,transform .35s ease; }
.l-slide:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(30,60,114,.2); }
.l-slide-photo { position:relative; width:100%; height:300px; overflow:hidden; background:linear-gradient(135deg,#1e3c72,#2a5298); }
.l-slide-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; transition:transform .5s ease; }
.l-slide:hover .l-slide-photo img { transform:scale(1.05); }
.l-slide-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.4); font-size:70px; }
.l-slide-exam { position:absolute; top:16px; right:16px; background:#1e3c72; color:#d4a84b; font-size:10px; font-weight:800; padding:5px 14px; border-radius:20px; letter-spacing:.5px; border:1px solid rgba(212,168,75,.4); }
.l-slide-info { padding:20px 22px 22px; display:flex; flex-direction:column; gap:7px; }
.l-slide-classe { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:6px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.l-slide-info h3 { font-size:20px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1.2; }
.l-mention { display:inline-flex; align-items:center; gap:6px; background:linear-gradient(135deg,#10b981,#059669); color:white; padding:4px 14px; border-radius:20px; font-size:12px; font-weight:600; width:fit-content; }
.l-moy { font-size:15px; color:#d4a84b; font-weight:700; display:flex; align-items:center; gap:5px; }
.l-year { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:5px; }
.l-arrow { position:absolute; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:50%; background:white; border:2px solid #e2e8f0; color:#1e3c72; font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(0,0,0,.12); transition:all .3s; z-index:10; }
.l-arrow:hover { background:#1e3c72; color:white; border-color:#1e3c72; }
.l-arrow-prev { left:-25px; }
.l-arrow-next { right:-25px; }
.l-dots { display:flex; justify-content:center; gap:8px; margin-top:28px; }
.l-dot { width:8px; height:8px; border-radius:50%; background:#e2e8f0; border:none; cursor:pointer; transition:all .3s; padding:0; }
.l-dot.active { width:28px; border-radius:4px; background:linear-gradient(90deg,#1e3c72,#d4a84b); }
.l-bar-wrap { width:200px; height:3px; background:#e2e8f0; border-radius:10px; overflow:hidden; margin:12px auto 0; }
.l-bar { height:100%; background:linear-gradient(90deg,#1e3c72,#d4a84b); border-radius:10px; width:0%; transition:width .1s linear; }
.l-nav-thumbs { display:none; }

@media (max-width:1024px) {
    .l-mosaic { grid-template-columns:repeat(3,1fr); }
    .l-slide { flex:0 0 calc(50% - 12px); }
}
@media (max-width:768px) {
    .l-mosaic { grid-template-columns:repeat(2,1fr); grid-auto-rows:8px; gap:10px; }
    .l-mosaic-1 { grid-row-end:span 28; }
    .l-mosaic-2 { grid-row-end:span 24; }
    .l-mosaic-3 { grid-row-end:span 26; }
    .l-mosaic-4 { grid-row-end:span 22; }
    .l-mosaic-5 { grid-row-end:span 25; }
    .l-slide { flex:0 0 100%; }
    .l-slide-photo { height:220px; }
    .l-arrow-prev { left:5px; }
    .l-arrow-next { right:5px; }
    .l-show { padding:10px 0 20px; }
}
@media (max-width:480px) {
    .l-mosaic { grid-template-columns:1fr 1fr; }
}

/* =====================================================
   SECTION RÉSULTATS
   ===================================================== */
.resultats-section { padding:90px 0; background:#f8fafc; position:relative; overflow:hidden; }
.resultats-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:60px; align-items:start; }
.resultats-left { display:flex; flex-direction:column; }
.resultats-section .section-badge { display:inline-flex; align-items:center; gap:8px; background:#1e3c72; color:white; padding:9px 20px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:22px; width:fit-content; }
.resultats-section .section-badge i { color:#d4a84b; }
.resultats-section .laureats-header { text-align:left; margin-bottom:28px; }
.resultats-section .laureats-header h2 { font-size:38px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1.15; margin-bottom:6px; }
.resultats-section .laureats-header p { font-size:15px; color:#64748b; margin:0; }
.year-tabs { display:flex; gap:12px; margin-bottom:30px; flex-wrap:wrap; }
.ytab { display:flex; align-items:center; gap:8px; padding:12px 22px; border:2px solid #e2e8f0; background:white; border-radius:12px; cursor:pointer; transition:all .3s ease; font-size:14px; font-weight:700; color:#475569; font-family:'Poppins',sans-serif; }
.ytab i { color:#94a3b8; font-size:13px; transition:color .3s; }
.ytab:hover { border-color:#2a5298; color:#2a5298; background:rgba(42,82,152,.05); }
.ytab:hover i { color:#2a5298; }
.ytab.active { background:#1e3c72; border-color:#1e3c72; color:white; box-shadow:0 4px 15px rgba(30,60,114,.3); }
.ytab.active i { color:#d4a84b; }
.resultats-desc { font-size:14px; color:#64748b; line-height:1.7; margin-bottom:25px; }
.resultats-quote { background:white; border-left:4px solid #2a5298; border-radius:0 12px 12px 0; padding:20px 22px; box-shadow:0 4px 15px rgba(0,0,0,.06); }
.resultats-quote::before { content:'\201C'; font-size:48px; color:#d4a84b; line-height:0; vertical-align:-22px; margin-right:4px; font-family:Georgia,serif; }
.resultats-quote p { color:#334155; font-size:14px; line-height:1.7; font-style:italic; display:inline; margin:0; }
.resultats-quote strong { color:#1e3c72; font-weight:700; }
.resultats-right { display:flex; flex-direction:column; }
.resultats-panel { display:none; }
.resultats-panel.active { display:block; animation:fadeInPanel .4s ease; }
@keyframes fadeInPanel { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.stat-box { background:white; border-radius:18px; padding:28px 24px 22px; display:flex; flex-direction:column; gap:10px; box-shadow:0 4px 20px rgba(0,0,0,.07); border:1px solid rgba(0,0,0,.05); position:relative; overflow:hidden; transition:all .35s ease; }
.stat-box::before { content:''; position:absolute; top:0; left:0; width:5px; height:100%; border-radius:4px 0 0 4px; }
.stat-box:hover { transform:translateY(-6px); box-shadow:0 14px 35px rgba(0,0,0,.12); }
.stat-blue::before { background:linear-gradient(180deg,#3b82f6,#1e40af); }
.stat-green::before { background:linear-gradient(180deg,#10b981,#059669); }
.stat-orange::before { background:linear-gradient(180deg,#f59e0b,#d97706); }
.stat-purple::before { background:linear-gradient(180deg,#8b5cf6,#7c3aed); }
.stat-icon { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:19px; margin-bottom:4px; }
.stat-blue .stat-icon { background:rgba(59,130,246,.12); color:#3b82f6; }
.stat-green .stat-icon { background:rgba(16,185,129,.12); color:#10b981; }
.stat-orange .stat-icon { background:rgba(245,158,11,.12); color:#f59e0b; }
.stat-purple .stat-icon { background:rgba(139,92,246,.12); color:#8b5cf6; }
.stat-val { font-size:50px; font-weight:900; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1; display:flex; align-items:flex-start; gap:2px; }
.stat-val span { font-size:24px; color:#64748b; font-weight:700; margin-top:10px; }
.stat-lbl { font-size:12px; font-weight:700; color:#64748b; text-transform:uppercase; letter-spacing:.8px; }
.stat-bar { height:5px; background:#f1f5f9; border-radius:10px; overflow:hidden; margin-top:4px; }
.stat-fill { height:100%; border-radius:10px; width:0%; transition:width 1.4s cubic-bezier(0.4,0,0.2,1); }
.stat-blue .stat-fill { background:linear-gradient(90deg,#3b82f6,#60a5fa); }
.stat-green .stat-fill { background:linear-gradient(90deg,#10b981,#34d399); }
.stat-orange .stat-fill { background:linear-gradient(90deg,#f59e0b,#fbbf24); }
.stat-purple .stat-fill { background:linear-gradient(90deg,#8b5cf6,#a78bfa); }

/* =====================================================
   SECTION HISTORIQUE
   ===================================================== */
.historique-section { padding:80px 0; background:#f8fafc; }
.historique-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:40px; align-items:start; margin-bottom:60px; }
.hist-about { background:white; border-radius:20px; padding:35px; box-shadow:0 4px 20px rgba(0,0,0,.06); }
.hist-about h3 { font-size:22px; font-weight:700; color:#1e3c72; margin-bottom:15px; display:flex; align-items:center; gap:10px; }
.hist-about h3 i { color:#d4a84b; }
.hist-about p { color:#475569; font-size:15px; line-height:1.8; margin-bottom:12px; }
.hist-docs { display:grid; grid-template-columns:1fr 1fr; gap:15px; margin-top:25px; }
.hist-doc { display:flex; gap:12px; align-items:flex-start; background:#f8fafc; border-radius:12px; padding:15px; border:1px solid #e2e8f0; }
.hist-doc>i { color:#d4a84b; font-size:22px; flex-shrink:0; margin-top:3px; }
.hist-doc div { display:flex; flex-direction:column; gap:4px; }
.hist-doc span { color:#d4a84b; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; }
.hist-doc strong { color:#1e3c72; font-size:13px; font-weight:700; }
.hist-doc small { color:#94a3b8; font-size:12px; }
.hist-fondatrice { background:white; border-radius:20px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.06); }
.fondatrice-img img { width:100%; max-height:300px; object-fit:cover; object-position:top; display:block; }
.fondatrice-info { padding:25px; }
.fond-badge { display:inline-flex; align-items:center; gap:6px; background:#d4a84b; color:#1e3c72; padding:5px 14px; border-radius:20px; font-size:12px; font-weight:700; margin-bottom:12px; }
.fondatrice-info h3 { font-size:20px; font-weight:700; color:#1e3c72; margin-bottom:5px; }
.fond-role { color:#64748b; font-size:14px; margin-bottom:12px; }
.fondatrice-info blockquote { color:#475569; font-size:14px; line-height:1.7; font-style:italic; border-left:3px solid #d4a84b; padding-left:15px; margin:0; }
.evo-title { font-size:22px; font-weight:700; color:#1e3c72; margin-bottom:25px; display:flex; align-items:center; gap:10px; }
.evo-title i { color:#d4a84b; }
.evo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.evo-card { position:relative; border-radius:16px; overflow:hidden; cursor:pointer; box-shadow:0 8px 25px rgba(0,0,0,.12); transition:all .3s; }
.evo-card:hover { transform:translateY(-5px); }
.evo-card img { width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s; }
.evo-card:hover img { transform:scale(1.05); }
.evo-overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,rgba(10,25,47,.95),transparent); padding:25px; }
.evo-year { display:inline-block; background:#d4a84b; color:#1e3c72; padding:4px 12px; border-radius:20px; font-size:12px; font-weight:800; margin-bottom:8px; }
.evo-overlay h4 { color:white; font-size:17px; font-weight:700; margin-bottom:4px; }
.evo-overlay p { color:rgba(255,255,255,.8); font-size:13px; margin:0; }
.evo-zoom { position:absolute; top:12px; right:12px; width:36px; height:36px; background:rgba(212,168,75,.9); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transition:all .3s; }
.evo-zoom i { color:#1e3c72; font-size:13px; }
.evo-card:hover .evo-zoom { opacity:1; }

/* =====================================================
   SECTION DIRECTRICE
   ===================================================== */
.directrice-section { padding:80px 0; background:linear-gradient(135deg,#1e3c72,#2a5298); }
.directrice-wrap { display:grid; grid-template-columns:350px 1fr; gap:60px; align-items:center; }
.dir-photo { position:relative; }
.dir-photo img { width:100%; max-height:420px; object-fit:cover; object-position:top; border-radius:20px; box-shadow:0 20px 50px rgba(0,0,0,.4); border:4px solid rgba(212,168,75,.4); display:block; }
.dir-badge { position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); background:#d4a84b; padding:14px 35px; border-radius:50px; text-align:center; white-space:nowrap; box-shadow:0 8px 25px rgba(212,168,75,.4); }
.dir-badge strong { display:block; color:#1e3c72; font-size:16px; font-weight:800; }
.dir-badge span { color:#2a5298; font-size:12px; font-weight:600; }
.dir-message { padding-top:20px; }
.dir-message h2 { font-size:34px; font-weight:800; color:white; margin-bottom:30px; display:flex; align-items:center; gap:12px; }
.dir-message h2 i { color:#d4a84b; }
.dir-body p { color:rgba(255,255,255,.85); font-size:16px; line-height:1.9; margin-bottom:15px; }
.dir-welcome { color:#d4a84b !important; font-weight:700 !important; font-size:17px !important; }
.dir-signature { display:flex; align-items:center; gap:20px; padding-top:20px; border-top:1px solid rgba(255,255,255,.15); }
.sig-line { width:60px; height:3px; background:#d4a84b; border-radius:2px; flex-shrink:0; }
.dir-signature strong { display:block; color:white; font-size:18px; font-family:'Georgia',serif; font-style:italic; }
.dir-signature small { color:rgba(255,255,255,.6); font-size:13px; }

/* =====================================================
   SECTION VALEURS
   ===================================================== */
.valeurs-section { padding:80px 0; background:white; }
.valeurs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.valeur-card { position:relative; background:white; border-radius:20px; padding:35px 30px; box-shadow:0 4px 20px rgba(0,0,0,.06); border:1px solid rgba(0,0,0,.04); transition:all .4s; overflow:hidden; }
.valeur-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:linear-gradient(90deg,#1e3c72,#2a5298); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
.valeur-card:hover::before { transform:scaleX(1); }
.valeur-card:hover { transform:translateY(-10px); box-shadow:0 20px 50px rgba(30,60,114,.15); }
.val-icon { width:70px; height:70px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:28px; margin-bottom:20px; transition:all .4s; }
.valeur-card:hover .val-icon { transform:scale(1.1) rotate(5deg); }
.val-num { position:absolute; top:25px; right:25px; font-size:48px; font-weight:800; color:rgba(30,60,114,.06); font-family:'Montserrat',sans-serif; line-height:1; }
.valeur-card h3 { font-size:20px; font-weight:700; color:#1e293b; margin-bottom:12px; }
.valeur-card p { font-size:14px; color:#64748b; line-height:1.7; }

/* =====================================================
   SECTION GALERIE
   ===================================================== */
.galerie-section { padding:80px 0; background:#f8fafc; }
.galerie-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }
.galerie-item { position:relative; border-radius:14px; overflow:hidden; cursor:pointer; aspect-ratio:4/3; box-shadow:0 4px 15px rgba(0,0,0,.1); transition:all .3s; background:#f3f4f6; }
.galerie-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.galerie-item:hover img { transform:scale(1.08); }
.galerie-overlay { position:absolute; inset:0; background:rgba(30,60,114,.6); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; opacity:0; transition:all .3s; }
.galerie-overlay i { color:white; font-size:30px; }
.galerie-overlay span { color:white; font-size:14px; font-weight:600; text-align:center; padding:0 15px; }
.galerie-item:hover .galerie-overlay { opacity:1; }

/* =====================================================
   SECTION INSCRIPTION
   ===================================================== */
.inscription-section { padding:80px 0; background:linear-gradient(135deg,#0f1e3c,#1e3c72); position:relative; overflow:hidden; }
.inscription-section::before { content:''; position:absolute; bottom:-30%; left:-10%; width:500px; height:500px; background:radial-gradient(circle,rgba(212,168,75,.08),transparent 60%); border-radius:50%; }
.inscription-section .laureats-header h2, .inscription-section .laureats-header p { color:white; }
.inscription-section .laureats-header p { color:rgba(255,255,255,.7); }
.inscription-section .section-badge { background:rgba(212,168,75,.2); border:1px solid rgba(212,168,75,.4); color:#d4a84b; }
.inscr-alert { display:flex; align-items:flex-start; gap:16px; padding:20px 24px; border-radius:16px; margin-bottom:30px; }
.inscr-alert i { font-size:24px; flex-shrink:0; margin-top:2px; }
.inscr-alert strong { display:block; font-size:15px; font-weight:700; margin-bottom:4px; }
.inscr-alert p { font-size:14px; margin:0; }
.inscr-alert-success { background:rgba(16,185,129,.15); border:1px solid rgba(16,185,129,.3); color:white; }
.inscr-alert-success i { color:#10b981; }
.inscr-alert-error { background:rgba(239,68,68,.15); border:1px solid rgba(239,68,68,.3); color:white; }
.inscr-alert-error i { color:#ef4444; }
.inscr-form-wrap { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:24px; padding:40px; max-width:800px; margin:0 auto; backdrop-filter:blur(10px); }
.inscr-steps-bar { display:flex; align-items:center; justify-content:center; gap:0; margin-bottom:40px; flex-wrap:nowrap; }
.inscr-step-item { display:flex; flex-direction:column; align-items:center; gap:6px; cursor:default; }
.inscr-step-num { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.2); color:rgba(255,255,255,.5); font-size:13px; font-weight:700; display:flex; align-items:center; justify-content:center; transition:all .3s; }
.inscr-step-item span { font-size:12px; color:rgba(255,255,255,.5); font-weight:500; transition:color .3s; }
.inscr-step-item.active .inscr-step-num { background:#d4a84b; border-color:#d4a84b; color:#1e3c72; }
.inscr-step-item.active span { color:white; }
.inscr-step-item.done .inscr-step-num { background:#10b981; border-color:#10b981; color:white; }
.inscr-step-item.done span { color:rgba(255,255,255,.7); }
.inscr-step-line { flex:1; height:2px; background:rgba(255,255,255,.15); min-width:40px; max-width:80px; margin-bottom:18px; }
.inscr-step-panel { display:none; }
.inscr-step-panel.active { display:block; animation:fadeInPanel .4s ease; }
.inscr-panel-title { font-size:18px; font-weight:700; color:white; margin-bottom:24px; display:flex; align-items:center; gap:10px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.1); }
.inscr-panel-title i { color:#d4a84b; }
.inscr-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:30px; }
.inscr-field-full { grid-column:1 / -1; }
.inscr-field { display:flex; flex-direction:column; gap:7px; }
.inscr-field label { font-size:13px; font-weight:600; color:rgba(255,255,255,.85); }
.req { color:#ef4444; }
.opt { color:rgba(255,255,255,.45); font-size:11px; font-weight:400; }
.inscr-field input, .inscr-field select, .inscr-field textarea { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:12px; padding:12px 16px; color:white; font-size:14px; font-family:'Poppins',sans-serif; transition:all .3s; width:100%; }
.inscr-field input::placeholder { color:rgba(255,255,255,.35); }
.inscr-field input:focus, .inscr-field select:focus { outline:none; border-color:#d4a84b; background:rgba(255,255,255,.12); }
.inscr-field select option { background:#1e3c72; color:white; }
.inscr-error { font-size:12px; color:#f87171; }
.inscr-file-wrap { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.inscr-file-wrap input[type="file"] { display:none; }
.inscr-file-label { display:inline-flex; align-items:center; gap:8px; background:rgba(212,168,75,.2); border:1px solid rgba(212,168,75,.4); color:#d4a84b; padding:10px 18px; border-radius:10px; font-size:13px; font-weight:600; cursor:pointer; transition:all .3s; white-space:nowrap; }
.inscr-file-label:hover { background:rgba(212,168,75,.35); }
.inscr-file-name { font-size:12px; color:rgba(255,255,255,.5); }
.inscr-nav { display:flex; justify-content:space-between; align-items:center; margin-top:10px; }
.inscr-btn-prev { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8); padding:12px 22px; border-radius:50px; font-size:14px; font-weight:600; cursor:pointer; transition:all .3s; }
.inscr-btn-prev:hover { background:rgba(255,255,255,.15); }
.inscr-btn-next { display:inline-flex; align-items:center; gap:8px; background:#d4a84b; border:none; color:#1e3c72; padding:12px 28px; border-radius:50px; font-size:14px; font-weight:700; cursor:pointer; transition:all .3s; }
.inscr-btn-next:hover { background:#e8c779; transform:translateX(3px); }
.inscr-btn-submit { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#10b981,#059669); border:none; color:white; padding:14px 32px; border-radius:50px; font-size:15px; font-weight:700; cursor:pointer; transition:all .3s; box-shadow:0 8px 25px rgba(16,185,129,.3); }
.inscr-btn-submit:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(16,185,129,.4); }

/* =====================================================
   SECTION CONTACT
   ===================================================== */
.contact-section { padding:80px 0; background:white; }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:40px; align-items:start; }
.contact-item { display:flex; gap:18px; align-items:flex-start; margin-bottom:25px; }
.contact-icon { width:50px; height:50px; border-radius:14px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-item h4 { color:#1e3c72; font-size:15px; font-weight:700; margin-bottom:5px; }
.contact-item p { color:#64748b; font-size:14px; line-height:1.6; }
.contact-socials { display:flex; gap:12px; margin-top:10px; }
.csocial { display:inline-flex; align-items:center; gap:8px; padding:12px 22px; border-radius:50px; font-size:14px; font-weight:600; text-decoration:none; transition:all .3s; }
.csocial.wa { background:#25d366; color:white; }
.csocial.fb { background:#1877f2; color:white; }
.csocial:hover { transform:translateY(-3px); }
.contact-map { border-radius:20px; overflow:hidden; height:420px; box-shadow:0 8px 30px rgba(0,0,0,.1); }
.contact-map iframe { width:100%; height:100%; border:none; }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.95); z-index:99999; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:all .3s; }
.lightbox.active { opacity:1; visibility:visible; }
.lightbox-close { position:absolute; top:20px; right:30px; background:none; border:none; color:white; font-size:50px; cursor:pointer; transition:all .3s; }
.lightbox-close:hover { color:#d4a84b; transform:rotate(90deg); }
.lightbox-content { max-width:90%; max-height:90%; text-align:center; }
.lightbox-content img { max-width:100%; max-height:80vh; border-radius:10px; }
.lightbox-content p { color:white; font-size:20px; margin-top:20px; font-weight:600; }

/* =====================================================
   BOUTONS FLOTTANTS
   ===================================================== */
.whatsapp-float { position:fixed; bottom:100px; right:30px; width:60px; height:60px; background:linear-gradient(135deg,#25d366,#128c7e); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:30px; box-shadow:0 5px 25px rgba(37,211,102,.4); z-index:999; transition:all .4s cubic-bezier(0.68,-0.55,0.265,1.55); text-decoration:none; }
.whatsapp-float:hover { transform:scale(1.1) rotate(15deg); }
.whatsapp-float::before { content:''; position:absolute; width:100%; height:100%; border-radius:50%; background:inherit; animation:whatsappPulse 2s infinite; z-index:-1; }
@keyframes whatsappPulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.5);opacity:0} }
.back-to-top { position:fixed; bottom:30px; right:30px; width:50px; height:50px; background:linear-gradient(135deg,#2a5298,#1e3c72); border:none; border-radius:12px; color:white; font-size:20px; cursor:pointer; opacity:0; visibility:hidden; transform:translateY(20px); transition:all .4s; z-index:998; }
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { transform:translateY(-5px); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-premium { background:#0a0a0a; color:white; }
.footer-main { padding:80px 0 60px; background:linear-gradient(180deg,#111,#0a0a0a); }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:50px; }
.footer-col h4 { font-size:18px; font-weight:700; margin-bottom:25px; color:white; position:relative; padding-bottom:12px; }
.footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:3px; background:#d4a84b; border-radius:2px; }
.footer-logo { display:flex; align-items:center; gap:15px; margin-bottom:20px; }
.footer-logo-img { width:60px; height:60px; object-fit:contain; border-radius:10px; }
.footer-logo h3 { font-size:22px; font-weight:700; }
.footer-logo span { font-size:12px; color:#d4a84b; font-weight:600; letter-spacing:1px; }
.footer-desc { color:rgba(255,255,255,.7); font-size:14px; line-height:1.8; margin-bottom:25px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:12px; }
.footer-links a { color:rgba(255,255,255,.7); text-decoration:none; font-size:14px; display:flex; align-items:center; gap:10px; transition:all .3s; }
.footer-links a i { font-size:10px; color:#d4a84b; }
.footer-links a:hover { color:#d4a84b; padding-left:5px; }
.footer-contact-list { display:flex; flex-direction:column; gap:20px; margin-bottom:25px; }
.footer-contact-item { display:flex; gap:15px; }
.footer-contact-item i { width:40px; height:40px; background:rgba(255,255,255,.1); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#d4a84b; font-size:16px; flex-shrink:0; }
.footer-contact-item strong { display:block; font-size:14px; font-weight:600; margin-bottom:3px; }
.footer-contact-item p { color:rgba(255,255,255,.7); font-size:13px; margin:0; }
.footer-social { display:flex; gap:12px; }
.footer-social .social-btn { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:white; font-size:18px; transition:all .4s; }
.footer-social .social-btn.facebook { background:#1877f2; }
.footer-social .social-btn.whatsapp { background:#25d366; }
.footer-social .social-btn:hover { transform:translateY(-5px) scale(1.1); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:25px 0; background:#050505; }
.footer-bottom-content { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-legal p { font-size:13px; color:rgba(255,255,255,.6); margin:0; }
.footer-bottom-links { display:flex; gap:25px; }
.footer-bottom-links a { color:rgba(255,255,255,.6); text-decoration:none; font-size:13px; transition:color .3s; }
.footer-bottom-links a:hover { color:#d4a84b; }
.footer-developer { margin-top:25px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); text-align:center; }
.footer-developer p { font-size:13px; color:rgba(255,255,255,.6); margin:0; }
.developer-link { color:#25D366; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:all .3s; }

/* =====================================================
   PAGES CYCLES — HERO
   ===================================================== */
.cycle-hero { position:relative; min-height:85vh; height:85vh; background-size:cover; background-position:center; display:flex; align-items:flex-end; padding-bottom:60px; }
.cycle-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,25,47,.88),rgba(30,60,114,.75),rgba(42,82,152,.5)); }
.cycle-hero .container { position:relative; z-index:2; }
.cycle-hero-content { max-width:700px; }
.cycle-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(212,168,75,.2); border:1px solid rgba(212,168,75,.5); color:#d4a84b; padding:8px 20px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:16px; }
.cycle-hero-content h1 { font-size:46px; font-weight:900; color:white; font-family:'Montserrat',sans-serif; line-height:1.1; margin-bottom:14px; }
.cycle-hero-content h1 .gold { color:#d4a84b; }
.cycle-hero-content p { color:rgba(255,255,255,.85); font-size:16px; margin-bottom:24px; }
.cycle-stats { display:flex; gap:20px; flex-wrap:wrap; }
.cstat { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:14px; padding:14px 22px; text-align:center; min-width:80px; }
.cstat span { display:block; font-size:24px; font-weight:900; color:#d4a84b; font-family:'Montserrat',sans-serif; line-height:1; }
.cstat small { color:rgba(255,255,255,.75); font-size:12px; font-weight:500; }
.cycle-breadcrumb { background:white; border-bottom:2px solid #f1f5f9; padding:14px 0; }
.cycle-breadcrumb .container { display:flex; align-items:center; gap:10px; font-size:14px; }
.cycle-breadcrumb a { color:#1e3c72; text-decoration:none; font-weight:600; display:flex; align-items:center; gap:6px; }
.cycle-breadcrumb a:hover { color:#d4a84b; }
.cycle-breadcrumb i.fa-chevron-right { font-size:11px; color:#94a3b8; }
.cycle-breadcrumb span { color:#64748b; }
.cycle-intro { padding:80px 0; background:white; }
.cycle-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.cycle-intro-text { display:flex; flex-direction:column; gap:20px; }
.cycle-intro-text h2 { font-size:34px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1.2; }
.cycle-intro-text p { color:#475569; font-size:15px; line-height:1.8; }
.cycle-features { display:flex; flex-direction:column; gap:16px; margin-top:10px; }
.cfeat { display:flex; gap:16px; align-items:flex-start; }
.cfeat-icon { width:48px; height:48px; border-radius:14px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.cfeat h4 { font-size:15px; font-weight:700; color:#1e3c72; margin-bottom:4px; }
.cfeat p { font-size:13px; color:#64748b; margin:0; }
.cycle-intro-img { position:relative; border-radius:20px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.15); }
.cycle-intro-img img { width:100%; height:400px; object-fit:cover; display:block; }
.cycle-img-badge { position:absolute; bottom:20px; right:20px; background:#d4a84b; color:#1e3c72; padding:14px 20px; border-radius:16px; text-align:center; box-shadow:0 8px 20px rgba(212,168,75,.4); }
.cycle-img-badge span { display:block; font-size:28px; font-weight:900; font-family:'Montserrat',sans-serif; line-height:1; }
.cycle-img-badge small { font-size:12px; font-weight:600; }
.cycle-niveaux { padding:80px 0; background:#f8fafc; }
.niveaux-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.niveaux-4 { grid-template-columns:repeat(4,1fr); }
.niveau-card { background:white; border-radius:20px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.07); transition:all .4s; display:flex; flex-direction:column; }
.niveau-card:hover { transform:translateY(-8px); box-shadow:0 20px 45px rgba(0,0,0,.15); }
.niveau-top { padding:30px 20px; display:flex; flex-direction:column; align-items:center; gap:12px; color:white; }
.niveau-top i { font-size:32px; }
.niveau-age { background:rgba(255,255,255,.2); padding:5px 14px; border-radius:20px; font-size:13px; font-weight:700; }
.niveau-label { display:inline-block; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; font-size:13px; font-weight:800; padding:4px 14px; border-radius:20px; margin-bottom:8px; letter-spacing:.5px; }
.niveau-body { padding:22px; display:block; }
.niveau-body h3 { font-size:16px; font-weight:700; color:#1e3c72; margin-bottom:8px; }
.niveau-body p { font-size:13px; color:#64748b; margin-bottom:15px; }
.niveau-body ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.niveau-body li { font-size:13px; color:#475569; display:flex; align-items:center; gap:8px; }
.niveau-body li i { color:#10b981; font-size:12px; flex-shrink:0; }
.cycle-activites { padding:80px 0; background:white; }
.activites-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.activite-card { background:#f8fafc; border-radius:16px; padding:30px 24px; text-align:center; border:1px solid #e2e8f0; transition:all .3s; display:flex; flex-direction:column; align-items:center; }
.activite-card:hover { background:linear-gradient(135deg,#1e3c72,#2a5298); border-color:transparent; transform:translateY(-5px); }
.activite-card:hover h4, .activite-card:hover p { color:white; }
.activite-icon { width:60px; height:60px; border-radius:18px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 16px; transition:all .3s; }
.activite-card:hover .activite-icon { background:rgba(255,255,255,.2); transform:scale(1.1); }
.activite-card h4 { font-size:16px; font-weight:700; color:#1e3c72; margin-bottom:8px; transition:color .3s; }
.activite-card p { font-size:13px; color:#64748b; transition:color .3s; }
.cycle-galerie { padding:80px 0; background:#f8fafc; }
.cycle-programme { padding:80px 0; background:white; }
.matieres-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.matiere-card { display:flex; gap:16px; align-items:flex-start; background:#f8fafc; border-radius:16px; padding:20px; border:1px solid #e2e8f0; transition:all .3s; }
.matiere-card:hover { border-color:#1e3c72; transform:translateY(-3px); box-shadow:0 10px 30px rgba(30,60,114,.1); }
.matiere-icon { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.matiere-card h4 { font-size:15px; font-weight:700; color:#1e3c72; margin-bottom:4px; }
.matiere-card p { font-size:13px; color:#64748b; }
.cycle-examen { padding:80px 0; background:linear-gradient(135deg,#1e3c72,#2a5298); }
.examen-wrap { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.examen-info h2 { font-size:32px; font-weight:800; color:white; font-family:'Montserrat',sans-serif; margin-bottom:15px; }
.examen-info p { color:rgba(255,255,255,.8); font-size:15px; line-height:1.8; margin-bottom:20px; }
.examen-stats { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.examen-stat { background:rgba(255,255,255,.1); border-radius:16px; padding:20px; text-align:center; border:1px solid rgba(255,255,255,.15); }
.examen-stat span { display:block; font-size:36px; font-weight:900; color:#d4a84b; font-family:'Montserrat',sans-serif; line-height:1; }
.examen-stat small { color:rgba(255,255,255,.7); font-size:12px; }
.examen-cta { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:24px; padding:35px; text-align:center; }
.examen-cta h3 { color:white; font-size:22px; font-weight:700; margin-bottom:10px; }
.examen-cta p { color:rgba(255,255,255,.7); margin-bottom:20px; font-size:14px; }

/* =====================================================
   NIVEAUX GROUPÉS — PAGE ÉLÉMENTAIRE
   ===================================================== */
.niveaux-groupes { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.niveau-groupe { background:white; border-radius:20px; overflow:hidden; box-shadow:0 8px 30px rgba(30,60,114,.1); transition:transform .35s ease,box-shadow .35s ease; }
.niveau-groupe:hover { transform:translateY(-8px); box-shadow:0 20px 50px rgba(30,60,114,.2); }
.niveau-groupe-header { padding:30px 25px; display:flex; flex-direction:column; align-items:center; gap:12px; color:white; text-align:center; }
.niveau-groupe-header i { font-size:36px; opacity:.9; }
.niveau-groupe-header h3 { font-size:18px; font-weight:800; color:white; font-family:'Montserrat',sans-serif; line-height:1.3; margin:0; }
.ng-age { background:rgba(255,255,255,.25); padding:5px 16px; border-radius:20px; font-size:13px; font-weight:700; }
.niveau-groupe-body { padding:25px; }
.ng-desc { font-size:14px; color:#64748b; margin-bottom:18px; font-style:italic; }
.niveau-groupe-body ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.niveau-groupe-body li { font-size:14px; color:#475569; display:flex; align-items:center; gap:10px; }
.niveau-groupe-body li i { color:#10b981; font-size:14px; flex-shrink:0; }
.ng-badges { display:flex; gap:8px; flex-wrap:wrap; }
.ng-badge { background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; padding:5px 16px; border-radius:20px; font-size:12px; font-weight:800; letter-spacing:.5px; }

/* =====================================================
   PAGE COMMUNAUTÉ
   ===================================================== */
.comm-hero { position:relative; height:380px; background:linear-gradient(135deg,#0f1e3c,#1e3c72,#2a5298); display:flex; align-items:center; overflow:hidden; margin-top:90px; }
.comm-hero::before { content:''; position:absolute; top:-50%; right:-10%; width:500px; height:500px; background:radial-gradient(circle,rgba(212,168,75,.15),transparent 60%); border-radius:50%; }
.comm-hero-content { position:relative; z-index:2; text-align:center; width:100%; }
.comm-hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(212,168,75,.2); border:1px solid rgba(212,168,75,.4); color:#d4a84b; padding:8px 20px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:20px; }
.comm-hero-content h1 { font-size:52px; font-weight:900; color:white; font-family:'Montserrat',sans-serif; margin-bottom:15px; line-height:1.1; }
.comm-gold { color:#d4a84b; }
.comm-hero-content p { font-size:17px; color:rgba(255,255,255,.8); }
.comm-section-header { text-align:center; margin-bottom:55px; }
.comm-section-header h2 { font-size:36px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; margin:15px 0 10px; }
.comm-section-header p { font-size:16px; color:#64748b; }
.comm-equipes { padding:90px 0; background:#f8fafc; }
.comm-team-block { margin-bottom:60px; background:white; border-radius:20px; padding:35px; box-shadow:0 4px 20px rgba(0,0,0,.06); border:1px solid rgba(0,0,0,.04); }
.comm-team-titre { display:flex; align-items:center; gap:15px; margin-bottom:30px; }
.comm-team-icon { width:50px; height:50px; border-radius:14px; background:linear-gradient(135deg,rgba(30,60,114,.12),rgba(42,82,152,.08)); color:#1e3c72; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.comm-team-titre h3 { font-size:20px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; margin:0; }
.comm-team-titre p { font-size:13px; color:#64748b; margin:3px 0 0; }
.comm-team-line { flex:1; height:2px; background:linear-gradient(90deg,#d4a84b,transparent); border-radius:2px; }
.comm-team-count { background:#1e3c72; color:white; padding:5px 14px; border-radius:20px; font-size:12px; font-weight:700; white-space:nowrap; }
.comm-members-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.comm-member-card { background:#f8fafc; border-radius:16px; overflow:hidden; border:1px solid #e2e8f0; transition:all .35s ease; }
.comm-member-card:hover { transform:translateY(-6px); box-shadow:0 15px 35px rgba(30,60,114,.15); border-color:transparent; }
.comm-member-photo { width:100%; height:200px; overflow:hidden; background:linear-gradient(135deg,#1e3c72,#2a5298); }
.comm-member-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; transition:transform .5s ease; }
.comm-member-card:hover .comm-member-photo img { transform:scale(1.05); }
.comm-member-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.4); font-size:50px; }
.comm-member-info { padding:16px; display:flex; flex-direction:column; gap:5px; }
.comm-member-info h4 { font-size:15px; font-weight:700; color:#1e3c72; margin:0; font-family:'Montserrat',sans-serif; }
.comm-member-pos { font-size:12px; color:#64748b; font-weight:500; }
.comm-member-contact { font-size:12px; color:#2a5298; text-decoration:none; display:flex; align-items:center; gap:5px; transition:color .3s; }
.comm-member-contact:hover { color:#1e3c72; }
.comm-member-contact i { font-size:11px; }
.comm-empty { text-align:center; padding:40px; color:#94a3b8; }
.comm-empty i { font-size:40px; margin-bottom:10px; display:block; }
.comm-empty p { font-size:14px; }
.comm-default-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:20px; }
.comm-default-card { background:white; border-radius:16px; padding:25px 15px; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,.06); border:1px solid #e2e8f0; transition:all .35s ease; }
.comm-default-card:hover { transform:translateY(-6px); box-shadow:0 15px 35px rgba(0,0,0,.12); }
.comm-default-icon { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:24px; margin:0 auto 12px; }
.comm-default-card span { font-size:13px; font-weight:700; color:#1e3c72; text-transform:uppercase; letter-spacing:.5px; }
.comm-laureats { padding:90px 0; background:white; }
.comm-laureat-block { margin-bottom:60px; }
.comm-laureats-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.comm-laureat-card { background:white; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(30,60,114,.1); border:1px solid rgba(0,0,0,.04); transition:all .35s ease; }
.comm-laureat-card:hover { transform:translateY(-6px); box-shadow:0 15px 35px rgba(30,60,114,.2); }
.comm-laureat-photo { position:relative; width:100%; height:180px; overflow:hidden; background:linear-gradient(135deg,#1e3c72,#2a5298); }
.comm-laureat-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; transition:transform .5s ease; }
.comm-laureat-card:hover .comm-laureat-photo img { transform:scale(1.05); }
.comm-laureat-exam { position:absolute; top:10px; right:10px; background:#1e3c72; color:#d4a84b; font-size:9px; font-weight:800; padding:3px 10px; border-radius:20px; border:1px solid rgba(212,168,75,.4); }
.comm-mention { display:inline-flex; background:linear-gradient(135deg,#10b981,#059669); color:white; padding:3px 12px; border-radius:20px; font-size:11px; font-weight:600; width:fit-content; }
.comm-moy { font-size:13px; color:#d4a84b; font-weight:700; display:flex; align-items:center; gap:4px; }
.comm-year { font-size:11px; color:#94a3b8; display:flex; align-items:center; gap:4px; }
.comm-cta { padding:80px 0; background:linear-gradient(135deg,#f8fafc,#ffffff); }
.comm-cta-box { background:linear-gradient(135deg,#1e3c72,#2a5298); border-radius:24px; padding:50px 60px; display:flex; align-items:center; justify-content:space-between; gap:40px; position:relative; overflow:hidden; }
.comm-cta-box::before { content:''; position:absolute; top:-50%; right:-5%; width:300px; height:300px; background:rgba(212,168,75,.1); border-radius:50%; }
.comm-cta-text { position:relative; z-index:1; }
.comm-cta-text h2 { font-size:28px; font-weight:800; color:white; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.comm-cta-text h2 i { color:#d4a84b; }
.comm-cta-text p { color:rgba(255,255,255,.8); font-size:15px; margin:0; }
.comm-cta-btns { display:flex; gap:15px; position:relative; z-index:1; flex-shrink:0; }
.comm-btn-primary { display:inline-flex; align-items:center; gap:10px; background:#d4a84b; color:#1e3c72; padding:15px 28px; border-radius:12px; font-weight:700; font-size:15px; text-decoration:none; transition:all .3s ease; box-shadow:0 8px 20px rgba(212,168,75,.3); }
.comm-btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(212,168,75,.5); }
.comm-btn-secondary { display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.15); color:white; border:2px solid rgba(255,255,255,.3); padding:15px 28px; border-radius:12px; font-weight:700; font-size:15px; text-decoration:none; transition:all .3s ease; }
.comm-btn-secondary:hover { background:rgba(255,255,255,.25); transform:translateY(-3px); }

/* =====================================================
   MOBILE MENU
   ===================================================== */
@media (max-width:900px) {
  .menu-toggle { display:flex; }
  .cta-button { display:none; }
  .nav-close-item { display:flex !important; justify-content:flex-end !important; }
  .nav-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(255,255,255,.98); flex-direction:column; padding:20px 30px 30px; gap:8px; z-index:9998; overflow-y:auto; }
  .nav-menu.active { display:flex; animation:slideInMenu .3s ease; }
  @keyframes slideInMenu { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  .nav-menu li { width:100%; border-bottom:1px solid rgba(30,60,114,.1); }
  .nav-menu a { display:flex; align-items:center; padding:18px 20px; font-size:17px; font-weight:600; border-radius:12px; width:100%; color:#1e3c72; }
  .nav-menu a:hover { background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; }
  .dropdown-menu { position:static !important; transform:none !important; box-shadow:none !important; border:none !important; padding:0 0 0 30px !important; opacity:0 !important; visibility:hidden !important; max-height:0 !important; overflow:hidden !important; border-radius:0 !important; min-width:auto !important; transition:all .3s ease !important; }
  .dropdown-menu.open { opacity:1 !important; visibility:visible !important; max-height:300px !important; }
  .dropdown-menu::before { display:none; }
}

/* =====================================================
   RESPONSIVE TABLET
   ===================================================== */
@media (max-width:1200px) {
  .comm-members-grid { grid-template-columns:repeat(3,1fr); }
  .comm-laureats-grid { grid-template-columns:repeat(4,1fr); }
  .comm-default-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:1024px) {
  .resultats-layout { grid-template-columns:1fr; gap:40px; }
  .resultats-section .laureats-header { text-align:center; }
  .resultats-section .section-badge { margin:0 auto 18px; }
  .year-tabs { justify-content:center; }
  .historique-grid { grid-template-columns:1fr; }
  .directrice-wrap { grid-template-columns:1fr; gap:50px; }
  .dir-photo { max-width:320px; margin:0 auto; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .niveaux-grid { grid-template-columns:repeat(2,1fr); }
  .niveaux-4 { grid-template-columns:repeat(2,1fr); }
  .cycle-intro-grid { grid-template-columns:1fr; }
  .examen-wrap { grid-template-columns:1fr; }
  .matieres-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .niveaux-groupes { grid-template-columns:1fr; gap:20px; }
  .comm-members-grid { grid-template-columns:repeat(2,1fr); }
  .comm-laureats-grid { grid-template-columns:repeat(3,1fr); }
  .comm-cta-box { flex-direction:column; text-align:center; padding:40px; }
  .comm-cta-btns { justify-content:center; }
  .comm-cta-text h2 { justify-content:center; }
}

/* =====================================================
   RESPONSIVE MOBILE
   ===================================================== */
@media (max-width:768px) {
  .top-bar-ultra { display:none !important; }
  .header { top:0 !important; }
  .logo-img { width:38px !important; height:38px !important; }
  .logo-text h1 { font-size:14px !important; }
  section { padding:50px 0 !important; }
  .container { padding:0 14px !important; }

  /* Hero accueil */
  .hero-section { min-height:auto !important; overflow-x:hidden !important; }
  .hero-content { padding:70px 14px 60px !important; overflow-x:hidden !important; }
  .hero-slide.active { display:flex !important; flex-direction:column !important; gap:20px !important; text-align:center !important; width:100% !important; max-width:100% !important; }
  .hero-left { align-items:center !important; width:100% !important; }
  .hero-title { font-size:28px !important; line-height:1.2 !important; }
  .hero-tagline { font-size:14px !important; letter-spacing:1px !important; }
  .hero-btns { justify-content:center !important; flex-wrap:wrap !important; gap:8px !important; }
  .hbtn { font-size:12px !important; padding:10px 16px !important; }
  .hero-right { display:flex !important; justify-content:center !important; width:100% !important; }
  .merites-duo { gap:12px !important; justify-content:center !important; flex-wrap:nowrap !important; }
  .merite-card { width:140px !important; border-radius:14px !important; }
  .merite-card img, .merite-ph { height:150px !important; }
  .merite-lbl { font-size:10px !important; padding:5px 10px !important; margin-top:10px !important; }
  .merite-card strong { font-size:13px !important; padding:6px 10px 12px !important; }
  .hero-nav { bottom:15px !important; }
  .hero-dots { gap:6px !important; }
  .hero-dot { padding:6px 12px !important; font-size:11px !important; }
  .hero-progress-wrap { width:150px !important; }

  /* Hero cycles */
  .cycle-hero { min-height:60vh !important; height:60vh !important; padding-bottom:30px !important; }
  .cycle-hero-content h1 { font-size:28px !important; }
  .cycle-stats { gap:10px !important; }
  .cstat { padding:10px 14px !important; min-width:60px !important; }
  .cstat span { font-size:18px !important; }

  /* Cycles sections */
  .niveaux-grid { grid-template-columns:1fr !important; }
  .niveaux-4 { grid-template-columns:1fr !important; }
  .niveaux-groupes { grid-template-columns:1fr !important; }
  .activites-grid { grid-template-columns:1fr !important; }
  .matieres-grid { grid-template-columns:1fr !important; }
  .examen-stats { grid-template-columns:1fr 1fr !important; }
  .cycle-intro-grid { grid-template-columns:1fr !important; }
  .cycle-intro-img { display:block !important; }
  .cycle-intro-img img { height:250px !important; }

  /* Résultats */
  .resultats-section { padding:50px 0 !important; }
  .resultats-layout { grid-template-columns:1fr !important; gap:30px !important; }
  .resultats-section .laureats-header { text-align:center !important; }
  .resultats-section .laureats-header h2 { font-size:26px !important; }
  .resultats-section .section-badge { margin:0 auto 18px !important; }
  .year-tabs { justify-content:center !important; }
  .stats-grid { grid-template-columns:1fr !important; gap:14px !important; }
  .stat-val { font-size:40px !important; }
  .stat-val span { font-size:20px !important; }
  .resultats-quote { padding:18px !important; }

  /* Historique */
  .hist-docs { grid-template-columns:1fr !important; }
  .evo-grid { grid-template-columns:1fr !important; }
  .directrice-wrap { grid-template-columns:1fr !important; }
  .dir-photo { max-width:280px !important; margin:0 auto !important; padding-bottom:30px !important; }

  /* Valeurs */
  .valeurs-grid { grid-template-columns:1fr !important; }

  /* Galerie */
  .galerie-grid { grid-template-columns:repeat(2,1fr) !important; gap:8px !important; }

  /* Contact */
  .contact-map { height:220px !important; }
  .contact-grid { grid-template-columns:1fr !important; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr !important; gap:25px !important; text-align:center !important; }
  .footer-col h4::after { left:50% !important; transform:translateX(-50%) !important; }
  .footer-links a { justify-content:center !important; }
  .footer-social { justify-content:center !important; }
  .footer-contact-item { justify-content:center !important; }
  .footer-logo { justify-content:center !important; }
  .footer-bottom-content { flex-direction:column !important; text-align:center !important; gap:10px !important; }
  .footer-bottom-links { justify-content:center !important; flex-wrap:wrap !important; }

  /* Boutons flottants */
  .whatsapp-float { right:12px !important; bottom:70px !important; width:46px !important; height:46px !important; font-size:20px !important; }
  .back-to-top { right:12px !important; bottom:15px !important; width:38px !important; height:38px !important; }

  /* Communauté */
  .comm-hero { height:280px; }
  .comm-hero-content h1 { font-size:34px; }
  .comm-members-grid { grid-template-columns:repeat(2,1fr) !important; gap:15px !important; }
  .comm-laureats-grid { grid-template-columns:repeat(2,1fr) !important; gap:15px !important; }
  .comm-default-grid { grid-template-columns:repeat(3,1fr) !important; }
  .comm-team-block { padding:25px 20px !important; }
  .comm-cta-btns { flex-direction:column; width:100%; }
  .comm-btn-primary, .comm-btn-secondary { justify-content:center; }

  /* Inscription */
  .inscr-form-wrap { padding:24px 18px; }
  .inscr-grid { grid-template-columns:1fr; }
  .inscr-steps-bar { gap:0; }
  .inscr-step-line { min-width:20px; }
  .inscr-step-item span { font-size:10px; }
  .inscr-step-num { width:36px; height:36px; font-size:11px; }
}

@media (max-width:480px) {
  .hero-title { font-size:24px !important; }
  .merite-card { width:130px !important; }
  .merite-card img, .merite-ph { height:130px !important; }
  .l-slide-photo { height:180px !important; }
  .comm-hero-content h1 { font-size:28px; }
  .comm-members-grid { grid-template-columns:1fr 1fr !important; }
  .comm-laureats-grid { grid-template-columns:1fr 1fr !important; }
  .comm-default-grid { grid-template-columns:repeat(2,1fr) !important; }
  .stats-grid { grid-template-columns:1fr !important; }
  .laureats-header h2 { font-size:28px !important; }
  .niveaux-groupes { grid-template-columns:1fr !important; }
  .niveau-groupe-header { padding:22px 20px; }
  .niveau-groupe-header h3 { font-size:16px; }
  .niveau-groupe-body { padding:20px; }
}

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html { scroll-behavior:auto; }
}

/* =====================================================
   LAURÉATS — PHASE 1 MINIATURES
   ===================================================== */
.l-mini-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.l-mini-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,60,114,.1);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.l-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30,60,114,.2);
}

.l-mini-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.l-mini-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.l-mini-ph {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 40px;
}

.l-mini-moy {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(212,168,75,.95);
    color: #1e3c72;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.l-mini-info {
    padding: 10px 12px 12px;
    border-top: 2px solid #f1f5f9;
}

.l-mini-name {
    font-size: 12px;
    font-weight: 700;
    color: #1e3c72;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.l-mini-classe {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================================
   LAURÉATS — PHASE 2 SLIDER GROUPE DE 4
   ===================================================== */
.l-show {
    position: relative;
    overflow: hidden;
    padding: 10px 0 50px;
}

.l-slider-track {
    display: flex;
    transition: transform .8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.l-group-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 0 0 100%;
    width: 100%;
}

.l-group-slide .l-slide {
    flex: none;
    width: 100%;
}

/* Mobile miniatures */
@media (max-width: 768px) {
    .l-mini-grid { gap: 10px !important; }
    .l-mini-name { font-size: 11px; }
    .l-group-slide { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
}

@media (max-width: 480px) {
    .l-group-slide { grid-template-columns: repeat(2, 1fr) !important; }
}
/* =====================================================
   PAGE COMMUNAUTÉ — REFONTE
   ===================================================== */

/* Hero */
.comm-hero { position:relative; min-height:85vh; display:flex; align-items:center; overflow:hidden; }
.comm-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; }
.comm-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,25,47,.88),rgba(30,60,114,.75),rgba(42,82,152,.5)); z-index:1; }
.comm-hero .container { position:relative; z-index:2; }
.comm-hero-content { max-width:700px; }
.comm-hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(212,168,75,.2); border:1px solid rgba(212,168,75,.4); color:#d4a84b; padding:8px 20px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:20px; }
.comm-hero-content h1 { font-size:58px; font-weight:900; color:white; font-family:'Montserrat',sans-serif; line-height:1.1; margin-bottom:16px; }
.comm-gold { color:#d4a84b; }
.comm-hero-content p { font-size:18px; color:rgba(255,255,255,.8); margin-bottom:30px; }
.comm-hero-btns { display:flex; gap:15px; flex-wrap:wrap; }
.comm-hero-btn { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.25); color:white; padding:13px 24px; border-radius:50px; font-size:14px; font-weight:600; text-decoration:none; transition:all .3s; }
.comm-hero-btn:hover { background:rgba(255,255,255,.2); }
.comm-hero-btn-gold { background:linear-gradient(135deg,#d4a84b,#e8c779); border-color:transparent; color:#1e3c72; }
.comm-hero-btn-gold:hover { box-shadow:0 10px 30px rgba(212,168,75,.4); }

/* Section header */
.comm-section-header { text-align:center; margin-bottom:55px; }
.comm-section-header h2 { font-size:38px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; margin:15px 0 10px; }
.comm-section-header p { font-size:16px; color:#64748b; }

/* Histoire */
.comm-histoire { padding:90px 0; background:white; }
.comm-histoire-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; margin-bottom:60px; }
.comm-hist-block { display:flex; gap:18px; align-items:flex-start; margin-bottom:30px; }
.comm-hist-icon { width:50px; height:50px; border-radius:14px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.comm-hist-block h3 { font-size:18px; font-weight:700; color:#1e3c72; margin-bottom:6px; }
.comm-hist-block p { font-size:14px; color:#64748b; line-height:1.7; }
.comm-fond-card { background:#f8fafc; border-radius:20px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.06); }
.comm-fond-card img { width:100%; height:320px; object-fit:cover; object-position:top; display:block; }
.comm-fond-ph { width:100%; height:320px; background:linear-gradient(135deg,#1e3c72,#2a5298); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.3); font-size:80px; }
.comm-fond-info { padding:25px; }
.comm-fond-badge { display:inline-flex; align-items:center; gap:6px; background:#d4a84b; color:#1e3c72; padding:4px 14px; border-radius:20px; font-size:12px; font-weight:700; margin-bottom:10px; }
.comm-fond-info h3 { font-size:20px; font-weight:700; color:#1e3c72; margin-bottom:4px; }
.comm-fond-role { font-size:13px; color:#64748b; margin-bottom:12px; }
.comm-fond-info blockquote { font-size:14px; color:#475569; line-height:1.7; font-style:italic; border-left:3px solid #d4a84b; padding-left:15px; margin:0; }

/* Timeline */
.comm-timeline { display:flex; justify-content:space-between; position:relative; padding:30px 0; }
.comm-timeline::before { content:''; position:absolute; top:44px; left:5%; right:5%; height:2px; background:linear-gradient(90deg,#1e3c72,#d4a84b); z-index:0; }
.comm-tl-item { display:flex; flex-direction:column; align-items:center; gap:12px; position:relative; z-index:1; flex:1; }
.comm-tl-dot { width:20px; height:20px; border-radius:50%; border:3px solid white; box-shadow:0 0 0 3px #1e3c72; flex-shrink:0; }
.comm-tl-content { text-align:center; }
.comm-tl-year { display:inline-block; color:white; padding:4px 12px; border-radius:20px; font-size:12px; font-weight:800; margin-bottom:6px; }
.comm-tl-content h4 { font-size:14px; font-weight:700; color:#1e3c72; margin-bottom:4px; }
.comm-tl-content p { font-size:12px; color:#64748b; }

/* Personnel */
.comm-personnel { padding:90px 0; background:#f8fafc; }
.comm-equipe-wrap { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:60px; }
.comm-equipe-photo { position:relative; border-radius:20px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.15); }
.comm-equipe-photo img { width:100%; height:400px; object-fit:cover; display:block; }
.comm-equipe-ph { width:100%; height:400px; background:linear-gradient(135deg,#1e3c72,#2a5298); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.3); font-size:80px; }
.comm-equipe-badge { position:absolute; bottom:20px; left:20px; background:#d4a84b; color:#1e3c72; padding:12px 20px; border-radius:14px; text-align:center; box-shadow:0 8px 20px rgba(212,168,75,.4); }
.comm-equipe-badge strong { display:block; font-size:28px; font-weight:900; font-family:'Montserrat',sans-serif; line-height:1; }
.comm-equipe-badge span { font-size:12px; font-weight:600; }
.comm-equipe-text h3 { font-size:26px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; margin-bottom:16px; }
.comm-equipe-text p { font-size:15px; color:#475569; line-height:1.8; margin-bottom:14px; }
.comm-equipe-stats { display:flex; gap:20px; margin-top:24px; }
.comm-eq-stat { text-align:center; background:white; border-radius:14px; padding:16px 22px; box-shadow:0 4px 15px rgba(0,0,0,.06); }
.comm-eq-stat span { display:block; font-size:28px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1; }
.comm-eq-stat small { font-size:12px; color:#64748b; font-weight:600; }
.comm-teams-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.comm-team-card { background:white; border-radius:16px; overflow:hidden; box-shadow:0 4px 15px rgba(0,0,0,.06); border:1px solid #e2e8f0; transition:all .3s; }
.comm-team-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(30,60,114,.12); }
.comm-team-card-header { background:linear-gradient(135deg,#1e3c72,#2a5298); padding:20px; text-align:center; color:white; }
.comm-team-card-header i { font-size:28px; color:#d4a84b; margin-bottom:8px; display:block; }
.comm-team-card-header h4 { font-size:15px; font-weight:700; color:white; margin-bottom:4px; }
.comm-team-card-header p { font-size:12px; color:rgba(255,255,255,.7); margin:0; }
.comm-team-card-body { padding:16px; }
.comm-team-nb { font-size:12px; font-weight:600; color:#64748b; display:block; margin-bottom:10px; }
.comm-team-avatars { display:flex; gap:6px; flex-wrap:wrap; }
.comm-team-avatars img { width:36px; height:36px; border-radius:50%; object-fit:cover; object-position:top; border:2px solid white; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.comm-avatar-ph { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#e2e8f0,#cbd5e1); display:flex; align-items:center; justify-content:center; color:#94a3b8; font-size:14px; }
.comm-avatar-more { width:36px; height:36px; border-radius:50%; background:#1e3c72; color:white; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; }

/* Annonces */
.comm-annonces { padding:90px 0; background:white; }
.comm-annonces-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.comm-annonce-card { background:#f8fafc; border-radius:20px; padding:30px; border:1px solid #e2e8f0; transition:all .3s; display:flex; flex-direction:column; gap:16px; }
.comm-annonce-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(0,0,0,.1); }
.comm-annonce-active { background:linear-gradient(135deg,rgba(30,60,114,.05),rgba(212,168,75,.05)); border-color:rgba(212,168,75,.4); }
.comm-annonce-icon { width:54px; height:54px; border-radius:16px; background:rgba(30,60,114,.1); color:#1e3c72; display:flex; align-items:center; justify-content:center; font-size:22px; }
.comm-annonce-tag { display:inline-block; background:rgba(30,60,114,.1); color:#1e3c72; padding:3px 12px; border-radius:20px; font-size:11px; font-weight:700; margin-bottom:6px; }
.comm-annonce-content h4 { font-size:16px; font-weight:700; color:#1e3c72; margin-bottom:8px; }
.comm-annonce-content p { font-size:14px; color:#64748b; line-height:1.6; margin-bottom:14px; }
.comm-annonce-btn { display:inline-flex; align-items:center; gap:8px; background:#1e3c72; color:white; padding:10px 18px; border-radius:10px; font-size:13px; font-weight:600; text-decoration:none; transition:all .3s; }
.comm-annonce-btn:hover { transform:translateX(3px); }

/* Grande Galerie */
.comm-galerie { padding:90px 0; background:#f8fafc; }
.comm-galerie-grid { columns:4; column-gap:14px; }
.comm-galerie-item { break-inside:avoid; margin-bottom:14px; position:relative; border-radius:14px; overflow:hidden; cursor:pointer; background:#e2e8f0; }
.comm-galerie-item img { width:100%; height:auto; display:block; transition:transform .5s ease; }
.comm-galerie-item:hover img { transform:scale(1.05); }
.comm-galerie-empty { text-align:center; padding:60px 20px; }

/* Responsive */
@media (max-width:1024px) {
    .comm-histoire-grid { grid-template-columns:1fr; }
    .comm-equipe-wrap { grid-template-columns:1fr; }
    .comm-teams-grid { grid-template-columns:repeat(2,1fr); }
    .comm-annonces-grid { grid-template-columns:1fr; gap:15px; }
    .comm-galerie-grid { columns:3; }
    .comm-timeline { flex-wrap:wrap; gap:20px; }
    .comm-timeline::before { display:none; }
}
@media (max-width:768px) {
    .comm-hero-content h1 { font-size:36px; }
    .comm-hero-btns { flex-direction:column; gap:10px; }
    .comm-teams-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
    .comm-galerie-grid { columns:2; }
    .comm-equipe-stats { gap:10px; }
    .comm-eq-stat { padding:12px 16px; }
    .comm-eq-stat span { font-size:22px; }
}
@media (max-width:480px) {
    .comm-hero-content h1 { font-size:28px; }
    .comm-teams-grid { grid-template-columns:1fr 1fr; }
    .comm-galerie-grid { columns:2; }
    .comm-cta-box { flex-direction:column; padding:30px 20px; text-align:center; }
    .comm-cta-btns { flex-direction:column; width:100%; }
    .comm-btn-primary, .comm-btn-secondary { justify-content:center; }
}

/* =====================================================
   LAURÉATS — 1 IMAGE PAR SLIDE SUR MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .l-group-slide {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .l-group-slide .l-slide:not(:first-child) {
        display: none !important;
    }
    .l-slide {
        width: 100% !important;
    }
    .l-slide-photo {
        height: 260px !important;
    }
    .l-arrow-prev { left: 5px !important; }
    .l-arrow-next { right: 5px !important; }
}
@media (max-width: 480px) {
    .l-slide-photo { height: 220px !important; }
    .l-slide-info h3 { font-size: 17px !important; }
}

/* Hero communauté + cycles 92vh */
.comm-hero { min-height: 92vh !important; height: 92vh !important; }
.cycle-hero { min-height: 100vh !important; height: 100vh !important; }

/* Slider lauréats desktop vs mobile */
@media (max-width: 768px) { .l-show-desktop { display: none !important; } }
@media (min-width: 769px) { .l-show-mobile { display: none !important; } }

/* Mur communauté boutons */
.comm-mur-share { display:flex; align-items:center; gap:6px; background:none; border:none; font-size:13px; color:#64748b; cursor:pointer; padding:6px 10px; border-radius:8px; transition:all .3s; font-family:'Poppins',sans-serif; }
.comm-mur-share:hover { background:#dbeafe; color:#3b82f6; }
.comm-vie-btn { display:inline-flex; align-items:center; gap:8px; background:#1e3c72; color:white; padding:10px 18px; border-radius:10px; font-size:13px; font-weight:600; border:none; cursor:pointer; transition:all .3s; font-family:'Poppins',sans-serif; }
.comm-vie-btn:hover { background:#2a5298; transform:translateX(3px); }

/* ===== PAGE AVIS ===== */
.avis-hero { position:relative; min-height:40vh; background:linear-gradient(135deg,#1e3c72,#2a5298); display:flex; align-items:center; padding-top:120px; }
.avis-hero-overlay { position:absolute; inset:0; background:rgba(10,25,47,.3); }
.avis-hero-content { position:relative; z-index:1; text-align:center; width:100%; padding:60px 0; }
.avis-hero-content h1 { font-size:50px; font-weight:900; color:white; font-family:'Montserrat',sans-serif; margin:15px 0; }
.avis-hero-content p { font-size:17px; color:rgba(255,255,255,.8); }
.avis-stats-section { padding:60px 0; background:white; }
.avis-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; max-width:700px; margin:0 auto; }
.avis-stat-card { text-align:center; background:#f8fafc; border-radius:20px; padding:30px; border:1px solid #e2e8f0; }
.avis-stat-stars { display:flex; justify-content:center; gap:5px; margin-bottom:10px; }
.avis-stat-stars i, .avis-card-stars i { color:#e2e8f0; font-size:20px; }
.avis-stat-stars i.active, .avis-card-stars i.active { color:#f59e0b; }
.avis-stat-icon { font-size:36px; color:#1e3c72; margin-bottom:10px; }
.avis-stat-num { font-size:36px; font-weight:900; color:#1e3c72; font-family:'Montserrat',sans-serif; line-height:1; }
.avis-stat-label { font-size:13px; color:#64748b; font-weight:600; margin-top:6px; }
.avis-form-section { padding:80px 0; background:#f8fafc; }
.avis-form-wrap { background:white; border-radius:24px; padding:50px; max-width:700px; margin:0 auto; box-shadow:0 10px 40px rgba(30,60,114,.1); }
.avis-form-header { text-align:center; margin-bottom:35px; }
.avis-form-header h2 { font-size:28px; font-weight:800; color:#1e3c72; margin-bottom:8px; display:flex; align-items:center; justify-content:center; gap:10px; }
.avis-form-header p { color:#64748b; font-size:15px; }
.avis-alert-success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; border-radius:12px; padding:15px 20px; margin-bottom:25px; display:flex; align-items:center; gap:10px; font-weight:600; }
.avis-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.avis-field { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.avis-field label { font-size:14px; font-weight:600; color:#374151; }
.avis-field input, .avis-field textarea { padding:13px 16px; border:2px solid #e5e7eb; border-radius:12px; font-size:14px; font-family:'Poppins',sans-serif; transition:all .3s; }
.avis-field input:focus, .avis-field textarea:focus { border-color:#1e3c72; outline:none; box-shadow:0 0 0 4px rgba(30,60,114,.08); }
.avis-field textarea { resize:vertical; min-height:120px; }
.avis-error { color:#ef4444; font-size:12px; }
.avis-stars-input { display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:5px; }
.avis-stars-input input { display:none; }
.avis-stars-input label { font-size:32px; color:#e2e8f0; cursor:pointer; transition:color .2s; }
.avis-stars-input label:hover, .avis-stars-input label:hover ~ label, .avis-stars-input input:checked ~ label { color:#f59e0b; }
.avis-submit-btn { width:100%; padding:16px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; border:none; border-radius:14px; font-size:16px; font-weight:700; cursor:pointer; transition:all .3s; display:flex; align-items:center; justify-content:center; gap:10px; font-family:'Poppins',sans-serif; }
.avis-submit-btn:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(30,60,114,.3); }
.avis-liste-section { padding:80px 0; background:white; }
.avis-liste-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.avis-card { background:#f8fafc; border-radius:20px; padding:28px; border:1px solid #e2e8f0; transition:all .3s; }
.avis-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(30,60,114,.1); }
.avis-card-header { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.avis-avatar { width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; flex-shrink:0; }
.avis-card-header h4 { font-size:15px; font-weight:700; color:#1e3c72; margin:0; }
.avis-qualite { font-size:12px; color:#64748b; }
.avis-card-stars { display:flex; gap:3px; margin-left:auto; }
.avis-card-stars i { font-size:14px; }
.avis-commentaire { font-size:14px; color:#475569; line-height:1.7; font-style:italic; margin-bottom:12px; }
.avis-date { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:5px; }
@media (max-width:768px) {
    .avis-hero-content h1 { font-size:32px; }
    .avis-stats-grid { grid-template-columns:1fr; max-width:300px; }
    .avis-form-wrap { padding:25px; }
    .avis-form-grid { grid-template-columns:1fr; }
    .avis-liste-grid { grid-template-columns:1fr; }
}

/* Mur communauté */
.comm-mur { padding:90px 0; background:white; }
.comm-mur-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.comm-mur-card { background:#f8fafc; border-radius:20px; overflow:hidden; border:1px solid #e2e8f0; transition:all .3s; }
.comm-mur-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(30,60,114,.1); }
.comm-mur-img { width:100%; height:200px; overflow:hidden; }
.comm-mur-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.comm-mur-card:hover .comm-mur-img img { transform:scale(1.05); }
.comm-mur-body { padding:20px; }
.comm-mur-date { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.comm-mur-body h4 { font-size:16px; font-weight:700; color:#1e3c72; margin-bottom:8px; }
.comm-mur-body p { font-size:14px; color:#64748b; line-height:1.6; margin-bottom:14px; }
.comm-mur-actions { display:flex; gap:10px; }
.comm-mur-like { display:flex; align-items:center; gap:6px; background:none; border:none; font-size:13px; color:#64748b; cursor:pointer; padding:6px 10px; border-radius:8px; transition:all .3s; font-family:'Poppins',sans-serif; }
.comm-mur-like:hover { background:#fee2e2; color:#ef4444; }
.comm-mur-share { display:flex; align-items:center; gap:6px; background:none; border:none; font-size:13px; color:#64748b; cursor:pointer; padding:6px 10px; border-radius:8px; transition:all .3s; font-family:'Poppins',sans-serif; }
.comm-mur-share:hover { background:#dbeafe; color:#3b82f6; }

/* Vie de l'école */
.comm-vie { padding:90px 0; background:#f8fafc; }
.comm-vie-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.comm-vie-card { background:white; border-radius:20px; overflow:hidden; box-shadow:0 4px 15px rgba(0,0,0,.06); transition:all .3s; }
.comm-vie-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(30,60,114,.12); }
.comm-vie-img { position:relative; height:180px; overflow:hidden; }
.comm-vie-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.comm-vie-card:hover .comm-vie-img img { transform:scale(1.05); }
.comm-vie-badge { position:absolute; top:15px; right:15px; width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:white; font-size:18px; }
.comm-vie-body { padding:20px; }
.comm-vie-date { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.comm-vie-body h4 { font-size:16px; font-weight:700; color:#1e3c72; margin-bottom:8px; }
.comm-vie-body p { font-size:14px; color:#64748b; line-height:1.6; margin-bottom:14px; }
.comm-vie-btn { display:inline-flex; align-items:center; gap:8px; background:#1e3c72; color:white; padding:10px 18px; border-radius:10px; font-size:13px; font-weight:600; border:none; cursor:pointer; transition:all .3s; font-family:'Poppins',sans-serif; }
.comm-vie-btn:hover { background:#2a5298; transform:translateX(3px); }

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

/* ===== AVIS ===== */
.avis-hero { position:relative; min-height:50vh; background:linear-gradient(135deg,#1e3c72,#2a5298); display:flex; align-items:center; }
.avis-hero-overlay { position:absolute; inset:0; background:rgba(0,0,0,.3); }
.avis-hero-content { position:relative; z-index:2; text-align:center; color:white; }
.avis-hero-content h1 { font-size:48px; font-weight:900; font-family:'Montserrat',sans-serif; margin:15px 0 10px; }
.avis-hero-content .gold { color:#d4a84b; }
.avis-hero-content p { font-size:16px; color:rgba(255,255,255,.8); }
.avis-stats-section { padding:60px 0; background:#f8fafc; }
.avis-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.avis-stat-card { background:white; border-radius:16px; padding:25px; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,.06); }
.avis-stat-icon { width:54px; height:54px; border-radius:14px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 12px; }
.avis-stat-val { font-size:36px; font-weight:900; color:#1e3c72; font-family:'Montserrat',sans-serif; }
.avis-stat-lbl { font-size:13px; color:#64748b; font-weight:600; }
.avis-form-section { padding:70px 0; background:white; }
.avis-form-wrap { max-width:700px; margin:0 auto; background:#f8fafc; border-radius:20px; padding:40px; box-shadow:0 4px 20px rgba(0,0,0,.06); }
.avis-form-header { text-align:center; margin-bottom:30px; }
.avis-form-header h2 { font-size:26px; font-weight:800; color:#1e3c72; font-family:'Montserrat',sans-serif; }
.avis-form-header p { font-size:14px; color:#64748b; }
.avis-alert-success { background:#d1fae5; color:#065f46; padding:12px 20px; border-radius:10px; margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.avis-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:20px; }
.avis-field { display:flex; flex-direction:column; gap:6px; }
.avis-field-full { grid-column:1/-1; }
.avis-field label { font-size:13px; font-weight:600; color:#374151; }
.avis-field input, .avis-field select, .avis-field textarea { padding:12px 14px; border:2px solid #e2e8f0; border-radius:10px; font-size:14px; font-family:'Poppins',sans-serif; transition:border .3s; background:white; }
.avis-field input:focus, .avis-field select:focus, .avis-field textarea:focus { border-color:#1e3c72; outline:none; }
.avis-error { font-size:12px; color:#ef4444; }
.avis-stars-input { display:flex; gap:8px; align-items:center; }
.avis-star-btn { background:none; border:none; cursor:pointer; font-size:28px; padding:0; transition:transform .2s; }
.avis-star-btn:hover { transform:scale(1.2); }
.avis-submit-btn { display:flex; align-items:center; gap:10px; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; padding:14px 28px; border-radius:12px; font-size:15px; font-weight:600; border:none; cursor:pointer; transition:all .3s; font-family:'Poppins',sans-serif; }
.avis-submit-btn:hover { transform:translateY(-2px); box-shadow:0 10px 25px rgba(30,60,114,.3); }
.avis-liste-section { padding:70px 0; background:#f8fafc; }
.avis-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.avis-card { background:white; border-radius:16px; padding:25px; box-shadow:0 4px 15px rgba(0,0,0,.06); border:1px solid #e2e8f0; transition:all .3s; }
.avis-card:hover { transform:translateY(-5px); box-shadow:0 15px 35px rgba(30,60,114,.1); }
.avis-card-header { display:flex; align-items:center; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
.avis-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,#1e3c72,#2a5298); color:white; display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; flex-shrink:0; }
.avis-info h4 { font-size:15px; font-weight:700; color:#1e3c72; margin:0; }
.avis-qualite { font-size:12px; color:#64748b; background:#f1f5f9; padding:2px 10px; border-radius:20px; }
.avis-note { margin-left:auto; }
.avis-commentaire { font-size:14px; color:#475569; line-height:1.7; margin-bottom:12px; font-style:italic; }
.avis-date { font-size:12px; color:#94a3b8; display:flex; align-items:center; gap:6px; }
@media (max-width:1024px) { .avis-stats-grid { grid-template-columns:repeat(2,1fr); } .avis-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) { .avis-hero-content h1 { font-size:30px; } .avis-stats-grid { grid-template-columns:repeat(2,1fr); } .avis-grid { grid-template-columns:1fr; } .avis-form-grid { grid-template-columns:1fr; } }
