:root {
    --dm-blue: #2f80ed;
    --dm-blue-dark: #1558aa;
    --dm-green: #27ae60;
    --dm-yellow: #f2c94c;
    --dm-bg: #f8fbff;
    --dm-text: #1f2937;
    --dm-muted: #6b7280;
    --dm-border: rgba(15, 23, 42, 0.08);
    --dm-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dm-bg);
    color: var(--dm-text);
}

body.mobile-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.top-strip {
    background: linear-gradient(90deg, #1558aa, #2f80ed);
    color: #fff;
    font-size: 14px;
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact,
.top-note {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.top-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.45);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--dm-border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--dm-text);
    min-width: 230px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--dm-blue), var(--dm-green));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 30px rgba(47, 128, 237, 0.25);
    flex-shrink: 0;
}

.brand-text,
.footer-brand span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.18;
}

.brand-text strong,
.footer-brand strong {
    font-size: 17px;
    font-weight: 900;
}

.brand-text small,
.footer-brand small {
    margin-top: 4px;
    color: var(--dm-muted);
    font-weight: 700;
    font-size: 13px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: #374151;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    transition: 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--dm-blue);
    background: #eef5ff;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dm-blue), var(--dm-green));
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--dm-green), var(--dm-blue));
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(39, 174, 96, 0.22);
    transition: 0.22s ease;
    white-space: nowrap;
}

.header-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(39, 174, 96, 0.28);
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #eef5ff;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--dm-blue-dark);
    transition: 0.22s ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1500;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, 88vw);
    height: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: 0.25s ease;
    overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--dm-border);
}

.mobile-menu-head strong,
.mobile-menu-head small {
    display: block;
}

.mobile-menu-head strong {
    font-size: 18px;
    font-weight: 900;
}

.mobile-menu-head small {
    margin-top: 4px;
    color: var(--dm-muted);
    font-weight: 700;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #eef5ff;
    color: var(--dm-blue-dark);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: grid;
    gap: 10px;
    padding: 22px 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--dm-text);
    background: #f8fbff;
    font-weight: 900;
    border: 1px solid transparent;
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--dm-blue);
    border-color: rgba(47, 128, 237, 0.22);
    background: #eef5ff;
}

.mobile-contact-card {
    margin-top: 10px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef5ff, #f1fbf6);
    border: 1px solid rgba(47, 128, 237, 0.12);
    display: grid;
    gap: 8px;
}

.mobile-contact-card span {
    color: var(--dm-muted);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.8px;
}

.mobile-contact-card a {
    color: var(--dm-blue-dark);
    text-decoration: none;
    font-weight: 900;
}

.footer-donation-ribbon {
    background: linear-gradient(135deg, var(--dm-blue), var(--dm-green));
    color: #fff;
    padding: 58px 0;
}

.footer-donation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.footer-donation-inner span {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 10px;
}

.footer-donation-inner h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}

.footer-donation-inner p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    max-width: 760px;
}

.footer-ribbon-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--dm-blue);
    text-decoration: none;
    font-weight: 900;
}

.site-footer {
    background: #0f233d;
    color: #dbeafe;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 36px;
    padding: 64px 0 46px;
}

.footer-brand {
    min-width: auto;
    color: #fff;
    margin-bottom: 18px;
}

.footer-brand small {
    color: #bdd7ff;
}

.footer-brand-col p {
    margin: 0;
    line-height: 1.8;
    color: #bdd7ff;
    max-width: 420px;
}

.footer-col h3 {
    color: #fff;
    font-size: 17px;
    margin: 0 0 16px;
    font-weight: 900;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-col a,
.footer-contact p {
    color: #bdd7ff;
    text-decoration: none;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    margin: 0 0 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #bdd7ff;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 900px) {
    .top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .top-note {
        display: none;
    }

    .footer-donation-inner,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .top-contact {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        font-size: 12px;
    }

    .brand {
        min-width: 0;
    }

    .header-donate-btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .footer-donation-inner h2 {
        font-size: 25px;
    }
}


/* HOME MODERN SECTIONS */

.home-hero{position:relative;min-height:78vh;overflow:hidden;background:#123}.home-hero-slides{position:relative;min-height:78vh}.home-hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .7s ease,visibility .7s ease;background-size:cover;background-position:center;display:flex;align-items:center}.home-hero-slide.active{opacity:1;visibility:visible;position:relative}.home-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,41,75,.86) 0%,rgba(15,41,75,.56) 55%,rgba(15,41,75,.25) 100%)}.home-hero-inner{position:relative;z-index:2;width:100%;padding:105px 0}.home-hero-content{max-width:760px;color:#fff}.home-eyebrow,.home-kicker{display:inline-block;text-transform:uppercase;letter-spacing:1px;font-size:13px;font-weight:900}.home-eyebrow{color:#f2c94c;margin-bottom:14px}.home-hero-content h1{font-size:clamp(38px,5.8vw,72px);line-height:1.05;margin:0 0 20px;font-weight:900}.home-hero-content p{font-size:20px;line-height:1.75;max-width:680px;color:rgba(255,255,255,.94);margin:0 0 28px}.home-hero-actions{display:flex;gap:14px;flex-wrap:wrap}.home-btn{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:0 24px;border-radius:999px;text-decoration:none;font-weight:900;transition:.22s ease}.home-btn.primary{background:linear-gradient(135deg,#2f80ed,#27ae60);color:#fff;box-shadow:0 18px 38px rgba(47,128,237,.28)}.home-btn.primary:hover{transform:translateY(-2px)}.home-btn.ghost{color:#fff;border:1px solid rgba(255,255,255,.42);background:rgba(255,255,255,.15)}.home-hero-dots{position:absolute;z-index:5;left:50%;bottom:26px;transform:translateX(-50%);display:flex;gap:9px}.home-hero-dots button{width:12px;height:12px;border:0;border-radius:999px;background:rgba(255,255,255,.55);cursor:pointer}.home-hero-dots button.active{width:34px;background:#fff}.home-section,.home-map-section{padding:86px 0}.soft-bg{background:#f3f8fd}.home-section-heading{margin-bottom:42px}.home-section-heading.centered{text-align:center;max-width:860px;margin-left:auto;margin-right:auto}.home-kicker{color:#2f80ed;margin-bottom:10px}.home-section-heading h2,.home-section-head-row h2{font-size:clamp(30px,4vw,44px);line-height:1.18;margin:0 0 12px;font-weight:900;color:#152033}.home-section-heading p{font-size:18px;line-height:1.7;color:#6b7280;margin:0}.home-info-grid,.home-card-grid.three,.home-doc-grid,.home-gallery-grid{display:grid;gap:24px}.home-info-grid,.home-card-grid.three{grid-template-columns:repeat(3,1fr)}.home-doc-grid{grid-template-columns:repeat(3,1fr)}.home-gallery-grid{grid-template-columns:repeat(3,1fr)}.home-info-card{background:#fff;border:1px solid rgba(15,23,42,.06);border-radius:26px;padding:34px 28px;text-align:center;box-shadow:0 18px 45px rgba(15,23,42,.08)}.home-info-icon{width:70px;height:70px;margin:0 auto 18px;border-radius:24px;display:flex;align-items:center;justify-content:center;background:#eef5ff;font-size:34px}.home-info-card h3{font-size:23px;margin:0 0 10px;color:#152033}.home-info-card p{color:#6b7280;line-height:1.7;margin:0}.home-section-head-row{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:30px}.home-section-head-row a,.home-map-link{font-weight:900;color:#2f80ed;text-decoration:none}.home-doc-card{display:flex;gap:16px;align-items:center;background:#fff;border-radius:20px;padding:22px;text-decoration:none;color:#152033;box-shadow:0 14px 34px rgba(15,23,42,.08);border:1px solid rgba(15,23,42,.06)}.home-doc-icon{width:54px;height:54px;border-radius:17px;background:#eef5ff;display:flex;align-items:center;justify-content:center;font-size:25px;flex-shrink:0}.home-doc-card strong{display:block;font-size:17px}.home-doc-card small{display:block;margin-top:5px;color:#6b7280}.home-map-section{background:#fff}.home-map-card{overflow:hidden;border-radius:26px;box-shadow:0 18px 50px rgba(15,23,42,.14);border:1px solid rgba(15,23,42,.08)}.home-map-link{display:inline-flex;margin-top:14px}.empty{color:#6b7280;font-weight:700}.cards.three,.feature-grid,.section,.hero{display:none!important}@media(max-width:991px){.home-info-grid,.home-card-grid.three,.home-doc-grid,.home-gallery-grid{grid-template-columns:1fr}.home-section-head-row{align-items:flex-start;flex-direction:column}.home-hero-inner{padding:78px 0}.home-hero-content p{font-size:18px}}@media(max-width:576px){.home-hero,.home-hero-slides{min-height:70vh}.home-hero-actions{flex-direction:column}.home-btn{width:100%}.home-section,.home-map-section{padding:62px 0}}
