/* ═══════════════════════════════════════════════════════════
   NEW BEGINNINGS — stylesheet
   Typography: Fraunces (display) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════ */

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
    --navy: #1E3A5F;
    --navy-deep: #122436;
    --navy-mid: #254873;
    --trust: #2F5D8C;
    --teal: #5FA8A8;
    --teal-light: #8EC8C8;
    --teal-pale: #C8E8E8;
    --sage: #DCE8E4;
    --sage-dark: #B8D4CC;
    --gold: #bf4b7d;
    --gold-light: #E8C07A;
    --gold-pale: #F5E8C8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --surface: #F2F6FA;
    --txt: #1A2B3C;
    --txt-2: #4A5E72;
    --txt-3: #8A9DB0;
    --border: rgba(30,58,95,.1);
    --border-soft: rgba(30,58,95,.06);
    --r-sm: .5rem;
    --r-md: .85rem;
    --r-lg: 1.25rem;
    --r-xl: 1.75rem;
    --r-2xl: 2.5rem;
    --sh-xs: 0 1px 4px rgba(30,58,95,.06);
    --sh-sm: 0 2px 16px rgba(30,58,95,.08);
    --sh-md: 0 8px 40px rgba(30,58,95,.12);
    --sh-lg: 0 24px 72px rgba(30,58,95,.18);
    --sh-xl: 0 40px 100px rgba(30,58,95,.22);
    --ease: cubic-bezier(.4,0,.2,1);
    --t: .26s;
    --ff-display: 'Fraunces', Georgia, serif;
    --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    color: var(--txt);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--ff-display);
    line-height: 1.2;
    font-weight: 600;
}

p {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button, input, textarea, select {
    font-family: var(--ff-body);
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ─── Skip Link ───────────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    padding: .6rem 1.2rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .875rem;
    border-radius: var(--r-md);
    z-index: 10000;
}

    .skip-link:focus {
        left: 1rem;
    }

/* ─── Cookie Banner ──────────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    color: rgba(255,255,255,.85);
    z-index: 9500;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cookie-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1.5rem;
    justify-content: space-between;
}

.hero-mobbanner-logo {
    margin-right: 10px;
    border-right: 1px solid #930bc0;
}

.cookie-text {
    font-size: .83rem;
}

    .cookie-text a {
        color: var(--teal-light);
        text-decoration: underline;
    }

.cookie-btns {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.btn-cookie {
    border: none;
    border-radius: var(--r-sm);
    font-size: .82rem;
    font-weight: 600;
    padding: .45rem 1.1rem;
    cursor: pointer;
    transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

    .btn-cookie:hover {
        transform: translateY(-1px);
    }

.btn-cookie--accept {
    background: var(--gold);
    color: var(--navy);
}

.btn-cookie--decline {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.2);
}

/* ─── HEADER (two-row) ────────────────────────────────────── */
#siteHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: top .38s ease, box-shadow .3s ease;
    will-change: top;
}

    #siteHeader.scrolled {
        position: fixed;
        width: 100%;
        top: -55px;
    }
.scrolled .site-brand {
    transform: translateX(-50%) translateY(32px);
}



.inner-banner-label {
    display: inline-flex;
    color: #ffffff;
    font-family: var(--ff-display);
    background: #bf4b7d;
    border-radius: 30px;
    padding: 2px 22px;
    margin-bottom: 12px;
    border: 1px solid #ffffff;
    font-size: 14px;
}

/* — Top bar — */
.header-topbar {
    background: var(--navy);
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--t) var(--ease);
}

    .topbar-contact:hover {
        color: var(--teal-light);
    }

    .topbar-contact i {
        font-size: .9rem;
        color: var(--teal-light);
        flex-shrink: 0;
    }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: .15rem;
}

    .topbar-socials span {
        font-size: .72rem;
        color: rgba(255,255,255,.4);
        font-weight: 600;
        letter-spacing: .08em;
        margin-right: .5rem;
        text-transform: uppercase;
    }

.topbar-social-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    border-radius: var(--r-sm);
    font-size: .95rem;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
    text-decoration: none;
}

    .topbar-social-btn:hover {
        background: rgba(255,255,255,.1);
        color: var(--teal-light);
    }

.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--gold);
    color: var(--white);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem 1.1rem;
    border-radius: var(--r-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
    flex-shrink: 0;
}

img.brand-logo-img {
    max-width: 130px;
    height: auto;
    display: block;
    transform: translateZ(0);
}
img.footer-logo{
    max-width: 100px;
}
.scrolled img.brand-logo-img{
    max-width: 100px;
}

.topbar-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: var(--navy);
}

    .topbar-cta i {
        font-size: .85rem;
    }

/* — Main nav row — */
.header-main {
    background: var(--white);
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 82px;
}

/* brand / logo — centre column */
.site-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    pointer-events: none;
    transition: transform .38s ease;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
}

.site-brand img,
.site-brand .brand-name,
.site-brand .brand-tagline,
.site-brand .brand-logo-mark {
    pointer-events: auto;
}

.brand-logo-mark {
    width: 58px;
    height: 58px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(30,58,95,.25);
    position: relative;
    overflow: hidden;
}

    .brand-logo-mark::after {
        content: '';
        position: absolute;
        inset: 3px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,.15);
    }

    .brand-logo-mark i {
        font-size: 1.6rem;
        color: var(--gold);
    }

.brand-name {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.01em;
    white-space: nowrap;
    margin-top: .3rem;
}

.brand-tagline {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    white-space: nowrap;
}

/* nav links — left col (right-aligned) and right col (left-aligned) */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.contact-form-wrap .col-md-6.YourMessage.mb-3,
.col-md-6.IconsenttomydatabeingprocessedinaccordancewiththePrivacyPolicy\..mb-3 {
    width: 100% !important;
}

.inner-banner {
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 8rem 0 3.5rem;
    background: var(--navy-deep);
}

.inner-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(18,36,54,.65) 0%, rgba(18,36,54,.92) 100%);
    z-index: 1;
}

.inner-banner-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: .4;
}

.inner-banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.breadcrumb-nb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.25rem;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 2rem;
    padding: .3rem .9rem;
}

    .breadcrumb-nb a {
        color: var(--teal-light);
        transition: color var(--t) var(--ease);
    }

        .breadcrumb-nb a:hover {
            color: #fff;
        }

    .breadcrumb-nb i {
        font-size: .6rem;
        opacity: .55;
    }

.inner-banner h1 {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
    line-height: 1.15;
}

.banner-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 560px;
    line-height: 1.75;
    margin: 0;
}


/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.mission-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    padding: 2.25rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .mission-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-md);
    }

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.35rem;
}

    .mission-icon em {
        font-size: 1.7rem;
    }

.mission-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: .65rem;
}

.mission-card p {
    font-size: .9rem;
    color: var(--txt-2);
    line-height: 1.7;
}

.team-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border-soft);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    height:100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg);
    }

.team-img {
    height: 260px;
    overflow: hidden;
}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform .55s var(--ease);
    }

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

    .team-info h4 {
        font-size: 1.1rem;
        color: var(--navy);
        margin-bottom: .2rem;
    }

.team-role {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .75rem;
    display: block;
}

.team-bio {
    font-size: .87rem;
    color: var(--txt-2);
    line-height: 1.65;
}

.team-socials {
    display: flex;
    gap: .4rem;
    margin-top: 1rem;
}

    .team-socials a {
        width: 32px;
        height: 32px;
        background: var(--sage);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: .85rem;
        transition: background var(--t) var(--ease), color var(--t) var(--ease);
    }

        .team-socials a:hover {
            background: var(--teal);
            color: #fff;
        }

.timeline {
    position: relative;
    padding-left: 2.25rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--teal-pale);
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    left: -2.65rem;
    top: .3rem;
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--teal-pale);
}

.timeline-year {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .3rem;
}

.timeline-title {
    font-size: 1.05rem;
    color: var(--navy);
    font-family: var(--ff-display);
    font-weight: 600;
    margin-bottom: .4rem;
}

.timeline-desc {
    font-size: .88rem;
    color: var(--txt-2);
    line-height: 1.65;
}

.accred-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.accred-badge {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}

    .accred-badge:hover {
        box-shadow: var(--sh-sm);
        transform: translateY(-2px);
    }

    .accred-badge i {
        font-size: 1.5rem;
        color: var(--teal);
    }

    .accred-badge span {
        font-size: .83rem;
        font-weight: 600;
        color: var(--navy);
    }

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-md);
    }

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
}

.contact-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: .4rem;
}

.contact-card p {
    font-size: .88rem;
    color: var(--txt-2);
    line-height: 1.65;
}

.contact-card a {
    color: var(--trust);
    font-weight: 500;
}

    .contact-card a:hover {
        text-decoration: underline;
    }

.dept-card {
    background: var(--off-white);
    border-radius: var(--r-xl);
    padding: 2rem;
    border-left: 3px solid var(--teal);
    height: 100%;
}

    .dept-card h4 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: .5rem;
    }

    .dept-card p {
        font-size: .87rem;
        color: var(--txt-2);
        margin-bottom: .5rem;
    }

    .dept-card a {
        color: var(--trust);
        font-size: .87rem;
        font-weight: 500;
    }

/* ─── CAREER CATEGORY CARDS ─────────────────────────────── */
.career-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.career-cat-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 1.4rem .75rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    text-align: center;
    font-size: .83rem;
    font-weight: 600;
    color: var(--txt-2);
    line-height: 1.35;
    overflow: hidden;
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.career-cat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform var(--t) var(--ease);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.career-cat-card:hover {
    border-color: var(--teal);
    box-shadow: var(--sh-sm);
}

.career-cat-card.active {
    background: var(--sage);
    border-color: var(--teal);
    color: var(--navy);
}

.career-cat-card.active::after { transform: scaleX(1); }

.career-cat-count {
    position: absolute;
    top: .55rem; right: .55rem;
    min-width: 20px; height: 20px;
    background: var(--teal);
    color: #fff;
    border-radius: 2rem;
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .4rem;
}

.career-cat-icon {
    width: 52px; height: 52px;
    background: rgba(30, 130, 110, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--teal);
    flex-shrink: 0;
    transition: background var(--t) var(--ease);
}

.career-cat-icon--charity {
    background: rgba(214, 90, 100, .1);
    color: #d65a64;
}

.career-cat-name { display: block; padding: 0 .25rem; }

@media (max-width: 480px) {
    .career-cat-grid { gap: .5rem; }
    .career-cat-card { padding: 1.1rem .5rem .9rem; font-size: .75rem; }
    .career-cat-icon { width: 42px; height: 42px; font-size: 1.1rem; }
}
/* ─────────────────────────────────────────────────────────── */

.map-wrap {
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
    border: 1px solid var(--border-soft);
    height: 420px;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-inner {
    text-align: center;
    color: var(--txt-2);
}

    .map-placeholder-inner i {
        font-size: 3.5rem;
        color: var(--teal);
        margin-bottom: 1rem;
        display: block;
    }

    .map-placeholder-inner p {
        font-size: .9rem;
    }



.hn-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
    padding: .5rem .75rem;
    border-radius: var(--r-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--t) var(--ease), background var(--t) var(--ease);
    position: relative;
}

    .hn-link:hover, .hn-link:focus-visible {
        color: var(--trust);
        background: var(--sage);
    }

    .hn-link.active {
        color: var(--navy);
    }

        .hn-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: .75rem;
            right: .75rem;
            height: 2px;
            background: var(--teal);
            border-radius: 2px;
        }

/* dropdown in header */
.hn-dropdown {
    position: relative;
}

.hn-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: .5rem .75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
}

    .hn-dropdown-toggle i {
        font-size: .7rem;
        transition: transform var(--t) var(--ease);
    }

.hn-dropdown:hover .hn-dropdown-toggle i {
    transform: rotate(180deg);
}

.hn-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + .6rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: .5rem;
    min-width: 210px;
    z-index: 200;
    animation: dropIn .18s var(--ease) both;
}

.hn-dropdown:hover .hn-dropdown-menu,
.hn-dropdown:focus-within .hn-dropdown-menu {
    display: block;
}

.hn-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -.65rem;
    left: 0;
    right: 0;
    height: .65rem;
}

.hn-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1rem;
    font-size: .86rem;
    font-weight: 500;
    color: var(--txt);
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

    .hn-dropdown-menu a i {
        color: var(--teal);
        font-size: 1rem;
    }

    .hn-dropdown-menu a:hover,
    .hn-dropdown-menu a.active {
        background: var(--sage);
        color: var(--trust);
    }

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Mobile header ── */
.header-mobile {
    display: none;
    padding: .6rem 0;
    background: var(--white);
    border-bottom: 2px solid var(--sage);
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--t) var(--ease);
}

.header-mobile.scrolled {
    box-shadow: var(--sh-sm);
}

.mob-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
}

/* Logo image */
.mob-logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.mob-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
    max-width: calc(100% - 56px);
}

.mob-brand-name {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hamburger toggle */
.mob-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    color: var(--navy);
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

.mob-toggle:hover,
.mob-toggle[aria-expanded="true"] {
    background: var(--navy);
    color: var(--white);
}

.mob-toggle i {
    font-size: 1.4rem;
    pointer-events: none;
    transition: transform var(--t) var(--ease);
}

.mob-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

/* Drawer */
.mob-nav-drawer {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
    padding: .5rem 0 1.25rem;
    animation: mobDrawerIn .22s var(--ease) both;
}

.mob-nav-drawer.open {
    display: block;
}

@keyframes mobDrawerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Nav links */
.mob-nav-link {
    display: flex;
    align-items: center;
    padding: .65rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--txt);
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

.mob-nav-link:hover {
    background: var(--sage);
    color: var(--trust);
}

.mob-nav-link.active {
    color: var(--trust);
    background: var(--teal-pale);
}

/* Sub-menu indent */
.mob-nav-submenu {
    padding-left: 1.25rem;
    border-left: 2px solid var(--sage-dark);
    margin: .15rem 1.25rem .15rem 2.25rem;
}

.mob-nav-submenu .mob-nav-link {
    font-size: .83rem;
    font-weight: 500;
    padding: .45rem .75rem;
}

/* CTA row at drawer bottom */
.mob-cta-row {
    padding: .85rem 1.25rem 0;
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-soft);
    margin-top: .5rem;
}

.mob-cta-row .topbar-cta {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
}

/* ── Hide/show at breakpoints ── */
@media (max-width: 991px) {
    .header-main, .header-topbar {
        display: none;
    }

    .header-mobile {
        display: block;
        position: fixed;
        width: 100%;
        border:none;
    }
    #hero {
        margin-top:70px;
    }
}

@media (min-width: 992px) {
    .header-mobile {
        display: none;
    }
}

/* old Bootstrap nav overrides no longer needed */
.navbar-brand, .nav-link, .nav-cta {
    all: revert;
}


/* ─── Section Helpers ─────────────────────────────────────── */
section {
    padding: 6rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .9rem;
}

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--txt-2);
    line-height: 1.75;
}

.gold-bar {
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.25rem 0 1.75rem;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-nb {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: .95rem;
    padding: .875rem 2rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

    .btn-nb:hover {
        transform: translateY(-2px);
        transform: translateY(-2px);
    }

.btn-nb--gold {
    background: var(--gold);
    color: var(--white);
}

    .btn-nb--gold:hover {
        background: var(--gold-light);
        box-shadow: 0 8px 24px rgba(214,167,86,.4);
        color: var(--navy);
    }

.btn-nb--navy {
    background: var(--navy);
    color: #fff;
}

    .btn-nb--navy:hover {
        background: var(--trust);
        box-shadow: 0 8px 24px rgba(30,58,95,.3);
        color: #fff;
    }

.btn-nb--ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    padding: .825rem 1.8rem;
}

    .btn-nb--ghost:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.65);
        color: #fff;
    }

.btn-nb--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

    .btn-nb--outline:hover {
        background: var(--sage);
    }

.btn-nb--sm {
    font-size: .85rem;
    padding: .6rem 1.4rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--trust);
    transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}

    .link-arrow:hover {
        gap: .7rem;
        color: var(--navy);
    }

    .link-arrow i {
        font-size: .85rem;
        transition: transform var(--t) var(--ease);
    }

    .link-arrow:hover i {
        transform: translateX(3px);
    }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    padding: 0;
}

.heroSwiper {
    height: calc(100vh - 137px);
}

    .heroSwiper .swiper-slide {
        position: relative;
        overflow: hidden;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.heroSwiper .swiper-pagination {
    bottom: 40px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: .4;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
}

    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 22px;
        font-weight: 700;
    }

.hero-slide {
    min-height: calc(100vh - 136px);
    display: flex;
    align-items: center;
    position: relative;
}

    .hero-slide .container {
        position: relative;
        z-index: 10;
    }

.hero-body {
    padding: 0;
}
/*
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(95,168,168,.18);
    border: 1px solid rgba(95,168,168,.35);
    color: var(--teal-light);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
}*/

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgb #930bc02e (147 11 192 / 18%);
    border: 1px solid rgb(147 11 192 / 35%);
    color: #930bc0;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 100deg, rgba(18,36,54,.95) 0%, rgba(18,36,54,.78) 45%, rgba(18,36,54,.35) 100% );
}


    .hero-kicker i {
        font-size: .9rem;
    }

.hero-left-content {
    display: flex;
    align-items: center;
    max-width: 60%;
    margin-bottom: 190px;
}

.hero-banner-logo img {
    max-width: 200px;
}

.hero-banner-logo {
    border-right: 1px solid #f829ff;
    margin-right: 20px;
}
.hero-banner-com-name {
    font-size: 20px;
    font-family: var(--ff-display);
    font-weight: 400;
    background: var(--gold);
    display: inline-block;
    padding: 2px 25px;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 15px !important;
}
.hero-mobbanner-logo img {
    max-width: 100px;
}
@media screen and (max-width: 1440px){
    .hero-banner-com-name{
        font-size: 16px;
    }
}
@media screen and (max-width: 991.98px) {
    .hero-left-content {
        max-width: 100%;
    }

    .hero-banner-logo {
        display: none;
    }
}   

/*.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}*/

.hero-title {
    font-size: clamp(1.8rem, 6.5vw, 3.4rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

    .hero-title em {
        font-style: normal;
        color: #930bc0;
        position: relative;
    }

        .hero-title em::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #930bc0;
            opacity: .4;
            border-radius: 2px;
        }

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.72);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    margin-top: 45px;
    background: linear-gradient(135deg,#9253b5,#7d4ca3);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(84,33,120,.18);
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 999;
    max-width: 1500px;
}

@media screen and (max-width: 991.98px){
    .hero-values{
        display: none !important;
    }
}

.hero-value-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    position: relative;
    transition: .35s;
}

    .hero-value-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 25%;
        width: 1px;
        height: 50%;
        background: rgba(255,255,255,.22);
    }

    .hero-value-item:hover {
        background: rgba(255,255,255,.05);
    }

.hero-value-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.hero-value-content h5 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.hero-value-content p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width:991px) {

    .hero-values {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .hero-value-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

        .hero-value-item:nth-child(even)::after {
            display: none;
        }

        .hero-value-item:last-child {
            flex: 100%;
        }
}

@media (max-width:576px) {

    .hero-values {
        display: block;
    }

    .hero-value-item {
        width: 100%;
        padding: 22px;
    }

        .hero-value-item::after {
            display: none;
        }

        .hero-value-item:not(:last-child) {
            border-bottom: 1px solid rgba(255,255,255,.12);
        }

    .hero-value-content h5 {
        font-size: 20px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
/*    margin-bottom: 3.5rem;*/
}

.hero-actions .btn-nb--gold{
        background: #930bc0;
}

.hero-actions .btn-nb--ghost {
    color: #930bc0;
    border: 1.5px solid rgb(147 11 192);
}

.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: block;
}

.hero-stat-lbl {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    margin-top: .25rem;
    display: block;
}

.hero-trust {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.05);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    font-weight: 500;
}

    .trust-item i {
        color: var(--gold);
        font-size: 1.05rem;
        flex-shrink: 0;
    }

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.12);
    margin: 0 auto;
}

/* ─── ABOUT ───────────────────────────────────────────────── */
#about {
    background: var(--off-white);
}

.about-image-wrap {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
}

.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px;
    gap: 10px;
    height: 100%;
}

    .about-mosaic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--r-lg);
        transition: transform .55s var(--ease);
    }

        .about-mosaic img:hover {
            transform: scale(1.04);
        }

    .about-mosaic .main-img {
        grid-row: span 2;
    }

.about-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--sh-md);
    text-align: center;
    min-width: 130px;
}

.about-badge-num {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.about-badge-lbl {
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: .35rem;
    display: block;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.about-stat-item {
    flex: 1;
    min-width: 80px;
}

.about-stat-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.about-stat-lbl {
    font-size: .78rem;
    color: var(--txt-2);
    margin-top: .25rem;
}

.reg-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sage);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: var(--r-sm);
}

    .reg-tag i {
        color: var(--teal);
    }

/* ─── SERVICES ────────────────────────────────────────────── */
#services {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sh-xl);
    }

.svc-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

    .svc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .55s var(--ease);
    }

.service-card:hover .svc-img img {
    transform: scale(1.08);
}

.svc-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--navy);
    color: #fff;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: var(--r-sm);
}

.svc-tag--teal {
    background: var(--teal);
    color: var(--navy);
}

.svc-tag--gold {
    background: var(--gold);
    color: var(--white);
}

.svc-body {
    padding: 1.85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: var(--sage);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

    .svc-icon i {
        font-size: 1.35rem;
        color: var(--navy);
    }

.svc-body h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: .65rem;
}

.svc-body p {
    font-size: .9rem;
    color: var(--txt-2);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.svc-body .link-arrow {
    margin-top: auto;
}

/* ─── WHY ─────────────────────────────────────────────────── */
#why {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    #why::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(95,168,168,.06);
        pointer-events: none;
    }

.why-title {
    color: #fff;
}

.why-lead {
    color: rgba(255,255,255,.6);
}

.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-xl);
    padding: 2.25rem 2rem;
    height: 100%;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease);
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s var(--ease);
    }

    .why-card:hover {
        background: rgba(255,255,255,.09);
        transform: translateY(-4px);
    }

        .why-card:hover::after {
            transform: scaleX(1);
        }

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: rgba(95,168,168,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    transition: background var(--t) var(--ease);
}

.why-card:hover .why-icon {
    background: rgba(95,168,168,.28);
}

.why-icon i {
    font-size: 1.45rem;
    color: var(--teal-light);
}

.why-icon em {
    font-size: 1.45rem;
    color: var(--teal-light);
}

.why-card h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: .55rem;
}

.why-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
}

/* ─── REFERRAL ────────────────────────────────────────────── */
#referral {
    background: var(--surface);
}

.referral-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--r-2xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .referral-box::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 60px solid rgba(95,168,168,.08);
        pointer-events: none;
    }

    .referral-box::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 70px solid rgba(214,167,86,.07);
        pointer-events: none;
    }

.referral-content {
    position: relative;
    z-index: 1;
}

    .referral-content .eyebrow {
        color: var(--teal-light);
    }

        .referral-content .eyebrow::before {
            background: var(--teal-light);
        }

    .referral-content h2 {
        color: #fff;
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        margin-bottom: 1rem;
    }

    .referral-content p {
        color: rgba(255,255,255,.7);
        max-width: 540px;
        margin: 0 auto 2.5rem;
        font-size: 1.05rem;
    }

.referral-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.referral-hotline {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg);
    padding: .85rem 1.5rem;
    color: rgba(255,255,255,.75);
    font-size: .85rem;
}

    .referral-hotline strong {
        color: var(--teal-light);
        font-size: 1rem;
    }

    .referral-hotline i {
        color: var(--gold);
        font-size: 1.1rem;
    }

/* ─── DONATION ────────────────────────────────────────────── */
#donation {
    background: var(--white);
}

.donation-left h2 {
    letter-spacing: -.02em;
}

.donation-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .donation-check-list li {
        display: flex;
        align-items: center;
        gap: .65rem;
        font-size: .92rem;
        color: var(--txt-2);
        margin-bottom: .75rem;
    }

    .donation-check-list i {
        color: var(--teal);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

.donation-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 2.75rem;
}

    .donation-card h3 {
        font-size: 1.3rem;
        color: var(--navy);
        margin-bottom: .4rem;
    }

    .donation-card .sub {
        font-size: .85rem;
        color: var(--txt-2);
        margin-bottom: 1.75rem;
    }

.amounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-bottom: 1.5rem;
}

.btn-amt {
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: .95rem;
    padding: .7rem;
    border-radius: var(--r-md);
    cursor: pointer;
    text-align: center;
    transition: all var(--t) var(--ease);
}

    .btn-amt:hover {
        border-color: var(--teal);
        color: var(--teal);
        background: var(--teal-pale);
    }

    .btn-amt.active {
        border-color: var(--navy);
        background: var(--navy);
        color: #fff;
    }

.custom-amt-wrap {
    position: relative;
    margin-bottom: 1.75rem;
}

    .custom-amt-wrap .symbol {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 700;
        color: var(--navy);
        font-size: 1rem;
    }

.custom-amt-input {
    width: 100%;
    padding: .8rem 1rem .8rem 2rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    transition: border-color var(--t) var(--ease);
}

    .custom-amt-input:focus {
        outline: none;
        border-color: var(--teal);
    }

.donation-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

    .donation-btns .btn-nb {
        flex: 1;
        justify-content: center;
    }

.stripe-note {
    margin-top: 1.25rem;
    font-size: .75rem;
    color: var(--txt-3);
    display: flex;
    align-items: center;
    gap: .4rem;
}

    .stripe-note i {
        color: var(--txt-3);
    }

/* ─── IMPACT ──────────────────────────────────────────────── */
#impact {
    padding: 0;
}

.impact-inner {
    background: var(--navy-deep);
    border-radius: var(--r-2xl);
    padding: 4rem 3rem;
    overflow: hidden;
    position: relative;
}

    .impact-inner::before {
        content: '20+';
        position: absolute;
        right: -40px;
        top: -60px;
        font-family: var(--ff-display);
        font-size: 20rem;
        font-weight: 700;
        color: rgba(255,255,255,.02);
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

.impact-stat {
    text-align: center;
    padding: 1rem;
}

.impact-num {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    letter-spacing: -.03em;
}

.impact-lbl {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .6rem;
    display: block;
}

.impact-sep {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.1);
    margin: 0 auto;
}

/* ─── GALLERY ─────────────────────────────────────────────── */
#gallery {
    background: var(--white);
}

/* Gallery albums page */
.gallery-albums-section {
    padding: 4rem 0 5rem;
    background: var(--off-white);
}

.album-card {
    display: block;
    text-decoration: none;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-soft);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
}

.album-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--sage);
}

.album-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.album-card:hover .album-img img {
    transform: scale(1.07);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18,36,54,.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2rem;
    color: #fff;
}

.album-overlay span {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.album-body {
    padding: 1.1rem 1.35rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.album-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.album-count {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--txt-3);
    white-space: nowrap;
    flex-shrink: 0;
}

.album-count i { color: var(--teal); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    display: block;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s var(--ease);
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18,36,54,.6);
    opacity: 0;
    transition: opacity .3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.2rem;
    color: #fff;
}

/* Gallery detail page */
.gd-section {
    padding: 3rem 0 5rem;
    background: var(--off-white);
}

.gd-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.gd-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color var(--t);
}

.gd-back:hover {
    color: var(--navy);
}

.gd-count {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--txt-3);
    background: var(--white);
    border: 1px solid var(--border-soft);
    padding: .3rem .85rem;
    border-radius: 100px;
}

@media (max-width: 575px) {
    .gd-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
    }
}

/* ─── NEWS ────────────────────────────────────────────────── */
#news {
    background: var(--off-white);
}

.news-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg);
    }

.news-img {
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s var(--ease);
    }

.news-card:hover .news-img img {
    transform: scale(1.07);
}

.news-body {
    padding: 1.65rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .75rem;
}

.news-cat {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--teal);
    padding: .2rem .65rem;
    border-radius: var(--r-sm);
}

.news-date {
    font-size: .78rem;
    color: var(--txt-3);
    font-weight: 500;
}

.news-body h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: .65rem;
    line-height: 1.4;
}

.news-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t) var(--ease);
}

.news-body h3 a:hover {
    color: var(--teal);
}

.news-body p {
    font-size: .87rem;
    color: var(--txt-2);
    flex: 1;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.news-body .link-arrow {
    margin-top: auto;
    font-size: .85rem;
}

/* ─── BLOG DETAIL ─────────────────────────────────────────── */

/* Article header */
.bd-header {
    background: var(--white);
    padding: 2.5rem 0 1.75rem;
    border-bottom: 1px solid var(--border-soft);
}

.bd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    font-size: .78rem;
    color: var(--txt-3);
    margin-bottom: 1.1rem;
}

.bd-breadcrumb a {
    color: var(--txt-2);
    text-decoration: none;
    transition: color var(--t) var(--ease);
}

.bd-breadcrumb a:hover { color: var(--trust); }

.bd-breadcrumb i { font-size: .65rem; color: var(--txt-3); }

.bd-breadcrumb span { color: var(--txt-3); }

.bd-hero-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.bd-date {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: var(--txt-3);
}

.bd-date i { color: var(--teal); }

.bd-title {
    font-family: var(--ff-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    max-width: 820px;
}

/* Featured image */
.bd-feature-img {
    background: var(--surface);
    padding: 2rem 0;
}

.bd-feature-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: var(--sh-md);
}

/* Article section */
.bd-body {
    background: var(--off-white);
    padding: 3.5rem 0 4rem;
}

/* Excerpt */
.bd-excerpt {
    font-size: 1.08rem;
    color: var(--txt-2);
    line-height: 1.75;
    border-left: 4px solid var(--teal);
    padding: .85rem 1.25rem;
    background: var(--teal-pale);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-bottom: 2rem;
}

/* Body content */
.bd-content {
    color: var(--txt);
    font-size: .97rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.bd-content h2 {
    font-size: 1.45rem;
    color: var(--navy);
    margin: 2rem 0 .85rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--sage);
}

.bd-content h3 {
    font-size: 1.15rem;
    color: var(--navy-mid);
    margin: 1.5rem 0 .65rem;
}

.bd-content p { margin-bottom: 1.15rem; }

.bd-content ul, .bd-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.15rem;
}

.bd-content li { margin-bottom: .4rem; }

.bd-content blockquote {
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--txt-2);
}

.bd-content img {
    border-radius: var(--r-lg);
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
}

.bd-content a {
    color: var(--trust);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Share bar */
.bd-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    margin-bottom: 2rem;
}

.bd-share-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--txt-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-right: .25rem;
}

.bd-share-btns {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.bd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.bd-share-btn:hover { opacity: .85; transform: translateY(-2px); }

.bd-share-fb  { background: #1877f2; color: #fff; }
.bd-share-li  { background: #0a66c2; color: #fff; }
.bd-share-copy { background: var(--sage); color: var(--navy); }

/* Back link */
.bd-back {
    display: inline-flex;
    align-items: center;
    font-size: .88rem;
    font-weight: 600;
    color: var(--trust);
    text-decoration: none;
}

.bd-back:hover { color: var(--teal); }

/* ── Sidebar ── */
.bd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* TOC card */
.bd-toc-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--sh-xs);
}

.bd-toc-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--sage);
}

.blog-toc-list { list-style: none; margin: 0; }

.blog-toc-list li { margin-bottom: .3rem; }

.blog-toc-list a {
    font-size: .83rem;
    color: var(--txt-2);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    padding: .2rem 0;
    transition: color var(--t) var(--ease);
}

.blog-toc-list a::before {
    content: '›';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.blog-toc-list a:hover { color: var(--trust); }

/* Related posts */
.bd-related {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--sh-xs);
}

.bd-related-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--sage);
}

.bd-related-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    text-decoration: none;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border-soft);
    transition: opacity var(--t) var(--ease);
}

.bd-related-item:last-child { border-bottom: none; }

.bd-related-item:hover { opacity: .8; }

.bd-related-item img {
    width: 64px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--r-sm);
    flex-shrink: 0;
}

.bd-related-info { min-width: 0; }

.bd-related-date {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--txt-3);
    margin-bottom: .2rem;
}

.bd-related-info p {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .bd-header { padding: 1.75rem 0 1.25rem; }
    .bd-feature-img { padding: 1.25rem 0; }
    .bd-feature-img img { max-height: 320px; }
    .bd-sidebar { position: static; }
    .bd-share { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
    .bd-title { font-size: 1.5rem; }
    .bd-share-btns { flex-direction: column; width: 100%; }
    .bd-share-btn { justify-content: center; }
}

/* ─── CAREERS CTA ─────────────────────────────────────────── */
#careers {
    background: #267474;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    #careers::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.07) 0%, transparent 70%);
    }

.careers-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .careers-inner .eyebrow {
        color: #fff;
    }

        .careers-inner .eyebrow::before {
            background: #fff;
        }

    .careers-inner h2 {
        color: #fff;
        font-size: clamp(2rem, 4vw, 3.25rem);
        margin-bottom: 1rem;
    }

    .careers-inner p {
        color: #fff;
        max-width: 540px;
        margin: 0 auto 2rem;
        font-size: 1.05rem;
    }

.careers-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.careers-perk {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(18,36,54,.08);
    border-radius: 2rem;
    padding: .3rem .9rem;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
}

    .careers-perk i {
        font-size: .9rem;
    }

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact {
    background: var(--surface);
}

.contact-info {
    background: var(--navy);
    border-radius: var(--r-2xl);
    padding: 2.75rem;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
}

    .contact-info h3 {
        font-size: 1.45rem;
        color: #fff;
        margin-bottom: 2rem;
    }

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

    .cinfo-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.cinfo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(95,168,168,.15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .15rem;
}

    .cinfo-icon i {
        font-size: 1rem;
        color: var(--teal-light);
    }

.cinfo-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    margin-bottom: .2rem;
}

.cinfo-val {
    font-size: .93rem;
    color: rgba(255,255,255,.88);
    font-weight: 500;
    line-height: 1.5;
}

    .cinfo-val a {
        color: var(--teal-light);
    }

        .cinfo-val a:hover {
            text-decoration: underline;
        }

.social-row {
    display: flex;
    gap: .6rem;
    margin-top: auto;
    padding-top: 2rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.07);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
    font-size: 1rem;
}

    .social-btn:hover {
        background: var(--teal);
        color: #fff;
    }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 2.75rem;
    box-shadow: var(--sh-md);
    height: 100%;
}

    .contact-form-wrap h3 {
        font-size: 1.45rem;
        color: var(--navy);
        margin-bottom: 2rem;
    }

.form-group {
    margin-bottom: 1.25rem;
}

.form-label-nb {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--navy);
    margin-bottom: .45rem;
}

.form-req {
    color: var(--teal);
}

.form-ctrl {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-size: .93rem;
    font-family: var(--ff-body);
    color: var(--txt);
    background: var(--white);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    appearance: none;
}

    .form-ctrl:focus {
        outline: none;
        border-color: var(--trust);
        box-shadow: 0 0 0 3px rgba(47,93,140,.1);
    }

    .form-ctrl::placeholder {
        color: var(--txt-3);
    }

textarea.form-ctrl {
    resize: vertical;
    min-height: 120px;
}

.form-check-nb {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: 1.5rem;
}

    .form-check-nb input[type="checkbox"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        cursor: pointer;
        accent-color: var(--trust);
    }

    .form-check-nb label {
        font-size: .8rem;
        color: var(--txt-2);
        cursor: pointer;
    }

    .form-check-nb a {
        color: var(--trust);
        text-decoration: underline;
    }

.btn-submit-nb {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .btn-submit-nb:hover {
        background: var(--trust);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30,58,95,.3);
    }

/* ─── OUT OF HOURS (cinfo variant) ───────────────────────── */
.cinfo-item--ooh {
    border-top: 1px solid rgba(214,167,86,.2);
    margin-top: .25rem;
    padding-top: 1.5rem;
}

.cinfo-icon--gold {
    background: rgba(214,167,86,.15);
}

    .cinfo-icon--gold i {
        color: var(--gold);
    }

.cinfo-ooh-note {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
    margin-top: .35rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,.65);
    padding: 5rem 0 0;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
}

    .footer-brand .brand-dot {
        background: var(--teal);
    }

.footer-about {
    font-size: .87rem;
    line-height: 1.75;
    max-width: 290px;
}

.footer-social {
    display: flex;
    gap: .55rem;
    margin-top: 1.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.35rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

    .footer-list li {
        margin-bottom: .6rem;
    }

    .footer-list a {
        font-size: .87rem;
        color: rgba(255,255,255,.55);
        transition: color var(--t) var(--ease);
    }

        .footer-list a:hover {
            color: var(--teal-light);
        }

.safeguarding-block {
    background: rgba(214,167,86,.07);
    border: 1px solid rgba(214,167,86,.18);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

    .safeguarding-block .sg-title {
        display: flex;
        align-items: center;
        gap: .55rem;
        font-size: .73rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: .6rem;
    }

    .safeguarding-block p {
        font-size: .8rem;
        color: rgba(255,255,255,.55);
        line-height: 1.65;
    }

    .safeguarding-block strong {
        color: var(--teal-light);
    }

.footer-bar {
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.6rem 0;
}

.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-bar p {
    font-size: .76rem;
    color: rgba(255,255,255,.35);
    margin: 0;
}

.footer-bar-badges {
    display: flex;
    gap: .75rem;
}

.badge-footer {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(255,255,255,.3);
    border: 1px solid rgba(255,255,255,.1);
    padding: .25rem .7rem;
    border-radius: var(--r-sm);
}

/* ─── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .7s var(--ease) both;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .22s;
}

.delay-3 {
    animation-delay: .34s;
}

.delay-4 {
    animation-delay: .46s;
}

.delay-5 {
    animation-delay: .58s;
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

    .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}

/* ─── Bottom Mobile Nav ───────────────────────────────────── */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
    box-shadow: 0 -4px 24px rgba(30,58,95,.1);
    padding: .45rem .5rem calc(.45rem + env(safe-area-inset-bottom));
    align-items: flex-end;
    justify-content: space-around;
}

.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    flex: 1;
    text-decoration: none;
    padding: .25rem .15rem;
    border-radius: var(--r-sm);
    transition: color var(--t) var(--ease);
    color: #474747;
    min-width: 0;
}

.bnav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    transition: background var(--t) var(--ease);
}

.bnav-icon i {
    font-size: 1.25rem;
    line-height: 1;
}

.bnav-item:hover .bnav-icon,
.bnav-item.is-active .bnav-icon {
    background: var(--teal-pale);
}

.bnav-item:hover,
.bnav-item.is-active {
    color: var(--trust);
}

.bnav-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* Centre WhatsApp bubble */
.bnav-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    flex: 1;
    text-decoration: none;
    color: #25D366;
    padding: .25rem .15rem;
    position: relative;
}

.bnav-wa-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37,211,102,.35);
    position: relative;
    top: -10px;
    border: 3px solid var(--white);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.bnav-wa-bubble i {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.bnav-whatsapp:hover .bnav-wa-bubble {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

.bnav-whatsapp .bnav-label {
    color: #25D366;
    margin-top: -10px;
}

@media (max-width: 991px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    section {
        padding: 3rem 0;
    }
    .reveal.in-view{
        margin-bottom:16px!important;
    }
    .referral-box {
        padding: 2.5rem 1.75rem;
    }

    .impact-inner {
        padding: 2.5rem 1.75rem;
    }
    p{
        font-size:15px!important;
    }
    .impact-inner{
        margin:0 0;
    }
    .impact-num {
        font-size:2rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 2.25rem 0;
    }
    .inner-banner {
        min-height: 180px;
        margin-top: 70px;
        padding: 2rem 0 2rem;
    }
    .breadcrumb-nb {
        margin-bottom: 6px;
    }
    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn-nb {
            justify-content: center;
        }

    .about-mosaic {
        grid-template-rows: 160px 160px;
    }

    .referral-actions {
        flex-direction: column;
        align-items: center;
    }

    .donation-card {
        padding: 2rem 1.5rem;
    }

    .contact-info, .contact-form-wrap {
        padding: 2rem 1.5rem;
    }

    .amounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-divider {
        display: none;
    }

    .footer-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-stat-row {
        gap: 1.5rem;
        display:none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .trust-item span {
        font-size:13px;
    }

    .amounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-hotline {
        flex-direction: column;
        gap: .4rem;
        text-align: center;
    }

    #careers {
        padding: 2.25rem 0;
    }

    footer {
        padding: 2.25rem 0 0;
    }
}

/* ─── RELATED PRODUCT CARDS ───────────────────────────────── */
a.rel-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border-soft);
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

a.rel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-xl);
    text-decoration: none;
    color: inherit;
}

.rel-card__img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.rel-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
    display: block;
}

a.rel-card:hover .rel-card__img img {
    transform: scale(1.08);
}

.rel-card__body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rel-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.35;
}

.rel-card__desc {
    font-size: .88rem;
    color: var(--txt-2);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rel-card__cta {
    font-size: .82rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-top: auto;
    transition: gap var(--t) var(--ease);
}

a.rel-card:hover .rel-card__cta {
    gap: .6rem;
}
