/* ============================================================
   EVA AUTISME - Feuille de style principale
   Design inspiré de afg-autisme.com
   ============================================================ */

/* ---------- Variables ---------- */
:root {
    --primary:       #0055A5;
    --primary-dark:  #003d7a;
    --primary-light: #e8f0fb;
    --accent:        #E8501A;
    --accent-dark:   #c43d0e;
    --green:         #1db96a;
    --green-dark:    #159a58;
    --green-light:   #e6f9ef;
    --teal:          #0891b2;
    --teal-light:    #e0f4f8;
    --footer-bg:     #223669;
    --text-dark:     #1a1a2e;
    --text-mid:      #4a4a6a;
    --text-muted:    #6b7280;
    --text-light:    #7a7a9a;
    --bg-light:      #f5f7fc;
    --bg-white:      #ffffff;
    --border:        #e0e6f0;
    --success:       #27ae60;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
    --shadow-md:     0 8px 30px rgba(0,0,0,0.11);
    --shadow-lg:     0 16px 50px rgba(0,0,0,0.14);
    --radius:        8px;
    --radius-lg:     16px;
    --transition:    0.28s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-mid); line-height: 1.75; }

/* ---------- Utility ---------- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm{ max-width: 900px;  margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 80px 0; }
.section-sm  { padding: 50px 0; }
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; } .align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary); }
.w-100 { width: 100%; }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-header .label::before,
.section-header .label::after { display: none; }
/* For left-aligned labels, hide the right line */
[style*="text-align:left"] .section-header .label::after,
.section-header[style*="text-align:left"] .label::after { display: none; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 600px; margin: 0 auto; }
.section-divider {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 1rem auto 0;
    width: fit-content;
}
.section-divider::before,
.section-divider::after {
    content: '';
    display: block;
    height: 2px;
    border-radius: 2px;
}
.section-divider::before {
    width: 40px;
    background: var(--green);
    opacity: 0.5;
}
.section-divider::after {
    width: 18px;
    background: var(--green);
    opacity: 1;
}
/* Left-aligned divider (section About etc.) */
.section-divider[style*="margin-left:0"] {
    margin-left: 0 !important;
    margin-right: auto;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-size: 0.82rem;
    padding: 9px 0;
    position: relative;
    z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-slogan {
    font-weight: 600;
    font-style: italic;
    opacity: 0.95;
    font-size: 0.83rem;
}
.topbar-slogan span { color: #ffffff; font-weight: 700; }
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    opacity: 0.9;
    transition: opacity var(--transition);
}
.topbar-contact a:hover { opacity: 1; }
.topbar-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-logo img,
.logo-img { height: 54px; width: auto; display: block; }
.logo-img-footer { height: 50px; width: auto; display: block; margin-bottom: 0.75rem; }
.navbar-logo-text .name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.navbar-logo-text .tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.65rem 1rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-link svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav-close-item { display: none; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 230px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    pointer-events: none;
    z-index: 500;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    font-size: 0.93rem;
    color: var(--text-mid);
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown a svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }

/* Don Button */
.btn-don {
    background: #ffa84b;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-don:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-don svg { width: 16px; height: 16px; }

/* Burger */
.navbar-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 11px;
    cursor: pointer;
    background: var(--primary);
    border-radius: 10px;
    border: none;
    outline: none;
}
.navbar-burger span {
    width: 24px; height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(.77,0,.175,1); }
.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.42) 60%, rgba(0,0,0,0.22) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 1.5rem;
}
.hero-content-inner {
    max-width: 700px;
    margin-left: calc((100vw - 1200px) / 2 + 1.5rem);
}
.hero-badge {
    display: inline-block;
    background: rgba(29, 185, 106, 0.28);
    backdrop-filter: blur(8px);
    color: #d4fce8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(29, 185, 106, 0.55);
    margin-bottom: 1rem;
}
.hero-content h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-content p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    background: #bada55;
    color: #1a3a0a;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(186,218,85,0.45);
}
.btn-primary:hover { background: #aacf3e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(186,218,85,0.55); }
.btn-primary.accent { background: var(--accent); color: #fff; box-shadow: 0 4px 15px rgba(232,80,26,0.35); }
.btn-primary.accent:hover { background: var(--accent-dark); }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: #fff; }

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 0; right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow svg { width: 18px; height: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}
.btn-blue {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,85,165,0.28);
}
.btn-blue:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,85,165,0.38);
}
.btn-orange {
    background: #ffa84b;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,168,75,0.35);
}
.btn-orange:hover {
    background: #e8922e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,168,75,0.45);
}
.btn-white {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.btn-white:hover {
    background: rgba(255,255,255,0.22);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
/* btn-white on light backgrounds: add btn-white-light class */
.btn-white-light {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-white-light:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}
/* Ghost button — light text on colored bg */
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: #fff;
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,55,120,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,55,120,0.14);
}
/* Featured card — stronger depth */
.card.card-featured {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05), 0 12px 36px rgba(0,55,120,0.12);
    border-color: rgba(0,85,165,0.15);
}
.card.card-featured:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 24px 56px rgba(0,55,120,0.18);
}
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}
.card-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 18px rgba(0,0,0,0.04);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
    counter-increment: feature-counter;
}
.feature-card::after {
    content: counter(feature-counter, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    transition: color var(--transition);
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,55,120,0.13);
    background: linear-gradient(160deg, #fff 60%, var(--primary-light) 100%);
}
.feature-card:nth-child(2):hover { background: linear-gradient(160deg, #fff 60%, var(--teal-light) 100%); }
.feature-card:nth-child(3):hover { background: linear-gradient(160deg, #fff 60%, var(--green-light) 100%); }
.feature-card:hover::after { color: rgba(0,85,165,0.08); }
.feature-icon {
    width: 64px; height: 64px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: background var(--transition), transform var(--transition), border-radius var(--transition);
}
.feature-card:nth-child(2) .feature-icon { background: var(--teal-light); border-radius: 50%; }
.feature-card:nth-child(3) .feature-icon { background: var(--green-light); border-radius: 12px; }
.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(-3deg);
}
.feature-card:nth-child(2):hover .feature-icon { background: var(--teal); border-radius: 50%; }
.feature-card:nth-child(3):hover .feature-icon { background: var(--green); border-radius: 12px; }
.feature-icon svg { width: 30px; height: 30px; color: var(--primary); transition: color var(--transition); }
.feature-card:nth-child(2) .feature-icon svg { color: var(--teal); }
.feature-card:nth-child(3) .feature-icon svg { color: var(--green); }
.feature-card:hover .feature-icon svg { color: #fff; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.18);
}
.stat-number {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.stat-number span { color: #ffe066; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.78); font-weight: 500; letter-spacing: 0.01em; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-label span { color: var(--accent); }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
    outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,85,165,0.12); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #001f5b 100%);
    padding: 4.5rem 0 3.75rem;
    position: relative;
    overflow: hidden;
}
/* Subtle cross/dot pattern overlay */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}
/* Decorative arc in top-right */
.page-header::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.04);
    pointer-events: none;
}
/* All text inside page-header forced white */
.page-header h1,
.page-header h2,
.page-header h3,
.page-header p,
.page-header span,
.page-header .breadcrumb,
.page-header .breadcrumb a,
.page-header .breadcrumb span {
    color: #fff;
    position: relative;
    z-index: 1;
}
.page-header h1 { margin-bottom: 0.5rem; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.page-header p { color: rgba(255,255,255,0.88) !important; position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.88); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0;
}
.tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border-radius: 0;
    border-top: none; border-left: none; border-right: none;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date-block {
    background: var(--primary);
    color: #fff;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    flex-shrink: 0;
}
.event-date-block .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-block .month { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.event-info { padding: 1.25rem 1.5rem 1.25rem 0; flex: 1; }
.event-info h4 { margin-bottom: 0.4rem; }
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.event-meta span { display: flex; align-items: center; gap: 4px; }
.event-meta svg { width: 14px; height: 14px; }
.event-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}
.badge-upcoming { background: #e8f5e9; color: #2e7d32; }
.badge-past     { background: #fce4ec; color: #c62828; }

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners-strip {
    background: var(--bg-light);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.partner-logo {
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity var(--transition), filter var(--transition);
    max-height: 50px;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    background: linear-gradient(135deg, #0d5e38 0%, #1db96a 60%, #17a35c 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.newsletter-section h2 { color: #fff; }
.newsletter-section p { color: rgba(255,255,255,0.85); }
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 2rem auto 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 5px 5px 5px 1.5rem;
    backdrop-filter: blur(8px);
}
.newsletter-form input {
    flex: 1;
    padding: 0.65rem 0.5rem;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    outline: none;
    color: #fff;
    min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.6rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--accent-dark); transform: scale(1.03); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.88);
}
.social-links { display: flex; gap: 0.6rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.social-link:hover { background: var(--primary); }
.social-link svg { width: 16px; height: 16px; color: #fff; }
.footer-col h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: #6bc0e7;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: #6bc0e7; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    text-align: center;
    color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================================
   MEDIA GALLERY
   ============================================================ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.media-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.media-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.media-item:hover img { transform: scale(1.06); }
.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,55,120,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.media-item:hover .media-overlay { opacity: 1; }
.media-overlay svg { width: 40px; height: 40px; color: #fff; }

/* ============================================================
   PAGE : CONTACT CARDS
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: var(--radius-lg); overflow: hidden; }
.contact-card {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 360px;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card:nth-child(1) { background: #1db96a; }
.contact-card:nth-child(2) { background: #0d7a8f; }
.contact-card:nth-child(3) { background: var(--primary); }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.contact-card-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.55);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover .contact-card-icon { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }
.contact-card-icon svg { width: 36px; height: 36px; color: #fff; }
.contact-card h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 0.5rem; line-height: 1.6; }
.contact-card-btn {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    padding: 0.6rem 1.75rem;
    margin-top: 0.5rem;
    transition: all var(--transition);
    text-decoration: none;
}
.contact-card-btn:hover { background: rgba(255,255,255,0.2); border-color: #fff; color: #fff; }

/* Team member cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.team-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.team-photo {
    width: 130px; height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { color: var(--primary); opacity: 0.3; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-dark); }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; letter-spacing: 0.3px; }
.team-divider { width: 30px; height: 2px; background: var(--border); margin: 0.75rem auto; border-radius: 2px; }
.team-bio { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-top: 0.5rem; }
@media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .team-photo { width: 100px; height: 100px; }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .team-photo { width: 90px; height: 90px; }
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: #fff;
    transition: background var(--transition);
    gap: 1rem;
}
.accordion-header:hover { background: var(--bg-light); }
.accordion-header.active { background: var(--primary); color: #fff; }
.accordion-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.accordion-header.active .accordion-icon { transform: rotate(180deg); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.2s ease;
    background: var(--bg-light);
}
.accordion-body.open { max-height: 700px; }
.accordion-body-inner { padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   ALERT / FLASH MESSAGES
   ============================================================ */
.alert {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid var(--success); }
.alert-error   { background: #fce4ec; color: #b71c1c; border-left: 4px solid #e53935; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: -2.5rem; right: 0;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ============================================================
   RESPONSIVE GRID UTILITIES
   ============================================================ */
/* Grids used with inline styles → override via these classes */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.cta-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.mini-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content-inner { margin-left: 1.5rem; }
    .about-grid { gap: 2.5rem; }
    .cta-photo-grid { gap: 2.5rem; }
}

@media (max-width: 900px) {
    /* Navbar mobile */
    .navbar-menu {
        display: flex;
        position: fixed;
        top: 0; right: 0;
        width: min(300px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(.4,0,.2,1), visibility 0.3s;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 1000;
    }
    .navbar-menu.open {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-item { width: 100%; }
    .nav-link { width: 100%; padding: 0.85rem 0.5rem; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--border); }
    .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: var(--bg-light); pointer-events: all; display: none; padding: 0; border-radius: 0; min-width: auto; }
    .nav-item.open .dropdown { display: block; }
    .dropdown a { padding: 0.75rem 1.25rem; font-size: 0.97rem; }
    .btn-don { display: none; }
    .navbar-burger { display: flex; }
    .contact-cards { grid-template-columns: 1fr; }
    .nav-close-item { width: 100%; display: flex; justify-content: flex-end; padding: 0.5rem 0 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }
    .nav-close-btn { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    .nav-close-btn svg { width: 20px; height: 20px; color: var(--text-dark); }

    /* About section */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo-secondary { display: none !important; }
    .about-badge { right: 0 !important; bottom: -1rem !important; }

    /* CTA photo section */
    .cta-photo-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* Topbar */
    .topbar { padding: 6px 0; }
    .topbar .container { justify-content: center; gap: 0.5rem; }
    .topbar-slogan { display: none; }
    .topbar-contact { gap: 1rem; font-size: 0.78rem; }

    /* Hero */
    .hero { height: 80vh; min-height: 480px; }
    .hero-content h1 { font-size: clamp(1.9rem, 6vw, 3rem); }
    .hero-content p { font-size: 0.95rem; }
    .hero-badge { font-size: 0.68rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: var(--radius); }
    .newsletter-form button { border-radius: var(--radius); }

    /* Events */
    .event-card { flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; }
    .event-date-block { flex-direction: row; gap: 0.75rem; align-items: center; justify-content: flex-start; padding: 1rem 1.25rem; min-width: auto; width: 100%; }
    .event-date-block .day { font-size: 2.2rem; line-height: 1; }
    .event-date-block .month { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
    .event-info { padding: 1.25rem; }

    /* About grid */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .about-photo-secondary { display: none !important; }

    /* About photo grid — flatten on mobile */
    .about-photo-grid .about-photo-row > div { width: 50% !important; flex-shrink: 1 !important; min-width: 0 !important; }
    .about-photo-grid .about-photo-spacer { display: none !important; }

    /* Masquer band mission sur mobile */
    .homepage-mission-band { display: none !important; }

    /* Photo strip 4 images → 2 lignes de 2 sur mobile */
    .photo-strip { grid-template-columns: repeat(2, 1fr) !important; grid-template-rows: repeat(2, 160px); height: auto !important; }

    /* CTA */
    .cta-photo-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .photo-bg-section { padding: 60px 0; }

    /* Page header */
    .page-header { padding: 3rem 0 2.5rem; }
    .page-header h1 { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* Buttons */
    .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom .container { flex-wrap: wrap; gap: 0.4rem; font-size: 0.78rem; }
}

@media (max-width: 640px) {
    .contact-cards { grid-template-columns: 1fr; }
    .photo-strip { grid-template-columns: repeat(2, 1fr); height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .section-sm { padding: 35px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 1rem; }
    .navbar-inner { padding: 0.85rem 1rem; }
    .hero { height: 70vh; min-height: 420px; }
    .hero-content-inner { margin-left: 1rem; }
    .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer-grid { gap: 1.75rem; }
    .footer-brand p { font-size: 0.83rem; }
    .footer-col h5 { font-size: 0.88rem; margin-bottom: 1rem; }
    .footer-links a { font-size: 0.82rem; }
    .footer-contact-item { font-size: 0.82rem; }
    .footer-bottom .container { flex-direction: column; gap: 0.25rem; font-size: 0.75rem; }
    .social-link { width: 34px; height: 34px; }

    /* Misc */
    .mini-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .newsletter-section { padding: 50px 0; }
    .newsletter-section h2 { font-size: 1.5rem; }
}

/* ============================================================
   PHOTO BACKGROUND SECTIONS
   ============================================================ */
.photo-bg-section {
    position: relative;
    padding: 100px 0;
    background: var(--footer-bg) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.photo-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,30,90,0.82) 0%, rgba(0,30,90,0.60) 100%);
    z-index: 0;
}
.photo-bg-section .container { position: relative; z-index: 1; }
.photo-bg-section h2 { color: #fff; }
.photo-bg-section p  { color: rgba(255,255,255,0.88); }

/* Photo placeholder (where admin will upload images) */
.photo-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    gap: 0.75rem;
    text-align: center;
    border: 2px dashed var(--border);
    overflow: hidden;
    position: relative;
}
.photo-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.photo-placeholder-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
}
.photo-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }

/* Photo gallery strip */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.photo-strip-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.photo-strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-item-placeholder {
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.photo-strip-item-placeholder svg { width: 40px; height: 40px; opacity: 0.3; color: var(--primary); }

/* Two-column image + text */
.split-photo-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}
.split-photo-text .photo-side {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}
.split-photo-text .photo-side img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.split-photo-text .text-side {
    background: var(--primary);
    color: #fff;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-photo-text .text-side h2 { color: #fff; margin-bottom: 1rem; }
.split-photo-text .text-side p  { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }

/* ============================================================
   ADDITIONAL BUTTONS
   ============================================================ */
/* Currency & Payment selectors */
.currency-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.5rem 1.1rem; border-radius: 30px; border: 2px solid var(--border);
    background: #fff; font-size: 0.88rem; font-weight: 600; cursor: pointer;
    color: var(--text-mid); transition: all var(--transition);
}
.currency-btn:hover { border-color: var(--primary); color: var(--primary); }
.currency-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }

.payment-option { cursor: pointer; }
.payment-option input[type=radio] { display: none; }
.payment-option-inner {
    display: flex; align-items: center; gap: 0.75rem;
    border: 2px solid var(--border); border-radius: var(--radius);
    padding: 1rem 1.25rem; background: #fff; transition: all var(--transition);
}
.payment-option-inner strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.payment-option-inner small { font-size: 0.78rem; color: var(--text-light); }
.payment-option-inner svg { color: var(--text-light); flex-shrink: 0; }
.payment-option input[type=radio]:checked + .payment-option-inner {
    border-color: var(--primary); background: var(--primary-light);
}
.payment-option input[type=radio]:checked + .payment-option-inner svg { color: var(--primary); }

.btn-green  { background: var(--green);  color: #fff; }
.btn-green:hover  { background: var(--green-dark);  transform: translateY(-1px); }
.btn-teal   { background: var(--teal);   color: #fff; }
.btn-teal:hover   { background: #067a97; transform: translateY(-1px); }
.btn-outline-blue {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.btn-outline-blue:hover { background: var(--primary); color: #fff; }

/* ============================================================
   SECTION TEAL
   ============================================================ */
.section-teal {
    background: var(--teal-light);
    border-top: 1px solid rgba(8,145,178,0.15);
    border-bottom: 1px solid rgba(8,145,178,0.15);
}
.section-teal .label { background: rgba(8,145,178,0.12); color: var(--teal); }

/* ============================================================
   IMPACT NUMBERS BAND (colored)
   ============================================================ */
.impact-band {
    background: linear-gradient(135deg, var(--primary) 0%, #1a6dc9 100%);
    padding: 50px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.impact-band::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* ENHANCED NAVBAR ACTIVE STATE — see earlier .nav-link.active rule */

/* Social link colored hover */
.social-link.fb:hover  { background: #1877f2; }
.social-link.ig:hover  { background: #e4405f; }
.social-link.yt:hover  { background: #ff0000; }
.social-link.li:hover  { background: #0a66c2; }
.social-link.tk:hover  { background: #010101; }
.social-link.wa:hover  { background: #25d366; }

/* ============================================================
   CARD IMAGE OVERLAY (gallery / media)
   ============================================================ */
.img-overlay-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.img-overlay-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}
.img-overlay-wrap:hover img { transform: scale(1.05); }
.img-overlay-wrap .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,30,80,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.img-overlay-wrap:hover .overlay { opacity: 1; }
.img-overlay-wrap .overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .photo-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
    .split-photo-text { grid-template-columns: 1fr; }
    .photo-bg-section { padding: 70px 0; }
}

/* ============================================================
   PROFESSIONAL POLISH — Section Backgrounds & Typography
   ============================================================ */

/* Subtle accent band for alternating sections */
.section-accent {
    background: linear-gradient(160deg, var(--primary-light) 0%, #f0f6ff 100%);
    border-top: 1px solid rgba(0,85,165,0.06);
    border-bottom: 1px solid rgba(0,85,165,0.06);
}
.section-warm {
    background: linear-gradient(160deg, #fff8f5 0%, #fff3ee 100%);
    border-top: 1px solid rgba(232,80,26,0.06);
    border-bottom: 1px solid rgba(232,80,26,0.06);
}
.section-teal-soft {
    background: linear-gradient(160deg, var(--teal-light) 0%, #e8f8fc 100%);
}

/* Refined typography hierarchy */
.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-weight: 400;
}
.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

/* Directional shadows (not flat on all sides) */
.shadow-card    { box-shadow: 0 2px 4px rgba(0,0,0,0.03), 0 8px 24px rgba(0,30,80,0.08); }
.shadow-raised  { box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 20px 48px rgba(0,30,80,0.12); }
.shadow-float   { box-shadow: 0 8px 12px rgba(0,0,0,0.05), 0 32px 64px rgba(0,30,80,0.16); }

/* Organic divider (wavy separator) */
.divider-wave {
    height: 40px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: -20px;
    z-index: 2;
}

/* Highlight chip (inline accent badge) */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.chip-primary { background: var(--primary-light); color: var(--primary); }
.chip-accent  { background: rgba(232,80,26,0.1);  color: var(--accent); }
.chip-green   { background: var(--green-light);   color: var(--green-dark); }

/* Pull-quote style */
.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.7;
    position: relative;
}
.pull-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

/* Tag pill (smaller than chip, for categorization) */
.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--bg-light);
    color: var(--text-mid);
    border: 1px solid var(--border);
}

/* Smooth reveal animation for page-header text */
.page-header .container { position: relative; z-index: 1; }

@media (max-width: 900px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 1rem;
        gap: 0.75rem;
    }
    .newsletter-form input {
        padding: 0.65rem 0.5rem;
        color: #fff;
    }
    .newsletter-form button { border-radius: var(--radius); }

    /* Stats separators — hide on small grid */
    .stat-item:not(:last-child)::after { display: none; }
    .stats-grid { gap: 1.5rem; }
    .stat-item { padding: 0.5rem 1rem; }
}

/* Page-header responsive padding */
@media (max-width: 480px) {
    .page-header { padding: 3rem 0 2.5rem; }
    .newsletter-form { padding: 0.75rem; }
}

/* ============================================================
   PARTNER SCROLLING CAROUSEL
   ============================================================ */
.partners-carousel-track-wrap {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}
.partners-carousel-track-wrap::before,
.partners-carousel-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.partners-carousel-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.partners-carousel-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.partners-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollPartners 28s linear infinite;
}
.partners-carousel-track:hover { animation-play-state: paused; }
@keyframes scrollPartners {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 80px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}
.partner-logo-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,85,165,0.1); }
.partner-logo-item img { max-width: 120px; max-height: 55px; object-fit: contain; filter: grayscale(0.3); transition: filter 0.25s; }
.partner-logo-item:hover img { filter: grayscale(0); }
.partner-logo-item span { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9000;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 480px) {
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}
