/* ===== ICDP GHANA — GLOBAL STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --orange: #ff8c38;
    --orange-deep: #c86d2b;
    --orange-hover: #d45f10;
    --orange-pale: #fff8f3;
    --orange-tint: #fff0e4;
    --orange-border: #ffe0cc;
    --gold: #f59e0b;
    --black: #352b1c;
    --charcoal: #333333;
    --mid-gray: #555555;
    --muted: #888888;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --ff: 'Playfair Display', Georgia, serif;
    --fb: 'Outfit', system-ui, sans-serif;

    /* Legacy aliases so existing HTML colour vars keep working */
    --green-dark: var(--black);
    --green-mid: var(--orange-deep);
    --green-main: var(--orange);
    --green-light: var(--orange-tint);
    --green-pale: var(--orange-pale);
    --amber: var(--gold);
    --terra: var(--orange);
    --terra-hover: var(--orange-deep);
    --sienna: var(--orange-deep);
    --espresso: var(--black);
    --blush: var(--orange-tint);
    --ivory: var(--orange-pale);
    --border-warm: var(--orange-border);
    --cream: var(--orange-pale);
    --ink: var(--black);
    --ink-mid: var(--charcoal);
    --ink-light: var(--mid-gray);
    --ink-muted: var(--muted);
    --border: var(--orange-border);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--fb);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: var(--ff);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

button {
    font-family: var(--fb);
    cursor: pointer;
}

.text-justify {
    text-align: justify;
}

/* TOAST STYLE */
.jq-toast-wrap {
    width: 340px !important;
}

.jq-toast-single {
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0 !important;
    right: 10px;
}

/* ── NAVBAR ── */
.icdp-nav {
    background: var(--white);
    border-bottom: 1px solid var(--orange);
    padding: 0 1rem;
    min-height: 68px;
    transition: box-shadow .2s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--orange-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-box svg {
    width: 26px;
    height: 26px;
}

.logo-box .logo-sm {
    max-width: 35px;
}

.brand-name {
    font-family: var(--ff);
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -.3px;
}

.brand-name span {
    color: var(--orange);
}

.brand-sub {
    font-size: 9.5px;
    color: var(--muted);
    font-style: italic;
    display: block;
    margin-top: -2px;
}

.nav-sep {
    width: 1px;
    height: 30px;
    background: var(--border-light);
    margin: 0 12px;
}

.nav-org-label {
    font-size: 10px;
    color: var(--muted);
    max-width: 130px;
    line-height: 1.35;
}

.icdp-nav .nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--charcoal) !important;
    padding: 6px 11px !important;
    border-radius: 7px;
    transition: all .18s;
    position: relative;
}

.icdp-nav .nav-link:hover {
    color: var(--orange) !important;
    background: var(--orange-pale);
}

.icdp-nav .nav-link.active {
    color: var(--orange) !important;
    background: transparent;
    border-bottom: 2.5px solid var(--orange);
    border-radius: 0;
    padding-bottom: 4px !important;
}

.btn-nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    background: none;
    border: 1px solid var(--orange-border);
    border-radius: 8px;
    padding: 7px 16px;
    transition: all .2s;
}

.btn-nav-login:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-pale);
}

.btn-nav-donate {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--white) !important;
    background: var(--orange) !important;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    box-shadow: 0 3px 10px rgba(255, 140, 56, .35);
}

.btn-nav-donate:hover {
    background: var(--orange-deep) !important;
    color: var(--white) !important;
}

.navbar-toggler {
    border: 1.5px solid var(--orange-border);
}

/* ── MEGA MENU ── */
.mega-item {
    position: static !important;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid var(--orange-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
    z-index: 9999;
    padding: 0;
}

/* Invisible bridge so the cursor never "leaves" the hoverable area
   between the nav-link and the dropdown panel below it */
.mega-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    display: none;
}

.mega-item:hover::after,
.mega-item.show::after {
    display: block;
}

.mega-item:hover .mega-menu,
.mega-item.show .mega-menu {
    display: block;
}

.mega-inner {
    padding: 32px 40px 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-col-head {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col-head .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    transition: background .15s;
    margin-bottom: 2px;
}

.mega-link:hover {
    background: var(--orange-pale);
}

.mega-link-icon {
    width: 28px;
    height: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-link-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mega-link-text .name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
    display: block;
    line-height: 1.2;
}

.mega-link-text .desc {
    font-size: 11.5px;
    color: var(--ink-muted);
    line-height: 1.4;
    margin-top: 2px;
}

.mega-divider {
    width: 1px;
    background: var(--orange-border);
    margin: 0 8px;
}

.mega-overview {
    background: var(--orange-deep);
    border-radius: 14px;
    padding: 22px;
    height: 100%;
}

.mega-overview h4 {
    font-family: var(--ff);
    font-size: 17px;
    color: var(--white);
    margin-bottom: 8px;
}

.mega-overview p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    margin-bottom: 16px;
}

.mega-overview .btn-sm {
    font-size: 12px;
    font-weight: 700;
    background: var(--white);
    color: var(--orange);
    border: none;
    border-radius: 7px;
    padding: 7px 16px;
    display: inline-block;
    transition: all .2s;
}

.mega-overview .btn-sm:hover {
    background: var(--black);
    color: var(--white);
}

.mega-overview::before {
    content: "";
    position: absolute;
    top: 45px;
    right: 245px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-width: 50px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.04);
    border-image: none;
}

/* mobile mega */
@media(max-width:991.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 24px;
    }

    .mega-menu {
        position: static !important;
        border: none;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: visible;
    }

    .mega-item::after {
        display: none !important;
    }

    .mega-inner {
        padding: 12px 8px;
    }

    .mega-divider {
        display: none;
    }

    .mega-col-head {
        font-size: 10px;
        padding-top: 8px;
    }

    .mega-overview {
        display: none;
    }

    .mega-menu .row {
        row-gap: 4px;
    }

    .icdp-nav .nav-link.active {
        border-bottom: none;
        background: var(--orange-pale);
        border-radius: 7px;
        padding-bottom: 6px !important;
    }
}

/* ── FLOATING DONATE ── */
.float-donate {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 13px 24px;
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(249, 115, 22, .45);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.float-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(249, 115, 22, .5);
    color: var(--white);
    background: var(--orange-deep);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.3);
    }
}

/* ── DONATE STRIP ── */
.donate-strip {
    background: var(--cream);
    padding: 12px 0;
    text-align: center;
}

.donate-strip p {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.donate-strip a {
    text-decoration: none;
    font-weight: 700;
}

.btn-strip {
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 13px;
    margin-left: 10px;
    transition: background .2s;
    display: inline-block;
}

.btn-strip:hover {
    background: var(--orange-deep);
    color: var(--white);
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(26, 26, 26, .96) 0%, rgba(26, 26, 26, .88) 38%, rgba(26, 26, 26, .58) 68%, rgba(26, 26, 26, .22) 100%);
}

.hero-body {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.hero-section h1 {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.hero-section h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-lead {
    font-size: 15px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    border-left: 3px solid var(--orange);
    padding-left: 14px;
}

/* ── PAGE HERO ── */
.page-hero {
    background: var(--orange-deep);
    padding: 56px 0 40px;
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
}

.page-hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, .88);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, .65);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .3);
}


/* ══════════════════════════════════════════════════════
   SECTION LABELS & TITLES
══════════════════════════════════════════════════════ */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 2.5px;
    background: var(--gold);
}

.section-title {
    font-family: var(--ff);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn-icdp-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 9px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    box-shadow: 0 3px 10px rgba(255, 140, 56, .30);
}

.btn-icdp-primary:hover {
    background: var(--orange-deep);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 140, 56, .40);
}

.btn-icdp-green {
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 9px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
}

.btn-icdp-green:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-icdp-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .45);
    border-radius: 9px;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
}

.btn-icdp-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

/* ══════════════════════════════════════════════════════
   CARDS — white with warm border, orange hover accent
══════════════════════════════════════════════════════ */
.icdp-card {
    background: var(--white);
    border: 1px solid var(--orange-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    height: 100%;
}

.icdp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 140, 56, .14);
}

.icdp-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.icdp-card .card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icdp-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.icdp-card p {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.65;
    text-align: justify;
}

.metric-strip {
    display: flex;
    border-top: 1px solid var(--orange-border);
}

.metric-strip .m-cell {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid var(--orange-border);
}

.metric-strip .m-cell:last-child {
    border-right: none;
}

.metric-strip .m-val {
    font-family: var(--ff);
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.metric-strip .m-lbl {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.3;
}

/* TEAM STYLE */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .1);
}

.team-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.team-body {
    padding: 22px;
}

.team-body h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-role {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-body p {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.team-social a {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-main);
    font-size: 11px;
    font-weight: 700;
    transition: all .2s;
}

.team-social a:hover {
    background: var(--green-main);
    color: #fff;
}

.profile-hero {
    background: var(--orange-deep);
    padding: 56px 0 0;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, .04);
}

.profile-photo-lg {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff);
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    border: 5px solid rgba(255, 255, 255, .15);
    margin: 0 auto;
}

.profile-stat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.profile-stat .v {
    font-family: var(--ff);
    font-size: 24px;
    font-weight: 700;
    color: var(--green-main);
}

.profile-stat .l {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 2px;
}

.timeline-mini {
    border-left: 2px solid var(--border);
    padding-left: 18px;
    margin-left: 6px;
}

.timeline-mini .tm-item {
    position: relative;
    padding-bottom: 22px;
}

.timeline-mini .tm-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-main);
}

.timeline-mini .tm-item:last-child {
    padding-bottom: 0;
}

/* DONATE SECTION */
.donate-hero {
    background: linear-gradient(135deg, #974000 0%, #281e18 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.donate-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, .10);
}

.donate-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, .03);
}

.impact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.impact-line:last-child {
    border-bottom: none;
}

.impact-line-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-line-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--green-light);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.way-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    transition: box-shadow .2s;
}

.way-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.way-card .way-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.way-card .way-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* PARTNERS */
.partner-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .2s;
}

.partner-tile:hover {
    border-color: var(--green-main);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.partner-tile .p-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.partner-tile .p-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.partner-cat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 48px 0 20px;
}

.partner-cat-head .line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--white);
    border-top: 1px solid var(--orange-border);
    border-bottom: 3px solid var(--orange);
}

.stat-item {
    padding: 26px 20px;
    border-right: 1px solid var(--orange-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange-pale);
    border: 2px solid var(--orange-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-num {
    font-family: var(--ff);
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin: 3px 0 1px;
}

.stat-sub {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

/* ── DONATE CARD ── */
.donate-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
}

.donate-card-overlay {
    position: absolute;
    top: 0px;
    border: 1px solid var(--muted);
    border-radius: 16px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #3c2514c2;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    pointer-events: none;
}

.donate-card-title {
    font-family: var(--ff);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
}

.donate-card-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--amber);
    margin-top: 8px;
    margin-bottom: 14px;
}

.amt-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin-bottom: 12px;
}

.amt-btn {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-mid);
    background: var(--white);
    cursor: pointer;
    transition: all .15s;
    text-align: center;
}

.amt-btn:hover {
    border-color: var(--green-main);
    color: var(--green-main);
}

.amt-btn.active {
    background: var(--green-main);
    color: #fff;
    border-color: var(--green-main);
}

.freq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.freq-btn {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-mid);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .15s;
}

.freq-btn.active {
    background: var(--green-main);
    color: #fff;
    border-color: var(--green-main);
}

.btn-donate-cta {
    width: 100%;
    padding: 13px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--fb);
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 9px;
    transition: background .2s;
    box-shadow: 0 4px 14px rgba(255, 140, 56, .35);
}

.btn-donate-cta:hover {
    background: var(--orange-deep);
}

.secure-note {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 14px;
}

.match-box {
    background: var(--orange-pale);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    border: 1px solid var(--orange-border);
}

.match-box p {
    font-size: 11.5px;
    color: var(--charcoal);
    line-height: 1.55;
    margin: 0;
}

.match-box a {
    color: var(--orange);
    font-weight: 700;
    font-size: 11.5px;
    display: block;
    margin-top: 4px;
}

/* ── DONATE BANNER ── */
.donate-banner {
    background: linear-gradient(135deg, #744523 0%, var(--black) 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.donate-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -160px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, .04);
}

.donate-banner h3 {
    font-family: var(--ff);
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
}

.donate-banner p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--green-mid);
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    right: -170px;
    top: -50px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, .04);
}

.cta-band h3 {
    font-family: var(--ff);
    font-size: clamp(18px, 2.5vw, 24px);
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    margin: 0;
}

.cta-heart {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-heart svg {
    fill: none;
    stroke: var(--amber);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 24px;
    height: 24px;
}

/* ── MISC ── */
.value-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.t-year {
    font-family: var(--ff);
    font-size: 22px;
    font-weight: 700;
    color: var(--green-main);
    min-width: 52px;
    line-height: 1.1;
}

.t-body h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.t-body p {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0;
}

.quote-box {
    background: var(--green-dark);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    font-family: var(--ff);
    font-size: 110px;
    color: rgba(255, 255, 255, .06);
    position: absolute;
    top: -20px;
    left: 16px;
    line-height: 1;
}

.quote-box blockquote {
    font-family: var(--ff);
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    font-size: 12px;
    color: var(--orange);
    font-style: normal;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.report-card {
    background: var(--green-dark);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    display: block;
}

.report-card:hover {
    background: var(--green-mid);
}

.report-card .r-year {
    font-family: var(--ff);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.report-card .r-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.report-card .r-dl {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.partner-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-mid);
    text-align: center;
    line-height: 1.3;
}

/* ── CAROUSEL / SCROLLER ── */
.scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroller::-webkit-scrollbar {
    height: 7px;
}

.scroller::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.scroller::-webkit-scrollbar-track {
    background: transparent;
}

.scroller-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.scroller-controls {
    display: flex;
    gap: 8px;
}

.scroller-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    color: var(--ink-mid);
}

.scroller-btn:hover {
    background: var(--green-main);
    color: #fff;
    border-color: var(--green-main);
}

.carousel-control-prev,
.carousel-control-next {
    width: 46px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 51, 32, .55);
    border-radius: 50%;
    opacity: .85;
}

.carousel-control-prev {
    left: 14px;
}

.carousel-control-next {
    right: 14px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--green-main);
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    background: var(--white);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: .5;
}

.carousel-indicators .active {
    opacity: 1;
    background: var(--amber);
}

/* ── BLOG / VIDEO / PROJECT CARDS ── */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}

.blog-thumb {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    position: relative;
}

.news-img-card {
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}

.blog-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .92);
    color: var(--green-main);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.blog-body {
    padding: 20px;
}

.blog-meta {
    font-size: 11px;
    color: var(--ink-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-body h4 {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.blog-body p {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.6;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}

.video-thumb-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-thumb-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(220, 38, 38, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 3px;
}

/* PAGINATION */
.pg-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 0 24px;
}

.pg-info {
    font-size: 13px;
    color: #888;
}

.pg-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.pg-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid #ffe0cc;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background .15s, border-color .15s, color .15s;
}

.pg-btn:hover:not(:disabled) {
    background: #fff8f3;
    border-color: #ff8c38;
    color: #ff8c38;
}

.pg-btn:disabled {
    opacity: .38;
    cursor: not-allowed;
}

.pg-btn.pg-active {
    background: #ff8c38;
    color: #fff;
    border-color: #ff8c38;
    font-weight: 700;
}

.pg-btn.pg-active:hover {
    background: #e06b1a;
    border-color: #e06b1a;
}

.pg-ellipsis {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 15px;
    pointer-events: none;
    user-select: none;
}

.pg-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.pg-perpage,
.pg-jump {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.pg-perpage select,
.pg-jump input {
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #ffe0cc;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-family: inherit;
    padding: 0 8px;
    cursor: pointer;
    outline: none;
    transition: border-color .15s;
}

.pg-perpage select:focus,
.pg-jump input:focus {
    border-color: #ff8c38;
    box-shadow: 0 0 0 3px rgba(255, 140, 56, .15);
}

.pg-jump input {
    width: 56px;
    text-align: center;
}

.pg-jump-go {
    height: 36px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1.5px solid #ff8c38;
    background: #ff8c38;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
}

.pg-jump-go:hover {
    background: #e06b1a;
    border-color: #e06b1a;
}

.pg-divider {
    width: 1px;
    height: 22px;
    background: #ffe0cc;
}

/* CONTACT US CARDS */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--green-main);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── PROJECT DETAIL PAGES ── */
.project-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(53 35 9 / 96%) 0%, rgb(64 48 24 / 55%) 60%, rgb(40 26 12 / 25%) 100%);
}

.project-sidebar {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 88px;
}

.project-fact {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.project-fact:last-child {
    border-bottom: none;
}

.project-fact .lbl {
    color: var(--ink-muted);
}

.project-fact .val {
    font-weight: 700;
    color: var(--ink);
}

.activity-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-date {
    min-width: 64px;
    text-align: center;
    background: var(--green-pale);
    border-radius: 10px;
    padding: 8px 4px;
    flex-shrink: 0;
}

.activity-date .day {
    font-family: var(--ff);
    font-size: 18px;
    font-weight: 700;
    color: var(--green-main);
    line-height: 1;
}

.activity-date .mon {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--green-main);
    letter-spacing: 1px;
}

.prog-health .card-icon {
    background: #fce4ec;
    color: #c2185b;
}

.prog-dare .card-icon {
    background: #e3f2fd;
    color: #1565c0;
}

.prog-o3 .card-icon {
    background: #f3e5f5;
    color: #7b1fa2;
}

.prog-think .card-icon {
    background: var(--green-pale);
    color: var(--green-main);
}

.prog-seed .card-icon {
    background: #fff8e1;
    color: #e65100;
}

.prog-care .card-icon {
    background: var(--cream);
    color: var(--green-dark);
}

/* ── STATUS BADGES ── */
.badge-ongoing {
    background: #e6f5eb;
    color: var(--green-main);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}

.badge-completed {
    background: #f3f4f6;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 56px 0 28px;
}

.footer-brand {
    font-family: var(--ff);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-brand span {
    color: var(--amber);
}

.footer-tagline {
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 12px;
}

footer p,
footer li {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.75;
}

footer h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 14px;
}

footer a {
    color: rgba(255, 255, 255, .6);
    transition: color .18s;
}

footer a:hover {
    color: #fff;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
    transition: all .2s;
}

.social-btn:hover {
    background: var(--green-main);
    color: #fff;
    border-color: var(--green-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .32);
    margin: 0;
}

/* ── RESPONSIVE ── */
@media(max-width:767.98px) {

    .nav-sep,
    .nav-org-label {
        display: none;
    }

    .hero-section {
        min-height: 480px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .float-donate {
        bottom: 16px;
        right: 14px;
        padding: 11px 18px;
        font-size: 13px;
    }

    .amt-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .donate-banner {
        padding: 28px 20px;
    }

    .cta-band .d-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}