/*
Theme Name: JCI Ouidah La Couronne
Theme URI: https://jci-ouidah-la-couronne.org
Description: Thème enfant officiel de JCI Ouidah La Couronne - Redesign Institutionnel Premium
Author: JCI Ouidah La Couronne
Template: hello-elementor
Version: 1.1.0
Text Domain: jci-ouidah-la-couronne-theme
*/

:root {
    /* Brand Colors - JCI Official 2026 */
    --jci-aqua:       #0096D2; 
    --jci-navy:       #002D56; 
    --jci-teal:       #00A6A0; 
    --jci-yellow:     #FFC20E; 
    
    /* Legacy mapping for existing classes */
    --jci-blue:       var(--jci-aqua);
    --jci-blue-dark:  var(--jci-navy);
    --jci-blue-light: #0077b5; 
    
    /* Neutral Palette */
    --jci-white:      #ffffff;
    --jci-white-alt:  #f8fafc;
    --jci-gray-100:   #f1f5f9;
    --jci-gray-200:   #e2e8f0;
    --jci-gray-400:   #94a3b8;
    --jci-gray-600:   #475569;
    --jci-gray-800:   #1e293b;
    --jci-text:       #334155;
    --jci-text-bold:  #0f172a;

    /* Typography */
    --font-heading:   'Outfit', sans-serif;
    --font-body:      'Inter', sans-serif;

    /* Shadows */
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.1);
    --shadow:         0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md:      0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg:      0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Layout */
    --radius:         6px;
    --radius-lg:      12px;
    --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    color: var(--jci-text);
    background: var(--jci-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--jci-aqua); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--jci-navy); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--jci-navy);
    line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 { 
    color: var(--jci-navy); 
    font-family: var(--font-heading);
    line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }
p { margin-bottom: 1.5rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.jci-container { 
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 40px; 
    box-sizing: border-box;
}
.jci-section { padding: 100px 0; overflow: hidden; }
.jci-section--gray { background: var(--jci-white-alt); }
.jci-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.jci-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.jci-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1200px) {
    .jci-container { padding: 0 30px; }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
body {
    padding-top: 100px;
}
body.home {
    padding-top: 0;
}

#jci-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: var(--jci-white);
    border-bottom: 1px solid var(--jci-gray-100);
    height: 100px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
#jci-header.scrolled { height: 80px; box-shadow: var(--shadow-md); }

.jci-header-inner {
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.jci-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}
.jci-logo-img-wrapper {
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.jci-main-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.jci-logo-separator {
    width: 1px;
    height: 38px;
    background: #CBD5E1;
    margin: 0 10px;
}
@media (max-width: 480px) {
    .jci-header-inner { padding: 0 15px; }
    .jci-logo-separator { margin: 0 8px; }
    .jci-logo-text strong { font-size: 1.1rem !important; }
    .jci-logo-text span { font-size: 0.75rem !important; }
    .jci-logo-img-wrapper { height: 40px; }
    .jci-logo { gap: 10px; }
}
.jci-logo-text {
    display: flex;
    flex-direction: column;
}
.jci-logo-text strong { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    line-height: 1.1;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--jci-aqua);
}
.jci-logo-text span { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    line-height: 1; 
    margin-top: 2px;
    font-size: 0.95rem;
    color: #64748B; /* Darker gray for the subtone */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}


.jci-nav { display: flex; gap: 40px; align-items: center; }
.jci-nav > li > a {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
    color: var(--jci-gray-800); text-transform: uppercase; letter-spacing: 0.1em;
}
.jci-nav > li > a:hover, .jci-nav > li.current > a { color: var(--jci-aqua); }

.jci-nav-cta .jci-btn {
    padding: 12px 25px;
    font-size: 0.8rem;
    color: white !important;
}
.jci-nav-cta .jci-btn:hover {
    background: white !important;
    color: var(--jci-aqua) !important;
    box-shadow: none;
    border: 2px solid var(--jci-aqua);
    transform: none;
}

.jci-dropdown {
    position: absolute; top: 100%; left: -20px;
    background: var(--jci-white); min-width: 250px;
    box-shadow: var(--shadow-lg); border-radius: var(--radius);
    padding: 10px 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition);
    border: 1px solid var(--jci-gray-100);
}
.jci-nav li { position: relative; }
.jci-nav li:hover .jci-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.jci-dropdown li a { display: block; padding: 12px 25px; font-size: 0.9rem; color: var(--jci-gray-600); }
.jci-dropdown li a:hover { background: var(--jci-gray-50); color: var(--jci-aqua); }

.jci-hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    z-index: 1100; 
    position: relative;
}
.jci-hamburger span { 
    width: 28px; 
    height: 2px; 
    background: var(--jci-aqua); 
    transition: var(--transition); 
    transform-origin: center;
}

/* Animation X */
.jci-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.jci-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.jci-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
    .jci-nav { display: none; }
    .jci-hamburger { display: flex; }
    .jci-header-inner { padding: 0 24px; }
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.jci-mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100vh;
    background: var(--jci-navy);
    z-index: 1000;
    padding: 120px 40px;
    display: flex; flex-direction: column; gap: 15px;
    opacity: 0; visibility: hidden; transform: translateX(100%); transition: var(--transition);
}
.jci-mobile-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
.jci-mobile-nav a { font-size: 1.6rem; font-weight: 700; color: white; font-family: 'Plus Jakarta Sans', sans-serif; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; text-decoration: none; transition: var(--transition); }
.jci-mobile-nav a:hover { color: var(--jci-yellow); padding-left: 10px; }
.jci-mobile-cat { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--jci-aqua); margin-top: 30px; letter-spacing: 0.1em; }
.jci-mobile-sub { font-size: 1.1rem !important; border: none !important; color: rgba(255,255,255,0.6) !important; padding-left: 20px !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.jci-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 15px 35px; border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; font-family: var(--font-heading);
    transition: var(--transition); border: none; cursor: pointer;
}
.jci-btn-primary { background: var(--jci-aqua); color: white; }
.jci-btn-primary:hover { background: var(--jci-yellow); color: var(--jci-navy); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.jci-btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; }
.jci-btn-outline:hover { background: white; color: var(--jci-aqua); border-color: white; }
.jci-btn-outline-blue { background: transparent; border: 2px solid var(--jci-aqua); color: var(--jci-aqua); }
.jci-btn-outline-blue:hover { background: var(--jci-aqua); color: white; }

.jci-btn-yellow { background: var(--jci-yellow); color: var(--jci-navy); }
.jci-btn-yellow:hover { background: white; color: var(--jci-navy); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   BADGES & LABELS
   ============================================================ */
.jci-label {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}
.jci-label-blue { background: var(--jci-aqua); color: white; }
.jci-label-yellow { background: var(--jci-yellow); color: var(--jci-navy); }

/* ============================================================
   HOME HERO CAROUSEL (LIVING & PREMIUM)
   ============================================================ */
.jci-carousel {
    position: relative; 
    height: 100vh; 
    min-height: 700px;
    overflow: hidden; 
    background: var(--jci-navy);
}

.jci-slide { 
    position: absolute; 
    inset: 0; 
    opacity: 0; 
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex; 
    align-items: center; 
    visibility: hidden;
}

.jci-slide.active { 
    opacity: 1; 
    z-index: 10; 
    visibility: visible;
}

.jci-slide-bg { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center; 
    transition: transform 12s linear; 
}

/* Ken Burns Effect */
.jci-slide.active .jci-slide-bg { 
    transform: scale(1.15) translateZ(0); 
}

.jci-slide-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(75deg, rgba(12, 33, 68, 0.95) 10%, rgba(12, 33, 68, 0.4) 60%, transparent 100%),
                linear-gradient(to top, rgba(12, 33, 68, 0.6) 0%, transparent 30%);
}

.jci-slide-content { 
    position: relative; 
    z-index: 20; 
    max-width: 900px; 
    color: white; 
}

/* Staggered Entrance Animations */
.jci-slide .jci-slide-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.jci-slide.active .jci-slide-content > * {
    opacity: 1;
    transform: translateY(0);
}

.jci-slide.active .jci-label { transition-delay: 0.3s; }
.jci-slide.active h2 { transition-delay: 0.5s; }
.jci-slide.active .jci-slide-text { transition-delay: 0.7s; }
.jci-slide.active .jci-slide-actions { transition-delay: 0.9s; }

.jci-slide-content .jci-label { 
    display: inline-block; 
    background: var(--jci-yellow); 
    color: var(--jci-navy); 
    padding: 8px 20px; 
    border-radius: 4px; 
    font-weight: 800; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em;
    margin-bottom: 30px; 
    box-shadow: 0 4px 15px rgba(239, 196, 15, 0.2);
}

.jci-slide-content h2 { 
    color: white; 
    font-size: clamp(2.5rem, 6vw, 4.8rem); 
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.jci-slide-text p { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.9); 
    margin-bottom: 45px; 
    max-width: 650px;
    line-height: 1.6;
}

.jci-slide-actions { 
    display: flex; 
    gap: 25px; 
}

.jci-carousel-indicators { 
    position: absolute; 
    bottom: 60px; 
    left: 40px; 
    display: flex; 
    gap: 15px; 
    z-index: 30; 
}

.jci-carousel-indicators button { 
    width: 30px; 
    height: 4px; 
    background: rgba(255,255,255,0.2); 
    border: none; 
    cursor: pointer; 
    transition: all 0.4s ease;
    border-radius: 2px;
}

.jci-carousel-indicators button.active { 
    background: var(--jci-yellow); 
    width: 60px; 
    box-shadow: 0 0 15px rgba(239, 196, 15, 0.5);
}

.jci-carousel-prev, .jci-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.jci-carousel-prev { left: 40px; }
.jci-carousel-next { right: 40px; }
.jci-carousel-prev:hover, .jci-carousel-next:hover {
    background: var(--jci-yellow);
    color: var(--jci-navy);
    border-color: var(--jci-yellow);
    transform: translateY(-50%) scale(1.1);
}

/* Decorative Accents */
.jci-hero-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 5;
    pointer-events: none;
    opacity: 0.3;
    animation: floating-accent 20s infinite alternate linear;
}

.accent-1 {
    width: 400px; height: 400px;
    background: var(--jci-aqua);
    top: 10%; right: 10%;
}

.accent-2 {
    width: 300px; height: 300px;
    background: var(--jci-yellow);
    bottom: 20%; left: 30%;
    animation-duration: 25s;
}

@keyframes floating-accent {
    from { transform: translate(0, 0) scale(1.0); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

/* Scroll Member Indicator */
.jci-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 30;
    opacity: 0.6;
}

.jci-scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.jci-scroll-indicator .wheel {
    width: 2px;
    height: 8px;
    background: var(--jci-yellow);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Hero Highlights Bar */
.jci-hero-highlights {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 1.1s;
}

.jci-slide.active .jci-hero-highlights {
    opacity: 1;
    transform: translateY(0);
}

.jci-hero-highlights .h-item {
    display: flex;
    flex-direction: column;
}

.h-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--jci-yellow);
}

.h-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.h-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 1024px) {
    .jci-hero-highlights { display: none; }
}

@media (max-width: 768px) {
    .jci-hero-accent { display: none; }
    .jci-scroll-indicator { display: none; }
}

/* ============================================================
   STATS
   ============================================================ */
.jci-stats-section { background: var(--jci-aqua); color: white; padding: 80px 0; }
.jci-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.jci-stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--jci-yellow); display: block; }
.jci-stat-label { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.1em; }

/* ============================================================
   CARDS
   ============================================================ */
/* ============================================================
   PREMIUM CARDS (BLOG & PROJECTS)
   ============================================================ */
.jci-card { 
    background: #fff; 
    border-radius: 20px; 
    border: 1px solid rgba(0,0,0,0.05); 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
}

.jci-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 60px -20px rgba(0,45,86,0.12); 
    border-color: var(--jci-aqua); 
}

.jci-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.6;
    background: var(--jci-navy);
}

.jci-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jci-navy) 0%, #001a33 100%);
}

.jci-card-img-placeholder span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    opacity: 0.15;
    letter-spacing: 0.2em;
    font-family: var(--font-heading);
    transform: skewX(-10deg);
}

.jci-card-img { 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.jci-card:hover .jci-card-img {
    transform: scale(1.1);
}

.jci-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,150,210,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.jci-card:hover .jci-card-overlay {
    opacity: 1;
}

.jci-btn-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--jci-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.jci-card:hover .jci-btn-circle {
    transform: scale(1);
}

.jci-card-body { 
    padding: 30px; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.jci-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--jci-gray-400);
}

.jci-card-body h3 { 
    font-size: 1.35rem; 
    margin-bottom: 12px; 
    color: var(--jci-navy); 
    font-weight: 800;
    line-height: 1.35;
    font-family: var(--font-heading);
}

.jci-card-body p { 
    font-size: 0.95rem; 
    color: var(--jci-gray-600); 
    margin-bottom: 25px; 
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================================
   TAGS & LABELS (THE STICKERS)
   ============================================================ */
.jci-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.jci-tag-blue {
    background: rgba(0,150,210,0.1);
    color: var(--jci-aqua);
}

.jci-tag-yellow {
    background: rgba(255,194,14,0.15);
    color: #b48a00;
}

.jci-card-footer {
    border-top: 1px solid #f1f5f9;
    padding: 25px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.jci-card:hover .jci-btn {
    background: var(--jci-aqua);
    border-color: var(--jci-aqua);
    color: white;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.jci-section-header { text-align: center; margin-bottom: 60px; }
.jci-section-header .jci-label { color: var(--jci-aqua); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 15px; display: block; }
.jci-section-header h2 { margin-bottom: 20px; }

/* ============================================================
   MODERN EVENT CARDS
   ============================================================ */
.jci-event-modern-card {
    display: flex;
    background: var(--jci-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.jci-event-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--jci-blue-light);
}

.jci-event-date-side {
    background: var(--jci-navy);
    color: white;
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.jci-event-modern-card:hover .jci-event-date-side {
    background: var(--jci-aqua);
}

.jci-event-date-side .day {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--jci-yellow);
    font-family: var(--font-heading);
}

.jci-event-date-side .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 5px;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.jci-event-info-side {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.jci-event-info-side h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--jci-navy);
    transition: color 0.3s ease;
}

.jci-event-modern-card:hover h3 {
    color: var(--jci-aqua);
}

.jci-event-info-side p {
    font-size: 0.95rem;
    color: var(--jci-gray-600);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.jci-event-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jci-gray-400);
}

.jci-event-meta-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jci-event-meta-inline svg {
    color: var(--jci-aqua);
    opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
#jci-footer { 
    background: #081121; 
    padding: 100px 0 40px; 
    color: rgba(255,255,255,0.6); 
    border-top: 1px solid rgba(255,255,255,0.05);
}
.jci-footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.2fr; 
    gap: 50px; 
    align-items: start;
}

.jci-footer-brand p {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.jci-footer-col h4 { 
    color: white; 
    margin-bottom: 30px; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    font-weight: 700;
}
.jci-footer-col ul li { margin-bottom: 15px; }
.jci-footer-col ul li a { 
    color: rgba(255,255,255,0.6); 
    font-size: 0.95rem; 
    transition: all 0.3s ease;
    text-decoration: none;
}
.jci-footer-col ul li a:hover { 
    color: var(--jci-yellow); 
    padding-left: 8px; 
}

/* Newsletter Styles */
.jci-footer-newsletter-form {
    position: relative;
    margin-top: 20px;
}
.jci-footer-newsletter-form input {
    width: 100%; 
    padding: 14px 50px 14px 18px; 
    border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.1); 
    background: rgba(255,255,255,0.03); 
    color: white; 
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.jci-footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--jci-aqua);
    background: rgba(255,255,255,0.07);
}
.jci-footer-newsletter-btn {
    position: absolute; 
    right: 6px; 
    top: 6px; 
    bottom: 6px; 
    background: var(--jci-aqua); 
    border: none; 
    border-radius: 10px; 
    width: 42px; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.3s ease;
}
.jci-footer-newsletter-btn:hover {
    background: var(--jci-yellow);
    color: var(--jci-blue-dark);
}

.jci-social-links { display: flex; gap: 15px; margin-top: 30px; }
.jci-social-link { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: white; border: 1px solid rgba(255,255,255,0.1); }
.jci-social-link:hover { background: var(--jci-aqua); transform: translateY(-5px); border-color: var(--jci-aqua); }

/* ============================================================
   PAGE HERO & BREADCRUMB
   ============================================================ */
.jci-page-hero {
    background: var(--jci-navy);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.jci-page-hero::after {
    content: '';
    position: absolute;
    right: 0; bottom: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(239, 196, 15, 0.1) 0%, transparent 70%);
}
.jci-page-hero h1 { color: white; margin: 15px 0; }
.jci-page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 700px; margin: 0; }

.jci-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.jci-breadcrumb a { color: var(--jci-navy); text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.jci-breadcrumb a:hover { opacity: 1; }
.jci-breadcrumb span { color: var(--jci-gray-300); font-weight: 300; }

@media (max-width: 768px) {
    .jci-breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    .jci-breadcrumb::-webkit-scrollbar { display: none; }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.jci-pagination { margin-top: 60px; }
.jci-pagination ul { display: flex; justify-content: center; gap: 10px; }
.jci-pagination li a, .jci-pagination li span {
    width: 45px; height: 45px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    background: var(--jci-white);
    border: 1px solid var(--jci-gray-200);
    color: var(--jci-navy);
    font-weight: 700;
}
.jci-pagination li span.current { background: var(--jci-aqua); color: white; border-color: var(--jci-aqua); }
.jci-pagination li a:hover { border-color: var(--jci-aqua); color: var(--jci-aqua); }

/* ============================================================
   FILTERS
   ============================================================ */
.jci-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.jci-filter-btn {
    padding: 12px 30px;
    border-radius: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.jci-filter-btn:hover {
    background: var(--jci-white);
    border-color: var(--jci-aqua);
    color: var(--jci-aqua);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.jci-filter-btn.active {
    background: var(--jci-aqua);
    border-color: var(--jci-aqua);
    color: white;
    box-shadow: 0 10px 25px rgba(0,150,210,0.25);
}

/* ============================================================
   ACTION AREAS (DOMAINES D'ACTION)
   ============================================================ */
.jci-action-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.jci-action-card {
    background: var(--jci-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--jci-gray-100);
    transition: all 0.3s ease;
}
.jci-action-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--jci-blue-light);
}
.jci-action-icon {
    width: 80px;
    height: 80px;
    background: var(--jci-white-alt);
    color: var(--jci-aqua);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.jci-action-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}
.jci-action-card:hover .jci-action-icon {
    background: var(--jci-aqua);
    color: white;
    transform: rotate(10deg) scale(1.1);
}
.jci-action-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--jci-navy);
    font-weight: 800;
}
.jci-action-card p {
    font-size: 0.95rem;
    color: var(--jci-gray-600);
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   SPOTLIGHT SECTION
   ============================================================ */
.jci-spotlight-section {
    background: var(--jci-navy);
    padding: 100px 0;
    color: white;
    overflow: hidden;
    position: relative;
}
.jci-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.jci-spotlight-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--jci-yellow);
}
.jci-spotlight-image img {
    width: 100%;
    height: auto;
    display: block;
}
.jci-spotlight-content h2 { color: white; margin-bottom: 25px; }
.jci-spotlight-content .quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding-left: 40px;
}
.jci-spotlight-content .quote::before {
    content: '"';
    position: absolute;
    left: -10px; top: -30px;
    font-size: 6rem;
    color: var(--jci-yellow);
    opacity: 0.25;
    font-family: 'Georgia', serif;
    pointer-events: none;
}
.jci-spotlight-meta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}
.jci-spotlight-name {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--jci-yellow);
}
.jci-spotlight-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.jci-single-container {
    max-width: 900px;
    margin: 0 auto;
}

.jci-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--jci-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}
.jci-single-meta span { display: flex; align-items: center; gap: 8px; }
.jci-single-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    opacity: 0.3;
}
@media (max-width: 576px) {
    .jci-single-meta span::after { display: none; }
}

.jci-single-hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 21/9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.jci-single-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--jci-text);
}
.jci-single-body p { margin-bottom: 25px; }
.jci-single-body h2, .jci-single-body h3 { margin: 40px 0 20px; color: var(--jci-aqua); }
.jci-single-body blockquote {
    border-left: 4px solid var(--jci-yellow);
    padding: 20px 30px;
    background: var(--jci-white-alt);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.jci-single-nav {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--jci-gray-100);
    display: flex;
    justify-content: space-between;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.jci-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.jci-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.jci-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--jci-white-alt);
    border: 1px solid var(--jci-gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--jci-aqua);
    flex-shrink: 0;
}

.jci-contact-info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jci-gray-400);
    margin-bottom: 5px;
}

.jci-contact-info-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--jci-navy);
}

.jci-contact-icon svg { width: 24px; height: 24px; }

.jci-contact-socials {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--jci-gray-100);
}

.jci-contact-socials h4 {
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--jci-gray-400);
}

.jci-contact-form-card {
    background: var(--jci-white-alt);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
    text-align: center;
}

.jci-contact-form-card .icon-header {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--jci-aqua);
    opacity: 0.2;
}
.jci-contact-form-card .icon-header svg { width: 60px; height: 60px; margin: 0 auto; }

.jci-contact-form-card h3 { margin-bottom: 15px; font-weight: 800; }
.jci-contact-form-card p { margin-bottom: 35px; font-size: 0.95rem; color: var(--jci-gray-600); }


/* ============================================================
   ABOUT JCI / INFO BLOCKS
   ============================================================ */
.jci-info-card {
    background: var(--jci-white-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
}

.jci-info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--jci-aqua);
}

.jci-info-card h3 { margin-bottom: 15px; }

.jci-info-card ul { list-style: none; padding: 0; }
.jci-info-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--jci-gray-600);
}
.jci-info-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--jci-yellow);
    font-weight: 800;
}

.jci-credo-box {
    background: var(--jci-navy);
    color: white;
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    text-align: left;
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.jci-credo-box::after {
    content: "JCI";
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.jci-credo-box h3 {
    color: var(--jci-yellow);
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jci-credo-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.jci-credo-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.jci-credo-bullet {
    color: var(--jci-yellow);
    font-size: 1.8rem;
    line-height: 1;
    margin-top: -4px;
}

.jci-credo-item p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .jci-credo-box {
        padding: 50px 30px;
    }
    .jci-credo-box h3 {
        font-size: 1.6rem;
    }
    .jci-credo-item p {
        font-size: 1.05rem;
    }
}

.jci-cta-join {
    background: var(--jci-yellow);
    padding: 100px 0;
    text-align: center;
}
.jci-cta-join h2 { color: var(--jci-navy); margin-bottom: 20px; }
.jci-cta-join p { color: var(--jci-navy); max-width: 700px; margin: 0 auto 40px; }
.jci-cta-join .jci-cta-join-actions { display: flex; justify-content: center; gap: 20px; }
.jci-cta-join .jci-btn-primary:hover { background: var(--jci-navy); color: white; }

/* ============================================================
   PRESIDENTS WALL
   ============================================================ */
.jci-president-card {
    background: var(--jci-white-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.jci-president-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--jci-shadow-lg);
}

.jci-president-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.jci-president-card:hover .jci-president-photo {
    filter: grayscale(0%);
}

.jci-president-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--jci-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    opacity: 0.1;
}

.jci-president-info {
    padding: 25px;
}

.jci-president-year {
    display: inline-block;
    color: var(--jci-aqua);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
/* ============================================================
   PROJECT CARDS (PREMIUM)
   ============================================================ */
.jci-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jci-project-card {
    position: relative;
    background: var(--jci-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--jci-gray-100);
}

.jci-project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--jci-blue-light);
}

.jci-project-thumb {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.jci-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.jci-project-card:hover .jci-project-thumb img {
    transform: scale(1.1);
}

.jci-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 33, 68, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.jci-project-card:hover .jci-project-overlay {
    opacity: 1;
}

.jci-project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--jci-yellow);
    color: var(--jci-navy);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
}

.jci-project-body {
    padding: 30px;
}

.jci-project-body .tag {
    color: var(--jci-aqua);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.jci-project-body h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--jci-navy);
    font-weight: 800;
    line-height: 1.3;
}

.jci-project-body p {
    font-size: 0.95rem;
    color: var(--jci-gray-600);
    line-height: 1.6;
    margin-bottom: 25px;
}

.jci-project-footer {
    padding-top: 20px;
    border-top: 1px solid var(--jci-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jci-project-impact {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--jci-navy);
}

.jci-project-impact span {
    color: var(--jci-aqua);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
}


.jci-president-info h3 { font-size: 1.1rem; margin-bottom: 5px; }

.jci-president-slogan {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--jci-gray-400);
}

/* ============================================================
   PARTNERS SECTION (PREMIUM)
   ============================================================ */
.jci-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 80px;
    margin-top: 60px;
}

/* ============================================================
   PARTNERS TICKER (HOME)
   ============================================================ */
.jci-partners-ticker-wrap {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.jci-partners-ticker {
    display: flex;
    width: max-content;
    animation: jci-ticker-scroll 40s linear infinite;
    gap: 40px;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.jci-partners-ticker:hover {
    animation-play-state: paused;
}

@keyframes jci-ticker-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.jci-partner-logo {
    width: 220px;
    height: 110px;
    background: white;
    border: 1px solid var(--jci-gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(12, 33, 68, 0.05);
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
}

.jci-partner-logo:hover {
    transform: translateY(-8px);
    border-color: var(--jci-aqua);
    box-shadow: 0 15px 30px rgba(12, 33, 68, 0.12);
}

.jci-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .jci-partners-grid {
        gap: 30px;
    }
    .jci-partner-logo {
        width: 140px;
        height: 60px;
    }
}

/* ============================================================
   FINAL CTA SECTION (PREMIUM)
   ============================================================ */
.jci-section--blue {
    background: var(--jci-navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.jci-section--blue h2 {
    color: white !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900;
    margin-bottom: 25px;
}

.jci-section--blue p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.jci-section--blue::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 196, 15, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
/* ============================================================
   RESPONSIVE DESIGN (DESKTOP-FIRST) - RIGOROUS FIX
   ============================================================ */
@media (max-width: 1200px) {
    .jci-container { padding: 0 30px; }
    .jci-grid-3, .jci-project-grid { gap: 20px; }
    .jci-spotlight-grid { gap: 40px; }
}

@media (max-width: 1024px) {
    .jci-grid-3, .jci-project-grid { grid-template-columns: repeat(2, 1fr); }
    .jci-action-areas { grid-template-columns: repeat(2, 1fr); }
    .jci-grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    .jci-spotlight-grid { grid-template-columns: 1fr; gap: 60px; }
    .jci-spotlight-image { max-width: 600px; margin: 0 auto; }

    /* Hide carousel arrows on mobile/tablet */
    .jci-carousel-prev, .jci-carousel-next { display: none; }
    .jci-carousel-indicators { left: 50%; transform: translateX(-50%); bottom: 30px; }

    .jci-contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .jci-contact-form-card { padding: 30px; }
}

@media (max-width: 768px) {
    .jci-section { padding: 80px 0; }
    .jci-container { padding: 0 24px; }
    .jci-grid-2, .jci-grid-3, .jci-project-grid { grid-template-columns: 1fr; }
    
    .jci-carousel { height: 750px; min-height: auto; }
    .jci-slide-overlay { 
        background: linear-gradient(to bottom, rgba(12, 33, 68, 0.5) 0%, rgba(12, 33, 68, 0.9) 100%); 
    }
    .jci-slide-content { text-align: center; margin: 0 auto; padding-top: 60px; }
    .jci-slide-content h2 { font-size: 2.5rem !important; }
    .jci-slide-text p { margin: 0 auto 40px; }
    .jci-slide-actions { flex-direction: column; gap: 15px; }
    .jci-btn { width: 100%; text-align: center; }

    .jci-carousel-indicators { left: 50%; transform: translateX(-50%); bottom: 40px; }
    
    .jci-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .jci-about-box { padding: 30px; }
    .jci-about-box-inner { gap: 30px; }
}

@media (max-width: 600px) {
    .jci-grid-4 { grid-template-columns: 1fr; }
    .jci-action-areas { grid-template-columns: 1fr; }
    
    .jci-section { padding: 60px 0; }
    .jci-section-header h2 { font-size: 1.7rem !important; }
    
    .jci-event-modern-card { flex-direction: column; }
    .jci-event-date-side { width: 100%; flex-direction: row; gap: 10px; padding: 15px; height: auto; }
    
    .jci-spotlight-image { box-shadow: 10px 10px 0 var(--jci-yellow); }
    .jci-spotlight-content .quote { font-size: 1.1rem; padding-left: 20px; }
}

/* Specific Fix for "C'est quoi la JCI" page grid */
.jci-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}
@media (max-width: 991px) { .jci-info-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   STATISTICS SECTION (PREMIUM)
   ============================================================ */
.jci-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.jci-stat {
    text-align: center;
    padding: 20px;
}

.jci-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--jci-yellow);
    line-height: 1;
    margin-bottom: 15px;
}

.jci-stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .jci-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

@media (max-width: 600px) {
    .jci-stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .jci-stat-number { font-size: 3rem; }
}

/* ============================================================
   ABOUT PAGE SPECIFIC (Ouidah Box)
   ============================================================ */
.jci-about-box {
    background: var(--jci-navy);
    border-radius: var(--radius-lg);
    padding: 80px;
    margin-bottom: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}
.jci-about-box-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.jci-about-box-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
}

@media (max-width: 991px) {
    .jci-about-box { padding: 40px; }
    .jci-about-box-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   MEMBERSHIP PAGE (DEVENIR MEMBRE)
   ============================================================ */
.jci-membership-criteria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.jci-criteria-card {
    display: flex;
    gap: 25px;
    background: var(--jci-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
    transition: var(--transition);
}

.jci-criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--jci-blue-light);
}

.jci-criteria-icon {
    width: 60px;
    height: 60px;
    background: var(--jci-white-alt);
    color: var(--jci-aqua);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jci-criteria-icon svg { width: 30px; height: 30px; stroke-width: 1.5; }

.jci-criteria-card h4 { margin-bottom: 15px; font-size: 1.25rem; color: var(--jci-navy); font-weight: 800; }
.jci-criteria-card p { font-size: 0.95rem; margin: 0; color: var(--jci-gray-600); line-height: 1.7; }

/* Benefits Grid */
.jci-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jci-benefit-card {
    background: var(--jci-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--jci-gray-100);
    text-align: center;
    transition: var(--transition);
}

.jci-benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--jci-blue-light);
    transform: translateY(-8px);
}

.jci-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--jci-white-alt);
    color: var(--jci-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.jci-benefit-card:hover .jci-benefit-icon { background: var(--jci-aqua); color: white; }
.jci-benefit-icon svg { width: 32px; height: 32px; stroke-width: 2; }

.jci-benefit-card h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--jci-navy); }
.jci-benefit-card p { font-size: 0.9rem; color: var(--jci-gray-600); margin: 0; }

/* WhatsApp CTA */
.jci-whatsapp-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.3);
}

.jci-whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.jci-whatsapp-cta h3 { color: white; font-size: 2rem !important; margin-bottom: 15px; }
.jci-whatsapp-cta p { max-width: 600px; margin: 0 auto 35px; color: rgba(255,255,255,0.9); font-size: 1.1rem; }

@media (max-width: 1024px) {
    .jci-membership-criteria { grid-template-columns: 1fr; }
    .jci-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .jci-benefits-grid { grid-template-columns: 1fr; }
    .jci-whatsapp-cta { padding: 40px 20px; }
    .jci-whatsapp-cta h3 { font-size: 1.5rem !important; }
    .jci-criteria-card { flex-direction: column; padding: 25px; }
}

/* ============================================================
   RESPONSIVE GRID UTILITIES
   ============================================================ */
.jci-responsive-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.jci-responsive-sidebar.sidebar-left {
    grid-template-columns: 350px 1fr;
}

.jci-nested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .jci-responsive-sidebar,
    .jci-responsive-sidebar.sidebar-left {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .jci-nested-grid {
        grid-template-columns: 1fr;
    }

    .jci-breadcrumb {
        flex-wrap: wrap;
        font-size: 0.75rem;
    }
}

.jci-btn-stack {
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .jci-btn-stack {
        flex-direction: column;
        width: 100%;
    }
    .jci-btn-stack .jci-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   JOB ITEMS (ARCHIVE)
   ============================================================ */
.jci-job-item {
    background: white;
    border: 1px solid var(--jci-gray-100);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    transition: var(--transition);
}

.jci-job-item:hover {
    border-color: var(--jci-aqua);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.jci-job-info h4 {
    margin: 0 0 8px;
    color: var(--jci-navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.jci-job-info p {
    margin: 0 0 15px;
    color: var(--jci-gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
}

.jci-job-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--jci-gray-400);
}

@media (max-width: 768px) {
    .jci-job-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .jci-job-item div:last-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
    }
}

/* ============================================================
   RESPONSIVE FOOTER
   ============================================================ */
@media (max-width: 991px) {
    .jci-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .jci-footer-brand {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 40px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    #jci-footer {
        padding: 80px 0 40px;
    }
    .jci-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .jci-footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    .jci-footer-brand .jci-logo {
        justify-content: center;
    }
    .jci-social-links {
        justify-content: center;
    }
    .jci-footer-col {
        text-align: center;
    }
    .jci-footer-col h4::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: var(--jci-yellow);
        margin: 10px auto 0;
    }
    .jci-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 30px;
    }
}
