/* ============================================================
   ZANGO FOUNDATION — Main Stylesheet
   Fonts: Bricolage Grotesque (headings) + Nunito (body)
   Colors: #249fda (blue) · #b7d434 (green) · #0d1f2d (dark)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
    --blue:       #249fda;
    --blue-dark:  #1a8bc4;
    --green:      #b7d434;
    --green-dark: #a5bf2e;
    --dark:       #0d1f2d;
    --dark-alt:   #152d42;
    --text:       #1e2d3d;
    --text-light: #5a6e80;
    --bg:         #f6fbfe;
    --bg-alt:     #eef8fd;
    --white:      #ffffff;
    --green-light:#eef7c8;
    --blue-light: #ddf0fb;
    --radius:     16px;
    --shadow:     0 2px 20px rgba(36,159,218,0.10);
    --shadow-lg:  0 10px 48px rgba(13,31,45,0.14);
    --transition: 0.28s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { line-height: 1.78; color: var(--text-light); }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}
.section-title   { margin-bottom: 14px; }
.section-sub     { font-size: 1.05rem; max-width: 580px; margin-bottom: 52px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,159,218,.32); }

.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(183,212,52,.32); }

.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--green); color: var(--dark); }

/* ── HEADER ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 3px solid var(--green);
    transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.28); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo img { height: 50px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
    display: block;
    padding: 8px 13px;
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(36,159,218,.18); }
.nav-links a.active { color: var(--green); }

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--green) !important; color: var(--dark) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; display: block; transition: all var(--transition); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 70px; min-height: 100vh; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -80px; bottom: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(183,212,52,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero > .container > p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 0.84rem; }
.breadcrumb span { color: rgba(255,255,255,.45); }
.breadcrumb a { color: var(--green); font-weight: 700; }

/* ── IMAGE PLACEHOLDER BLOCKS ── */
.img-block {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}
.ph-blue   { background: linear-gradient(135deg, #ddf0fb 0%, rgba(36,159,218,.18) 100%); }
.ph-green  { background: linear-gradient(135deg, #eef7c8 0%, rgba(183,212,52,.2) 100%); }
.ph-amber  { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.ph-cyan   { background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%); }
.ph-purple { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%); }

/* ── STATS BAR ── */
.stats-bar { background: #fff; padding: 36px 0; box-shadow: var(--shadow-lg); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { text-align: center; padding: 12px 20px; border-right: 1px solid #e6eef4; }
.stat-cell:last-child { border-right: none; }
.stat-num {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--blue);
}
.stat-lbl { font-size: 0.83rem; color: var(--text-light); font-weight: 600; }

/* ── MISSION / STORY GRIDS ── */
.mission-grid,
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.img-frame { position: relative; border-radius: var(--radius); overflow: visible; }

.float-badge {
    position: absolute;
    bottom: -22px; right: -22px;
    background: var(--green);
    color: var(--dark);
    border-radius: var(--radius);
    padding: 18px 22px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    line-height: 1.3;
}
.float-badge small { display: block; font-size: 0.74rem; font-weight: 600; opacity: .65; }

.text-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ── THEMATIC AREAS STRIP ── */
.areas-strip { background: var(--dark); padding: 88px 0; }
.areas-strip .section-label { color: var(--green); }
.areas-strip .section-title { color: #fff; }
.areas-strip .section-sub   { color: rgba(255,255,255,.55); }

.areas-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.area-tile {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 26px 18px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
}
.area-tile:hover { background: rgba(36,159,218,.16); border-color: var(--blue); transform: translateY(-4px); }
.area-tile .icon { font-size: 2.1rem; display: block; margin-bottom: 12px; }
.area-tile h4 { color: #fff; font-size: 0.87rem; line-height: 1.45; }

/* ── PROJECT CARDS ── */
.proj-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.proj-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.proj-thumb { width: 100%; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.proj-body  { padding: 22px; }
.proj-body h3 { margin-bottom: 8px; }
.proj-body p  { font-size: 0.88rem; }

/* ── TAG CHIPS ── */
.tag-chip {
    display: inline-block;
    font-size: 0.71rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: .05em;
}
.tag-education   { background: var(--blue-light); color: #1268a0; }
.tag-health      { background: #fef3c7; color: #92400e; }
.tag-environment { background: var(--green-light); color: #526400; }
.tag-wash        { background: #cffafe; color: #0e7490; }
.tag-youth       { background: #f3e8ff; color: #6d28d9; }

/* ── CTA STRIP ── */
.cta-strip { background: linear-gradient(135deg, var(--blue) 0%, #1878aa 100%); padding: 76px 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark); padding: 88px 0; }

/* ── MISSION / VISION TILES ── */
.mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-tile {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 38px;
}
.mv-tile h3 { font-size: 0.78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.mv-tile p  { color: rgba(255,255,255,.78); font-size: 1.02rem; }

/* ── VALUES ── */
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values-row-3 { grid-template-columns: repeat(3, 1fr); }
.value-tile {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 26px;
    border-left: 4px solid var(--blue);
    box-shadow: var(--shadow);
}
.value-tile:nth-child(2) { border-left-color: var(--green); }
.value-tile .vi { font-size: 1.9rem; margin-bottom: 14px; }
.value-tile h3  { margin-bottom: 10px; }

/* ── PARTNERS ── */
.partner-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.partner-chip {
    background: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
}

/* ── THEMATIC AREA CARDS ── */
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.theme-grid .theme-card:first-child { grid-column: span 2; }

.theme-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.theme-bar { width: 7px; flex-shrink: 0; background: var(--blue); }
.theme-card:nth-child(2) .theme-bar { background: var(--green); }
.theme-card:nth-child(3) .theme-bar { background: #f59e0b; }
.theme-card:nth-child(4) .theme-bar { background: #06b6d4; }
.theme-card:nth-child(5) .theme-bar { background: var(--green); }

.theme-body { padding: 32px; flex: 1; }
.theme-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.theme-body p { margin-bottom: 14px; }

.theme-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.theme-card:nth-child(2) .theme-icon { background: var(--green-light); }
.theme-card:nth-child(3) .theme-icon { background: #fef3c7; }
.theme-card:nth-child(4) .theme-icon { background: #cffafe; }
.theme-card:nth-child(5) .theme-icon { background: var(--green-light); }

.sdg-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.76rem; font-weight: 700; color: var(--blue);
    background: var(--blue-light); padding: 4px 12px; border-radius: 50px;
}

/* ── PROJECTS PAGE ── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.f-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #d1dfe8;
    background: #fff;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
    transition: all var(--transition);
}
.f-btn:hover, .f-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.all-proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.full-proj-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.full-proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fp-thumb { width: 100%; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.fp-body  { padding: 22px; }
.fp-body h3 { margin-bottom: 8px; font-size: 1.02rem; }
.fp-body p  { font-size: 0.86rem; margin-bottom: 14px; }
.fp-stat    { font-weight: 700; color: var(--blue); font-size: 0.86rem; }

/* ── GET INVOLVED TABS ── */
.tabs-switch { display: flex; border-radius: 12px; overflow: hidden; border: 2px solid var(--blue); width: fit-content; margin-bottom: 48px; }
.tab-btn {
    padding: 11px 32px;
    background: #fff;
    color: var(--blue);
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: 0.93rem;
    cursor: pointer; border: none;
    transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--blue); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.vol-layout, .donate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ── VOLUNTEER ROLES ── */
.roles-stack { display: grid; gap: 14px; }
.role-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex; align-items: flex-start; gap: 14px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--blue);
}
.role-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.role-card h4 { margin-bottom: 4px; font-size: 0.97rem; }
.role-card p  { font-size: 0.83rem; }

/* ── PARTNER TYPES ── */
.partner-types-stack { display: grid; gap: 14px; }
.pt-card { background: #fff; border-radius: 12px; padding: 22px; box-shadow: var(--shadow); }
.pt-card h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; font-size: 1rem; }
.pt-card p  { font-size: 0.85rem; }

/* ── FORMS ── */
.form-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 8px; }
.form-card > p { font-size: 0.88rem; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid #d8e8f0;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    transition: border-color var(--transition);
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; align-items: start; }

.contact-info { background: var(--dark); border-radius: var(--radius); padding: 40px; }
.contact-info h3  { color: #fff; margin-bottom: 8px; }
.contact-info > p { color: rgba(255,255,255,.55); margin-bottom: 32px; font-size: 0.9rem; }

.c-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(36,159,218,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.c-text strong { display: block; color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.c-text span   { color: rgba(255,255,255,.65); font-size: 0.92rem; }

.social-row { display: flex; gap: 10px; margin-top: 30px; }
.s-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.88rem; font-weight: 700;
    cursor: pointer; transition: all var(--transition);
    text-decoration: none;
}
.s-btn:hover { background: var(--blue); }

.map-ph {
    width: 100%; height: 280px;
    background: var(--blue-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
    margin-top: 48px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--blue);
}

/* ── FOOTER ── */
footer { background: var(--dark); padding: 64px 0 32px; }

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p   { color: rgba(255,255,255,.45); font-size: 0.88rem; line-height: 1.7; }

.f-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 9px; }
.f-col ul a { color: rgba(255,255,255,.45); font-size: 0.88rem; transition: color var(--transition); }
.f-col ul a:hover { color: var(--green); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 26px;
    font-size: 0.83rem;
    color: rgba(255,255,255,.3);
}
.footer-bottom em { color: var(--green); font-style: normal; }

/* ── THANK YOU PAGE ── */
.ty-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}
.ty-card {
    background: #fff;
    border-radius: 24px;
    padding: 64px 56px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.ty-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}
.ty-card::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(183,212,52,.1) 0%, transparent 70%);
    border-radius: 50%;
}
.ty-icon {
    width: 88px; height: 88px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.6rem;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.ty-card h1 { color: var(--dark); margin-bottom: 14px; }
.ty-card p  { margin-bottom: 40px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .areas-row  { grid-template-columns: repeat(3, 1fr); }
    .stats-row  { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--dark); padding: 20px; gap: 4px;
        border-top: 2px solid var(--green);
        z-index: 999;
    }

    .mission-grid, .story-grid, .mv-row,
    .contact-layout, .vol-layout, .donate-layout,
    .all-proj-grid, .proj-row, .values-row, .values-row-3 { grid-template-columns: 1fr; }

    .theme-grid { grid-template-columns: 1fr; }
    .theme-grid .theme-card:first-child { grid-column: span 1; }

    .areas-row  { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .float-badge { position: static; margin-top: 16px; display: inline-block; }
    .form-2col  { grid-template-columns: 1fr; }
    .ty-card    { padding: 48px 28px; }
}

@media (max-width: 500px) {
    .stats-row  { grid-template-columns: 1fr 1fr; }
    .hero-btns  { flex-direction: column; }
    .btn-row    { flex-direction: column; align-items: center; }
    .btn-row .btn { width: 100%; justify-content: center; }
}

/* ── DROPDOWN NAV ── */
.nav-links .has-dropdown { position: relative; }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(13,31,45,.18);
    min-width: 240px;
    padding: 18px 10px 10px;
    z-index: 999;
    border-top: 3px solid var(--green);
}

/* invisible bridge fills gap between nav link bottom and dropdown top */
.has-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0; right: 0;
    height: 16px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text) !important;
    font-size: 0.86rem !important;
    font-weight: 600;
    background: none !important;
    transition: background var(--transition);
    white-space: nowrap;
}
.dropdown a:hover { background: var(--bg) !important; color: var(--blue) !important; }
.dropdown a .d-icon { font-size: 1rem; flex-shrink: 0; }

/* Arrow indicator */
.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ── THEMATIC SUBPAGE ── */
.theme-detail-hero {
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.theme-detail-hero::after {
    content: '';
    position: absolute;
    right: -80px; bottom: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
}
.theme-detail-hero h1 { color: #fff; margin-bottom: 12px; }
.theme-detail-hero > .container > p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; }

/* Color variants per theme */
.hero-education  { background: linear-gradient(135deg, #0d1f2d 0%, #0e3a5a 100%); }
.hero-education::after  { background: radial-gradient(circle, rgba(36,159,218,.15) 0%, transparent 70%); }

.hero-environment { background: linear-gradient(135deg, #0d1f2d 0%, #1a3010 100%); }
.hero-environment::after { background: radial-gradient(circle, rgba(183,212,52,.15) 0%, transparent 70%); }

.hero-nutrition  { background: linear-gradient(135deg, #0d1f2d 0%, #3d2200 100%); }
.hero-nutrition::after  { background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%); }

.hero-wash       { background: linear-gradient(135deg, #0d1f2d 0%, #003d40 100%); }
.hero-wash::after       { background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%); }

.hero-youth      { background: linear-gradient(135deg, #0d1f2d 0%, #2d1050 100%); }
.hero-youth::after      { background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 70%); }

/* Theme accent bar at top */
.theme-accent-bar { height: 5px; width: 100%; }
.accent-blue   { background: linear-gradient(90deg, var(--blue), var(--green)); }
.accent-green  { background: linear-gradient(90deg, var(--green), #84cc16); }
.accent-amber  { background: linear-gradient(90deg, #f59e0b, #f97316); }
.accent-cyan   { background: linear-gradient(90deg, #06b6d4, #0ea5e9); }
.accent-purple { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }

/* Impact stat cards */
.impact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.impact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}
.impact-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    margin-bottom: 6px;
}
.impact-card.green .impact-num { color: #526400; }
.impact-card.amber .impact-num { color: #92400e; }
.impact-card.cyan  .impact-num { color: #0e7490; }
.impact-card.purple .impact-num { color: #6d28d9; }
.impact-lbl { font-size: 0.84rem; color: var(--text-light); font-weight: 600; }

/* Programs grid */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.program-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
    transition: all var(--transition);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card.green  { border-top-color: var(--green); }
.program-card.amber  { border-top-color: #f59e0b; }
.program-card.cyan   { border-top-color: #06b6d4; }
.program-card.purple { border-top-color: #8b5cf6; }

.program-card .pc-icon { font-size: 2rem; margin-bottom: 14px; }
.program-card h3 { margin-bottom: 10px; }

/* Story / quote block */
.story-block {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.story-block .img-block { border-radius: 12px; font-size: 4rem; }
.story-block blockquote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.55;
    border-left: 4px solid var(--green);
    padding-left: 24px;
    margin-bottom: 20px;
}
.story-block cite { color: rgba(255,255,255,.5); font-size: 0.86rem; font-style: normal; }

/* SDG section */
.sdg-section { background: var(--bg-alt); padding: 56px 0; }
.sdg-inner { display: flex; align-items: center; gap: 40px; }
.sdg-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--blue-light);
    border-radius: 14px;
    padding: 20px 28px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--blue);
    white-space: nowrap;
    flex-shrink: 0;
}
.sdg-badge-large .sdg-num {
    font-size: 2rem;
    font-weight: 800;
}
.sdg-inner p { font-size: 1rem; }

/* Other themes nav */
.other-themes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ot-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: all var(--transition);
    display: block;
}
.ot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ot-card .ot-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.ot-card span { font-size: 0.82rem; font-weight: 700; color: var(--text-light); display: block; }

@media (max-width: 768px) {
    .impact-row { grid-template-columns: 1fr 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .story-block { grid-template-columns: 1fr; padding: 32px; }
    .sdg-inner { flex-direction: column; align-items: flex-start; }
    .other-themes { grid-template-columns: repeat(2, 1fr); }
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--green);
        border-radius: 0 0 8px 8px;
        background: rgba(255,255,255,.06);
        padding: 4px 0 4px 12px;
        margin-top: 4px;
        display: none;
    }
    .dropdown.open { display: block; }
    .dropdown a { color: rgba(255,255,255,.75) !important; font-size: 0.84rem !important; padding: 8px 10px; }
    .dropdown a:hover { background: rgba(36,159,218,.18) !important; color: #fff !important; }
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown { display: none; }
    .has-dropdown .dropdown.open { display: block; }
}

/* ── VOLUNTEER PROFILES ── */
.vol-profiles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vol-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.vol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vol-avatar { position: relative; }

.vol-avatar-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.vol-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.vol-body { padding: 24px; }

.vol-body h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.vol-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.vol-body p { font-size: 0.88rem; margin-bottom: 18px; }

.vol-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .vol-profiles-row { grid-template-columns: 1fr; }
}

/* ── FONT AWESOME ICON SIZING ── */

/* Area tiles & other-themes */
.area-tile .icon i,
.ot-card .ot-icon i     { font-size: 1.8rem; color: rgba(255,255,255,.85); }
.ot-card .ot-icon i     { color: var(--blue); }

/* Dropdown nav */
.dropdown .d-icon i     { font-size: 0.9rem; color: var(--blue); }

/* Theme icons (thematic cards & subpage heroes) */
.theme-icon i           { font-size: 1.4rem; color: var(--blue); }
.theme-card:nth-child(2) .theme-icon i { color: #526400; }
.theme-card:nth-child(3) .theme-icon i { color: #92400e; }
.theme-card:nth-child(4) .theme-icon i { color: #0e7490; }
.theme-card:nth-child(5) .theme-icon i { color: #6d28d9; }

/* Img placeholder blocks */
.img-block i,
.fp-thumb i,
.proj-thumb i           { font-size: 3.5rem; color: var(--blue); opacity: .6; }
.ph-green i             { color: #526400; }
.ph-amber i             { color: #92400e; }
.ph-cyan  i             { color: #0e7490; }
.ph-purple i            { color: #6d28d9; }

/* Program cards */
.pc-icon i              { font-size: 1.8rem; color: var(--blue); }
.program-card.green .pc-icon i  { color: #526400; }
.program-card.amber .pc-icon i  { color: #92400e; }
.program-card.cyan  .pc-icon i  { color: #0e7490; }
.program-card.purple .pc-icon i { color: #6d28d9; }

/* Role cards */
.role-icon i            { font-size: 1.3rem; color: var(--blue); }

/* Values */
.vi i                   { font-size: 1.8rem; color: var(--blue); }
.value-tile:nth-child(2) .vi i { color: var(--green-dark); }

/* Contact icons */
.c-icon i               { font-size: 1rem; color: var(--blue); }

/* SDG badge */
.sdg-badge i            { font-size: 0.8rem; }
.sdg-badge-large i      { font-size: 1.6rem; }

/* Stat icon */
.fp-stat i              { color: var(--blue); }

/* Volunteer avatar */
.vol-avatar-img i       { font-size: 4rem; color: rgba(0,0,0,.25); }

/* Vol meta */
.vol-meta i             { color: var(--blue); margin-right: 3px; }

/* Partner chip icons */
.partner-chip i         { color: var(--blue); margin-right: 4px; }

/* Hero pill */
.hero-pill i            { font-size: 0.9rem; }

/* Map placeholder */
.map-ph i               { font-size: 2rem; color: var(--blue); }

/* Thank you icon */
.ty-icon i              { font-size: 2.4rem; color: #526400; }

/* pt-card heading icon */
.pt-card h4 i           { color: var(--blue); font-size: 1rem; margin-right: 4px; }

/* Nav cta arrow — keep btn arrow text as-is */

/* ── FOOTER SOCIAL ICONS ── */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.fs-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--transition);
}

.fs-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ── PARTNERS SCROLLING MARQUEE ── */
.partners-section {
    background: #fff;
    padding: 72px 0 0;
    overflow: hidden;
}

.partners-section .container {
    padding-bottom: 48px;
}

/* Fade edges */
.partner-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 8px 0 72px;
}

.partner-track-wrap::before,
.partner-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.partner-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.partner-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* The scrolling track */
.partner-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollPartners 28s linear infinite;
}

.partner-track:hover { animation-play-state: paused; }

@keyframes scrollPartners {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Individual partner cards */
.partner-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
    height: 110px;
    background: var(--bg);
    border: 1px solid #e4eef6;
    border-radius: var(--radius);
    padding: 0 24px;
    transition: all var(--transition);
    cursor: default;
    flex-shrink: 0;
}

.partner-logo-card:hover {
    background: var(--blue-light);
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.partner-logo-card i {
    font-size: 1.8rem;
    color: var(--blue);
    transition: color var(--transition);
}

.partner-logo-card:hover i { color: var(--blue-dark); }

.partner-logo-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.partner-logo-card:hover span { color: var(--text); }

@media (max-width: 768px) {
    .partner-track-wrap::before,
    .partner-track-wrap::after { width: 48px; }
    .partner-logo-card { min-width: 160px; height: 95px; }
    .partner-logo-card i { font-size: 1.5rem; }
}

/* ── 4-column values grid override ── */
.values-row-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Strategy accordion ── */
.strategy-card { cursor: pointer; }

/* ── Timeline dot center ── */
.yr-dot { margin: 0 auto; display: block; }

/* ── SRHR accent ── */
.accent-srhr { background: linear-gradient(90deg, #e11d48, #f43f5e); }
.hero-srhr { background: linear-gradient(135deg, #0d1f2d 0%, #3b0a1e 100%); }
.hero-srhr::after { background: radial-gradient(circle, rgba(225,29,72,.15) 0%, transparent 70%); }
.sdg-badge-srhr { background: #ffe4e6 !important; color: #e11d48 !important; }

@media (max-width: 1024px) {
    .values-row-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .values-row-4 { grid-template-columns: 1fr; }
}

/* ── THEMATIC CARD IMAGE (overview page) ── */
.theme-card-img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* ── APPROACH INTRO LAYOUT (subpages) ── */
.approach-intro {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 52px;
}
.approach-img {
    width: 100%;
    aspect-ratio: 4/4;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    flex-shrink: 0;
}

/* ── VOLUNTEER PAGE ── */
.vol-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border-bottom: 4px solid var(--blue);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.benefit-card:nth-child(2) { border-bottom-color: var(--green); }
.benefit-card:nth-child(3) { border-bottom-color: #f59e0b; }
.benefit-card:nth-child(4) { border-bottom-color: #8b5cf6; }
.benefit-card:nth-child(5) { border-bottom-color: #06b6d4; }
.benefit-card:nth-child(6) { border-bottom-color: #e11d48; }
.benefit-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    color: var(--blue);
}
.benefit-card:nth-child(2) .benefit-icon { background: var(--green-light); color: #526400; }
.benefit-card:nth-child(3) .benefit-icon { background: #fef3c7; color: #92400e; }
.benefit-card:nth-child(4) .benefit-icon { background: #f3e8ff; color: #6d28d9; }
.benefit-card:nth-child(5) .benefit-icon { background: #cffafe; color: #0e7490; }
.benefit-card:nth-child(6) .benefit-icon { background: #ffe4e6; color: #e11d48; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1rem; }

.ngo-quote {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}
.ngo-quote blockquote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.55;
    border-left: 4px solid var(--green);
    padding-left: 24px;
    margin-bottom: 16px;
}
.ngo-quote cite { color: rgba(255,255,255,.5); font-size: 0.86rem; font-style: normal; }
.ngo-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ngo-stat-tile {
    background: rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.ngo-stat-tile .ns-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem; font-weight: 800;
    color: var(--green); display: block; margin-bottom: 4px;
}
.ngo-stat-tile .ns-lbl { font-size: 0.78rem; color: rgba(255,255,255,.55); font-weight: 600; }

.roles-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.role-card-full {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--blue);
    transition: all var(--transition);
}
.role-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.role-card-full .rf-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--blue); flex-shrink: 0;
}
.role-card-full h4 { margin-bottom: 5px; font-size: 0.97rem; }
.role-card-full p  { font-size: 0.83rem; }

/* ── GALLERY PAGE ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(13,31,45,.55);
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-caption-peek {
    color: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1.35;
}
.gallery-zoom-icon {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.85rem;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(7,15,24,.93);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
}
.lightbox-overlay.open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 760px;
    width: 100%;
    animation: lbIn 0.3s ease;
}
@keyframes lbIn {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
}
.lightbox-caption {
    background: rgba(255,255,255,.08);
    border-radius: 0 0 16px 16px;
    padding: 18px 24px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}
.lightbox-caption strong { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--green); }

.lb-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    background: rgba(255,255,255,.12);
    border: none; border-radius: 50%;
    color: #fff; font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.lb-btn:hover { background: var(--blue); }
.lb-prev { left: -62px; }
.lb-next { right: -62px; }

.lb-close {
    position: absolute;
    top: -48px; right: 0;
    background: none; border: none;
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: color var(--transition);
}
.lb-close:hover { color: #fff; }

.lb-counter {
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: 0.83rem;
    margin-top: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .approach-intro { grid-template-columns: 1fr; }
    .ngo-quote { grid-template-columns: 1fr; }
    .vol-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-full { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .lb-prev { left: -16px; }
    .lb-next { right: -16px; }
}
@media (max-width: 560px) {
    .vol-benefits-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ngo-stats { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE MAP ── */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 45%;   /* 16:7 aspect — adjust to taste */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    margin-top: 48px;
    box-shadow: var(--shadow-lg);
}
.map-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-responsive { padding-bottom: 65%; }
}
@media (max-width: 480px) {
    .map-responsive { padding-bottom: 85%; }
}

/* ── TEAM SECTION ── */
.team-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-card-lead {
    max-width: 340px;
    width: 100%;
    border-top: 4px solid var(--green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-avatar { position: relative; }

.team-avatar-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--blue-light), #a8dcf5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--blue);
}

.team-card-lead .team-avatar-img {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #eef7c8, #d4edaa);
    color: #526400;
}

.team-body { padding: 20px; flex: 1; }
.team-body h3 { font-size: 1rem; margin-bottom: 4px; }

.team-role {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
}
.team-card-lead .team-role { color: #526400; }
.team-body p { font-size: 0.84rem; }

/* ── MV-ROW 3-COL — responsive fix ── */
.mv-row-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .mv-row-3 { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── EXECUTIVE DIRECTOR CARD (horizontal) ── */
.team-card-ed {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 880px;
    width: 100%;
    border-top: 4px solid var(--green);
}

.team-ed-avatar {
    width: 400px;
    min-height: 180px;
    align-self: stretch;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eef7c8, #d4edaa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #526400;
}

.team-ed-body {
    padding: 32px 36px;
    flex: 1;
}

@media (max-width: 600px) {
    .team-card-ed { flex-direction: column; }
    .team-ed-avatar { width: 100%; min-height: unset; aspect-ratio: 1 / 1; font-size: 5rem; }
}

/* ── TEAM PHOTO IMAGES ── */
.team-avatar-img img,
.team-ed-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-avatar-img { overflow: hidden; }
.team-ed-avatar   { overflow: hidden; }

/* ── PROJECT CARD REAL IMAGES ── */
.fp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── GLOBAL ROUNDED IMAGES ── */
img:not(.nav-logo img):not(.footer-brand img):not(.sdg-icon-sm):not(.sdg-icon-lg) {
    border-radius: 10px;
}

/* ── THEMATIC INTRO SECTION ── */
.thematic-intro-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    padding: 12px 0;
}
.thematic-intro-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.thematic-intro-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* ── THEME CARDS: EQUAL SIZE (2-col grid, no span) ── */
.theme-grid          { grid-template-columns: repeat(2, 1fr); }
.theme-grid .theme-card:first-child { grid-column: span 1; }

/* ── THEME CARD IMG: real photo support ── */
.theme-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ── SDG ICON SIZES ── */
.sdg-icon-sm {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 4px !important;
    flex-shrink: 0;
}
.sdg-icon-lg {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px !important;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .thematic-intro-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .theme-grid          { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .thematic-intro-grid { grid-template-columns: 1fr; }
    .theme-grid          { grid-template-columns: 1fr; }
    .theme-grid .theme-card:first-child { grid-column: span 1; }
}

/* ── GALLERY REAL IMAGES ── */
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
