/* ==========================================================================
   Zimbabwe Works — Main Stylesheet
   ========================================================================== */

/* --- Variables --- */
:root {
    --color-primary:   #F37021;
    --color-green:     #3F6653;
    --color-navy:      #002F5C;
    --color-bg:        #F8F9FA;
    --color-white:     #FFFFFF;
    --color-dark:      #191C1D;
    --color-text:      #4A5568;
    --color-border:    #E2E8F0;
    --color-light-orange: rgba(243,112,33,0.08);
    --color-light-navy:   rgba(0,47,92,0.06);

    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-full: 50px;

    --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.09);
    --shadow-lg:    0 16px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.14);

    --transition: 0.3s ease;
    --transition-fast: 0.18s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-dark); background: var(--color-bg); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--color-primary); transition: color var(--transition-fast); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--color-navy); line-height: 1.2; margin-bottom: 0.75rem; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--color-text); margin-bottom: 1rem; }

/* --- Container --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Section base --- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-bg-white { background: var(--color-white); }
.section-bg-light { background: var(--color-bg); }
.section-bg-navy  { background: var(--color-navy); }
.section-bg-green { background: var(--color-green); }
.section-bg-navy h1, .section-bg-navy h2, .section-bg-navy h3,
.section-bg-navy p { color: var(--color-white); }
.section-bg-green h2, .section-bg-green h3,
.section-bg-green p { color: var(--color-white); }

/* Section label (small tag above headings) */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}
.section-label-white { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; max-width: 780px; margin: 0 auto 3.5rem; }
.section-header p { font-size: 1.1rem; }

/* --- Grid helpers --- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-partner-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* --- Text utilities --- */
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-navy { color: var(--color-navy) !important; }

/* ==========================================================================
   Scroll Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left  { opacity:0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity:0; transform: translateX(28px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active, .reveal-right.active { opacity:1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn i { font-size: 0.9em; }
.btn:hover { transform: translateY(-2px); }

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 47, 92, 0.25);
}

.btn-primary, .btn-donate {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(243,112,33,0.22);
}
.btn-primary:hover, .btn-donate:hover {
    background: #d45f15;
    border-color: #d45f15;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(243,112,33,0.38);
}
.btn-primary:focus, .btn-donate:focus {
    box-shadow: 0 0 0 3px rgba(243,112,33,0.35);
}

.btn-secondary {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}
.btn-secondary:hover {
    background: #001e3d;
    border-color: #001e3d;
    color: var(--color-white);
}

.btn-navy {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}
.btn-navy:hover {
    background: #001e3d;
    border-color: #001e3d;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0,47,92,0.3);
}

.btn-green {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}
.btn-green:hover {
    background: #2e4d3e;
    border-color: #2e4d3e;
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-outline-navy {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.btn-outline-navy:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}
.btn-light:hover {
    background: var(--color-bg);
    color: var(--color-navy);
    border-color: var(--color-bg);
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    transition: gap var(--transition-fast), color var(--transition-fast);
    cursor: pointer;
}
.btn-link-arrow:hover {
    gap: 0.7rem;
    color: var(--color-navy);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Pill Badges */
.pill-badge {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}
.badge-volunteer   { background: var(--color-green); color: var(--color-white); }
.badge-partner     { background: var(--color-navy); color: var(--color-white); }
.badge-donate      { background: var(--color-primary); color: var(--color-white); }
.badge-youth       { background: var(--color-green); color: var(--color-white); }
.badge-programme   { background: var(--color-primary); color: var(--color-white); }
.badge-impact      { background: var(--color-navy); color: var(--color-white); }
.badge-gallery     { background: var(--color-green); color: var(--color-white); }
.badge-community   { background: var(--color-navy); color: var(--color-white); }
.badge-training    { background: var(--color-primary); color: var(--color-white); }
.badge-partnership { background: var(--color-green); color: var(--color-white); }

/* ==========================================================================
   TOP CONTACT BAR
   ========================================================================== */
.top-bar {
    background: var(--color-navy);
    padding: 0.45rem 0;
    font-size: 0.82rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.top-bar-contact { display: flex; gap: 1.25rem; align-items: center; }
.top-bar-contact a {
    color: rgba(255,255,255,0.82);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast);
}
.top-bar-contact a:hover { color: var(--color-primary); }
.top-bar-contact i { font-size: 0.8rem; color: var(--color-primary); }

.top-bar-social { display: flex; gap: 0.6rem; }
.top-bar-social a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}
.top-bar-social a:hover { background: var(--color-primary); color: var(--color-white); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1.5rem;
}
/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.brand img {
    height: 46px;
    width: auto;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    white-space: nowrap;
}
.brand-name span { display: block; font-size: 0.65rem; font-weight: 500; color: var(--color-primary); letter-spacing: 0.08em; text-transform: uppercase; }

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    transition: width var(--transition-fast);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

/* Header CTAs on Desktop */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

/* Stacked Nav Menu CTAs (Mobile/Tablet) */
.nav-menu-cta {
    display: none; /* Hidden on desktop */
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-navy);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}
.hamburger:hover { color: var(--color-primary); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: var(--color-bg);
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}
.hero-content h1 { color: var(--color-navy); margin-bottom: 1.1rem; }
.hero-content h1 span { color: var(--color-primary); }
.hero-content > p { font-size: 1.15rem; max-width: 560px; margin-bottom: 1.8rem; }
.hero-actions { margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}
.badge i { color: var(--color-primary); font-size: 0.75em; }
.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%; height: 540px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Page hero (inner pages) */
.page-hero {
    background: var(--color-navy);
    padding: 4rem 0 2.5rem;
    text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(243,112,33,0.25);
}
.card-icon {
    width: 56px; height: 56px;
    background: var(--color-light-orange);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.card-content { flex: 1; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-top: 1rem;
    transition: gap var(--transition-fast);
}
.card-link:hover { gap: 0.7rem; color: var(--color-navy); }
.card-link i { transition: transform var(--transition-fast); }
.card-link:hover i { transform: translateX(3px); }

/* Programme cards */
.prog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.prog-card-header {
    padding: 1.5rem 1.75rem 1rem;
    border-bottom: 3px solid var(--color-primary);
}
.prog-card-header h3 { margin-bottom: 0.25rem; font-size: 1.4rem; }
.prog-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}
.prog-card-body { padding: 1.25rem 1.75rem 1.5rem; }
.prog-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.prog-meta-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--color-text); }
.prog-meta-item i { color: var(--color-primary); margin-top: 2px; font-size: 0.85rem; width: 14px; flex-shrink: 0; }
.prog-meta-item strong { color: var(--color-navy); }

/* ==========================================================================
   STATS / IMPACT
   ========================================================================== */
.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-primary);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Process steps (Train, Mentor...) */
.process-steps { display: flex; gap: 0; flex-wrap: nowrap; justify-content: center; }
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 1.5rem 1rem;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40%;
    background: var(--color-border);
}
.process-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--color-light-orange);
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.process-step h4 { margin-bottom: 0.25rem; font-size: 0.95rem; color: var(--color-navy); }
.process-step p  { font-size: 0.8rem; color: var(--color-text); margin: 0; }

/* ==========================================================================
   CHALLENGE SECTION (Dark navy cards)
   ========================================================================== */
.challenge-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    transition: background var(--transition);
}
.challenge-card:hover { background: rgba(255,255,255,0.1); }
.challenge-icon { color: var(--color-primary); font-size: 2.2rem; margin-bottom: 0.85rem; }
.challenge-card h4 { color: var(--color-white); margin-bottom: 0.5rem; }
.challenge-card p  { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   PILLAR CARDS (8 pillars)
   ========================================================================== */
.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243,112,33,0.3);
}
.pillar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 10px;
    background: var(--color-light-orange);
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.pillar-text h4 { margin-bottom: 0.25rem; font-size: 0.95rem; color: var(--color-navy); }
.pillar-text p  { font-size: 0.8rem; color: var(--color-text); margin: 0; line-height: 1.5; }

/* ==========================================================================
   HEXAGON ICON BADGES
   ========================================================================== */
.hex-icon {
    position: relative;
    width: 64px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Outer/background layer for depth */
.hex-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.15;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -2;
    transition: transform 0.4s ease;
}

/* Inner hexagon layer */
.hex-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84%;
    height: 84%;
    background: currentColor;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    transition: transform 0.4s ease, background 0.4s ease;
}

/* Icon styling */
.hex-icon i, .hex-icon svg {
    color: var(--color-white);
    font-size: 1.5rem;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Color modifiers */
.hex-icon-orange { color: var(--color-primary); }
.hex-icon-navy   { color: var(--color-navy); }
.hex-icon-green  { color: var(--color-green); }
.hex-icon-gold   { color: #F2C94C; }
.hex-icon-purple { color: #C84DD6; }

/* Hover interactions */
.pillar-card:hover .hex-icon {
    transform: translateY(-5px) rotate(4deg);
}
.pillar-card:hover .hex-icon::after {
    transform: translate(-50%, -50%) scale(1.05);
}
.pillar-card:hover .hex-icon i,
.pillar-card:hover .hex-icon svg {
    transform: scale(1.15);
}

/* Floating animation */
@keyframes hexFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: hexFloat 4s ease-in-out infinite;
}

/* Staggered animation delays */
.pillar-card:nth-child(1) .floating { animation-delay: 0s; }
.pillar-card:nth-child(2) .floating { animation-delay: 0.5s; }
.pillar-card:nth-child(3) .floating { animation-delay: 1s; }
.pillar-card:nth-child(4) .floating { animation-delay: 1.5s; }
.pillar-card:nth-child(5) .floating { animation-delay: 0.2s; }
.pillar-card:nth-child(6) .floating { animation-delay: 0.7s; }
.pillar-card:nth-child(7) .floating { animation-delay: 1.2s; }
.pillar-card:nth-child(8) .floating { animation-delay: 1.7s; }

/* Mobile scaling */
@media (max-width: 768px) {
    .hex-icon {
        width: 56px;
        height: 64px;
    }
    .hex-icon i, .hex-icon svg {
        font-size: 1.25rem;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hex-icon,
    .hex-icon::before,
    .hex-icon::after,
    .hex-icon i,
    .hex-icon svg,
    .floating {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   PARTNER CARDS
   ========================================================================== */
.partner-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.partner-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.partner-card h4 { color: var(--color-navy); margin-bottom: 0.25rem; }
.partner-card p  { font-size: 0.82rem; color: var(--color-text); margin: 0; }

/* Why partner cards */
.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-card i { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.75rem; display: block; }
.why-card h4 { color: var(--color-white); margin-bottom: 0.35rem; }
.why-card p  { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    background: var(--color-border);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,47,92,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--color-white); font-size: 0.88rem; font-weight: 600; }
.gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--color-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}
.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background var(--transition-fast);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--color-primary); }
.lightbox-close { top: -50px; right: 0; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }

/* Gallery preview strip */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery-preview-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
}
.gallery-preview-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-preview-item:hover img { transform: scale(1.06); }
.gallery-preview-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-preview-item.tall img { height: 100%; }

/* ==========================================================================
   EVERY CONTRIBUTION MATTERS CARDS (Join Us)
   ========================================================================== */
.contribution-section { background: var(--color-bg); }
.contribution-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.contribution-title { flex: 1; }
.contribution-accent {
    width: 4px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.contrib-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.contrib-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.contrib-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.contrib-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.contrib-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.contrib-card:hover .contrib-card-img img { transform: scale(1.06); }
.contrib-label {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    color: var(--color-white);
}
.label-volunteer { background: var(--color-green); }
.label-partner   { background: var(--color-navy); }
.label-donate    { background: var(--color-primary); }
.label-youth     { background: var(--color-green); }

.contrib-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contrib-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--color-navy); }
.contrib-card-body p  { font-size: 0.85rem; color: var(--color-text); margin-bottom: 0.85rem; flex: 1; }
.contrib-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-green);
    text-decoration: none;
    transition: gap var(--transition-fast);
    margin-top: auto;
}
.contrib-cta:hover { gap: 0.7rem; color: var(--color-primary); }
.contrib-cta i { transition: transform var(--transition-fast); }
.contrib-cta:hover i { transform: translateX(3px); }

/* Donate card special */
.donate-cta-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--color-primary); color: var(--color-white);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700; font-size: 0.85rem;
    transition: all var(--transition);
    margin-top: auto;
}
.donate-cta-btn:hover { background: #d45f15; color: var(--color-white); transform: translateY(-2px); }

/* Progress bar */
.progress-wrap { margin-bottom: 1rem; }
.progress-label { font-size: 0.78rem; color: var(--color-text); margin-bottom: 0.35rem; font-weight: 600; }
.progress-bar { height: 8px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #f5a055);
    border-radius: var(--radius-full);
    transition: width 1.2s ease;
}

/* ==========================================================================
   DONATION CTA SECTION
   ========================================================================== */
.donate-cta-section {
    background: linear-gradient(135deg, var(--color-green) 0%, #2e4d3e 100%);
    padding: 4rem 0;
    text-align: center;
}
.donate-cta-section h2, .donate-cta-section p { color: var(--color-white); }
.donate-cta-section p { max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; opacity: 0.92; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group { margin-bottom: 1.15rem; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}
.form-label .required { color: var(--color-primary); margin-left: 2px; }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(243,112,33,0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note { font-size: 0.8rem; color: var(--color-text); margin-top: 0.5rem; }
.form-success, .form-error {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
    margin-top: 0.75rem;
}
.form-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ==========================================================================
   CONTACT INFO CARDS
   ========================================================================== */
.contact-info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--color-light-orange);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.contact-info-content strong { display: block; color: var(--color-navy); margin-bottom: 0.2rem; }
.contact-info-content a, .contact-info-content span { color: var(--color-text); font-size: 0.9rem; }
.contact-info-content a:hover { color: var(--color-primary); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.78);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 48px; margin-bottom: 0.75rem; }
.footer-brand .brand-name { color: var(--color-white); font-size: 1.1rem; margin-bottom: 0.6rem; display: block; font-family: var(--font-heading); font-weight: 800; }
.footer-brand p  { font-size: 0.875rem; opacity: 0.8; line-height: 1.6; }
.footer-brand a  { display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-heading {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover { color: var(--color-primary); padding-left: 4px; }
.footer-links i { font-size: 0.7rem; color: var(--color-primary); }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
}
.footer-contact-list i { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.72); }
.footer-contact-list a:hover { color: var(--color-primary); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }

/* Newsletter form in footer */
.footer-newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.footer-newsletter-form input {
    flex: 1;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--color-white);
    font-size: 0.85rem;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter-form input:focus { outline: none; border-color: var(--color-primary); }
.footer-newsletter-form button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
}
.footer-newsletter-form button:hover { background: #d45f15; }

.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--color-primary); }

.footer-credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.6;
}
.footer-divider {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.2);
}
.webfusion-credit {
    color: rgba(245, 130, 32, 0.78) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.webfusion-credit:hover {
    color: rgba(245, 130, 32, 1) !important;
    text-decoration: underline !important;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */
.cta-section {
    padding: 4.5rem 0;
    text-align: center;
}
.cta-navy { background: var(--color-navy); }
.cta-navy h2, .cta-navy p { color: var(--color-white); }
.cta-navy p { opacity: 0.88; max-width: 640px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ==========================================================================
   MISC UTILITIES
   ========================================================================== */
.divider { width: 48px; height: 4px; background: var(--color-primary); border-radius: 2px; margin: 0.5rem 0 1.25rem; }
.divider-center { margin: 0.5rem auto 1.25rem; }
.gap-sm  { gap: 0.75rem; }
.gap-md  { gap: 1.5rem; }
.gap-lg  { gap: 2.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.fw-700 { font-weight: 700; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.fa-spin { animation: spin 1s linear infinite; }

/* Sticky header offset for anchor scrolling */
:target { scroll-margin-top: 100px; }

/* ==========================================================================
   PARTNER LOGOS
   ========================================================================== */
.partner-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    background: #F6F8F5;
}
.partner-logo {
    max-width: 150px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.partner-card.has-logo {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   LOGO MARQUEE (Infinite partner/funder credibility strip)
   ========================================================================== */

/* Keyframe: scroll the doubled track exactly half its width so the loop is invisible */
@keyframes logoMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Section override — reduce vertical padding so it feels like a credibility strip */
.partner-marquee-section {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
}
.partner-marquee-section .section-header {
    margin-bottom: 2.25rem;
}

/* Outer clip + fade edges */
.logo-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Soft fade masks on left and right — graceful fallback if not supported */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    /* Safari prefix */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Flex track — holds both sets of logos side-by-side */
.logo-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: logoMarquee 34s linear infinite;
    will-change: transform;
    padding: 0.5rem 0;
}

/* Pause on hover */
.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

/* Individual logo card */
.logo-marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.5rem 0.85rem;
    flex-shrink: 0;
    width: 192px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.logo-marquee-item:hover {
    border-color: rgba(243,112,33,0.3);
    box-shadow: var(--shadow-md);
}

/* Logo image holder — fixed height, logo fills via object-fit */
.logo-marquee-img-wrap {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-marquee-img {
    max-width: 140px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Partner name label below logo */
.logo-marquee-name {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-navy);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
    white-space: normal;
    max-width: 160px;
}

/* ==========================================================================
   FUNDING HISTORY TABLE
   ========================================================================== */
.funding-history-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.funding-history-card:hover {
    box-shadow: var(--shadow-md);
}
.funding-history-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.funding-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.funding-history-table th,
.funding-history-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.funding-history-table thead {
    background: var(--color-navy);
}
.funding-history-table th {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border-bottom: none;
}
.funding-history-table tbody tr {
    transition: background var(--transition-fast);
}
.funding-history-table tbody tr:nth-child(odd) {
    background: var(--color-white);
}
.funding-history-table tbody tr:nth-child(even) {
    background: #F6F8F5;
}
.funding-history-table tbody tr:hover {
    background: rgba(245, 130, 32, 0.05);
}
.funding-history-table tbody tr:last-child td {
    border-bottom: none;
}
.funding-history-table td {
    color: var(--color-text);
    font-size: 0.95rem;
    vertical-align: middle;
}
.funding-history-table td:first-child {
    font-weight: 600;
    color: var(--color-navy);
}
.funding-history-table td.investment-value {
    color: var(--color-primary);
    font-size: 1.05rem;
}
.funding-history-table td.investment-value strong {
    font-weight: 700;
    color: var(--color-primary);
}

/* ==========================================================================
   BIO EXPANSION (Read More / Show Less)
   ========================================================================== */
.bio-preview {
    margin-bottom: 0.75rem;
}
.bio-preview p {
    margin-bottom: 0;
}
.bio-more {
    transition: height 0.3s ease;
    overflow: hidden;
    height: 0;
}
.bio-more.is-open {
    height: auto;
}
.bio-more p:first-child {
    margin-top: 0.75rem;
}
@media (prefers-reduced-motion: reduce) {
    .bio-more {
        transition: none;
    }
}
.bio-toggle {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--transition-fast);
    margin-top: 0.5rem;
}
.bio-toggle:hover {
    color: var(--color-navy);
}
.bio-toggle:focus-visible {
    outline: 2px solid var(--color-navy);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   TEAM CARDS
   ========================================================================== */
.team-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom: 3px solid var(--color-primary);
}
.team-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-light-navy);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px solid var(--color-border);
}
.team-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}
.team-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   TEAM PHOTO (real photo version — matches .team-photo-placeholder dimensions)
   ========================================================================== */
.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==========================================================================
   LEADER PHOTO (Pamela Chiromo — leadership section portrait)
   ========================================================================== */
.leader-photo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-border);
    aspect-ratio: 3 / 4;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==========================================================================
   ACCORDION (Vision, Mission, Values)
   ========================================================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.accordion-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition);
}
.accordion-item:hover {
    border-color: rgba(243,112,33,0.3);
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: var(--color-white);
    border: none;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.accordion-header:hover {
    background: var(--color-bg);
}
.accordion-header.active {
    background: var(--color-light-orange);
    color: var(--color-primary);
}
.accordion-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--color-white);
}
.accordion-content {
    padding: 0 1.5rem 1.5rem;
}
.accordion-content p:last-child {
    margin-bottom: 0;
}
.accordion-content ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}
.accordion-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}
.accordion-content ul li:last-child {
    margin-bottom: 0;
}
.accordion-content ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}
