/* Lok Astha Sewa Sansthan - Premium NGO Website Styles */
:root {
    --primary: #0f6b3c;
    --primary-dark: #0a3d24;
    --primary-light: #c5e6d4;
    --accent: #c2410c;
    --accent-dark: #9a3412;
    --cream: #F7F3EA;
    --light-green: #eef6f1;
    --text-dark: #0b1220;
    --text-muted: #1e293b;
    --text-soft: #334155;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --header-height: 80px;
    --topbar-height: 0px;
    --nav-height: 80px;
    --focus-ring: 0 0 0 3px rgba(15, 107, 60, 0.35);
}

@media (max-width: 991px) {
    :root {
        --topbar-height: 36px;
        --nav-height: 64px;
        --header-height: calc(var(--topbar-height) + var(--nav-height));
    }
}

[data-theme="dark"] {
    --white: #1a1a2e;
    --text-dark: #f8fafc;
    --text-muted: #cbd5e1;
    --text-soft: #94a3b8;
    --cream: #16213e;
    --light-green: #1a2744;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); overflow-x: hidden; max-width: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.doc-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Faster paint for below-fold blocks */
.section-padding,
.docs-page,
.our-work-page,
.team-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.text-muted,
.text-secondary,
.form-control::placeholder,
textarea::placeholder,
input::placeholder {
    color: var(--text-soft) !important;
    opacity: 1;
}

@media (min-width: 992px) {
    :root {
        --topbar-height: 38px;
        --header-height: calc(var(--topbar-height) + var(--nav-height));
    }
}

@media (min-width: 992px) { body { padding-bottom: 0; } }
@media (max-width: 991px) { body { padding-bottom: 70px; } }

img { max-width: 100%; height: auto; display: block; }

section, .container, .row { max-width: 100%; }

a { text-decoration: none; transition: var(--transition); }

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 99999;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
    transition: opacity .6s ease, visibility .6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-content {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px;
    max-width: 90vw;
}
.loading-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loading-logo img {
    width: 96px;
    height: 96px;
    max-width: 28vw;
    max-height: 28vw;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.logo-pulse { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.loading-title {
    margin: 16px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}
.loading-bar-container {
    width: min(200px, 70vw);
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 4px;
    margin: 20px auto 12px;
    overflow: hidden;
}
.loading-bar {
    height: 100%; width: 0; background: var(--accent);
    border-radius: 4px; transition: width .3s ease;
}
.loading-text { font-size: .85rem; opacity: .7; margin: 0; }

/* Site Header + Top Bar */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    max-width: 100%;
}
.top-bar {
    background: #0a3d24;
    color: rgba(255,255,255,.88);
    height: var(--topbar-height);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .78rem;
}
.top-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--topbar-height); gap: 16px;
}
.top-bar-contact {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.top-bar-item {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.85); text-decoration: none !important;
    transition: color .2s;
}
.top-bar-item i { color: var(--accent); font-size: .82rem; }
.top-bar-item:hover { color: #fff; }
.top-bar-item span { white-space: nowrap; }
.top-bar-social {
    display: flex; align-items: center; gap: 6px;
}
.top-bar-social a {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.85); background: rgba(255,255,255,.08);
    font-size: .85rem; text-decoration: none !important;
    transition: all .2s;
}
.top-bar-social a:hover {
    background: var(--accent); color: #1a1a2e; transform: translateY(-1px);
}

/* Header Glassmorphism */
.header-glass {
    position: relative;
    height: var(--nav-height);
    background: linear-gradient(180deg, rgba(15, 81, 50, 0.92) 0%, rgba(15, 81, 50, 0.75) 100%);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.header-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(21, 115, 71, 0.1);
}
.site-header.scrolled .top-bar { display: none !important; }
.site-header.scrolled { --topbar-height: 0px; --header-height: var(--nav-height); }
.header-glass .navbar { height: var(--nav-height); padding: 0; }
.header-glass .navbar-brand {
    padding: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    max-height: var(--nav-height);
}
.logo-img {
    /* Fill nav bar height without changing header size */
    max-height: 70px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.header-glass:not(.scrolled) .logo-img {
    background: #fff;
    border-radius: 8px;
    padding: 2px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 72px;
}
.header-glass.scrolled .logo-img {
    max-height: 68px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.header-glass .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
    font-size: .82rem;
    padding: 8px 12px !important;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: color .25s ease, background .25s ease;
}
.header-glass .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}
.header-glass .nav-link.active {
    color: var(--accent) !important;
    background: rgba(245, 158, 11, 0.15);
}
.header-glass.scrolled .nav-link {
    color: var(--text-dark) !important;
}
.header-glass.scrolled .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(21, 115, 71, 0.08);
}
.header-glass.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: rgba(21, 115, 71, 0.1);
    font-weight: 600;
}
.header-glass .navbar-toggler { color: #fff; }
.header-glass.scrolled .navbar-toggler { color: var(--primary); }
.btn-donate {
    background: var(--accent) !important;
    color: #1a1a2e !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: var(--transition);
}
.btn-donate:hover {
    background: #fff !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.header-glass.scrolled .btn-donate {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(21, 115, 71, 0.25);
}
.header-glass.scrolled .btn-donate:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary); color: #fff; border: none;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
    transition: var(--transition);
}
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent-custom {
    background: var(--accent); color: #fff; border: none;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
}
.btn-accent-custom:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-primary-custom {
    border: 2px solid var(--primary); color: var(--primary);
    padding: 12px 28px; border-radius: 50px; font-weight: 600; background: transparent;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }
.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,.6); color: #fff;
    padding: 12px 28px; border-radius: 50px; font-weight: 600; background: transparent;
}
.btn-outline-light-custom:hover { background: #fff; color: var(--primary); }

/* Hero */
.hero-slider { margin-top: 0; overflow: hidden; max-width: 100%; }
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item { overflow: hidden; max-width: 100%; }
.hero-slide {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: center;
    width: 100%; max-width: 100%; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(15,81,50,.55) 50%, rgba(245,158,11,.15) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: calc(var(--header-height) + 48px) 0 130px;
    width: 100%; max-width: 100%;
    box-sizing: border-box;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,158,11,.9); color: #1a1a2e;
    padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 700; margin-bottom: 20px;
    max-width: 100%;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    word-wrap: break-word; overflow-wrap: break-word;
    padding-right: 8px;
}
.hero-subtitle {
    color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 600px;
    margin-bottom: 28px; word-wrap: break-word; line-height: 1.55;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 2px 2px 4px;
    box-sizing: border-box;
}
.hero-buttons .btn {
    box-sizing: border-box;
    flex: 0 0 auto;
    max-width: 100%;
}
.hero-impact-card {
    position: absolute; bottom: 48px; right: 16px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff; padding: 14px 20px; border-radius: var(--radius);
    display: flex; align-items: center; gap: 10px; font-weight: 500;
    box-shadow: var(--shadow-lg); max-width: min(350px, calc(100% - 32px));
    z-index: 3;
}
.hero-impact-card span { word-wrap: break-word; line-height: 1.4; }
.hero-impact-card i { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.carousel-indicators { bottom: 20px; z-index: 4; }
.carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6); background: transparent;
}
.carousel-indicators .active { background: var(--accent); border-color: var(--accent); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 44px;
    opacity: .65;
    z-index: 5;
}
.hero-slider .carousel-control-prev { left: 6px; }
.hero-slider .carousel-control-next { right: 6px; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }

@media (min-width: 992px) {
    .hero-content {
        padding-left: 52px;
        padding-right: 52px;
    }
    .hero-impact-card {
        right: 52px;
        bottom: 56px;
    }
}

/* Animations */
.animate-fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Stats */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-green) 100%);
    margin-top: -28px; position: relative; z-index: 10;
}
.stats-section .row { align-items: stretch; }
.stat-card {
    text-align: center; padding: 24px 12px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); transition: var(--transition);
    border: 1px solid rgba(21,115,71,.08);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    height: 100%; min-height: 160px;
    max-width: 100%; min-width: 0;
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Leadership / Team */
.team-section { background: #fff; }
.team-card {
    text-align: center;
    padding: 8px 6px 16px;
}
.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 14px;
    border-radius: 50%;
    padding: 4px;
    background: #fff;
    border: 3px solid var(--team-ring, var(--primary));
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.12);
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.team-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 4px;
}
.team-card span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Awards */
.award-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 12px;
    padding: 16px 12px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.award-card img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
}
.award-card span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .team-photo { width: 110px; height: 110px; }
    .award-card img { max-height: 140px; }
}
.stat-icon {
    font-size: 1.4rem; color: #fff; margin-bottom: 12px;
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(21,115,71,.25); flex-shrink: 0;
}
.stat-value {
    display: flex; align-items: baseline; justify-content: center;
    flex-wrap: nowrap; white-space: nowrap;
    line-height: 1.1; margin-bottom: 6px;
    max-width: 100%; min-width: 0; overflow: hidden;
}
.stat-number { font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 800; color: var(--primary); }
.stat-suffix { font-size: clamp(.9rem, 2vw, 1.3rem); font-weight: 700; color: var(--primary); margin-left: 1px; flex-shrink: 0; }
.stat-label {
    font-size: .78rem; color: var(--text-muted); font-weight: 600;
    line-height: 1.35; margin-top: auto; padding-top: 4px;
    min-height: 2.7em; display: flex; align-items: center; justify-content: center;
}

/* About Intro */
.about-intro { background: var(--white); }
.about-image-wrap { position: relative; }
.about-main-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
}
.about-float-card {
    position: absolute; bottom: 24px; left: -16px;
    background: var(--accent); color: #1a1a2e;
    padding: 16px 20px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg); font-size: .9rem;
}
.about-float-card i { font-size: 1.8rem; }
.about-float-card strong { display: block; font-size: 1.4rem; line-height: 1.1; }
.about-float-card span { font-size: .8rem; font-weight: 500; }
.about-image-accent {
    position: absolute; top: -16px; right: -16px;
    width: 120px; height: 120px; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light), rgba(245,158,11,.2));
    z-index: -1;
}
.about-lead { font-size: 1.05rem; color: var(--text-dark); font-weight: 500; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.about-feature-item {
    display: flex; align-items: center; gap: 12px;
    font-size: .9rem; font-weight: 500;
}
.about-feature-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Mission Cards */
.mission-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-card-img { position: relative; height: 160px; overflow: hidden; }
.mission-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mission-card:hover .mission-card-img img { transform: scale(1.08); }
.mission-card-icon {
    position: absolute; bottom: -18px; right: 16px;
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: var(--shadow-md); border: 3px solid #fff;
}
.mission-card-body { padding: 28px 20px 20px; }
.mission-card-body h5 { font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.mission-card-body p { color: var(--text-muted); font-size: .85rem; margin: 0; line-height: 1.6; }

/* Impact Banner */
.impact-banner {
    position: relative; padding: 80px 0; overflow: hidden;
}
.impact-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed;
}
.impact-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,81,50,.92) 0%, rgba(21,115,71,.85) 50%, rgba(245,158,11,.3) 100%);
}
.impact-banner-content { position: relative; z-index: 2; color: #fff; }
.impact-banner-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: #1a1a2e;
    padding: 6px 16px; border-radius: 50px;
    font-size: .8rem; font-weight: 700; margin-bottom: 16px;
}
.impact-banner h2 {
    font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700; margin-bottom: 16px; color: #fff;
}
.impact-banner p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 600px; margin: 0; }

/* Brand photo strip — compact infinite scroll */
.brand-strip {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 14px 0;
    background: linear-gradient(180deg, #0f5132 0%, #0a3d26 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand-strip-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    z-index: 2;
    pointer-events: none;
}
.brand-strip-fade--left {
    left: 0;
    background: linear-gradient(90deg, #0a3d26 0%, transparent 100%);
}
.brand-strip-fade--right {
    right: 0;
    background: linear-gradient(270deg, #0a3d26 0%, transparent 100%);
}
.brand-strip-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: brandStripScroll 32s linear infinite;
    will-change: transform;
    padding: 0 8px;
}
.brand-strip:hover .brand-strip-track {
    animation-play-state: paused;
}
@keyframes brandStripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.brand-strip-item {
    flex-shrink: 0;
    width: 148px;
    height: 92px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.brand-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
    transition: transform 0.45s ease;
}
.brand-strip-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Legacy alias (if referenced elsewhere) */
.photo-showcase { overflow: hidden; padding: 0; background: var(--primary-dark); max-width: 100%; width: 100%; }
.photo-showcase-track {
    display: flex; gap: 4px;
    animation: photoScroll 40s linear infinite;
    width: max-content; will-change: transform;
}
.photo-showcase-track:hover { animation-play-state: paused; }
@keyframes photoScroll { to { transform: translateX(-50%); } }
.photo-showcase-item {
    flex-shrink: 0; width: 280px; height: 180px; overflow: hidden;
}
.photo-showcase-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s; opacity: .85;
}
.photo-showcase-item:hover img { transform: scale(1.1); opacity: 1; }

/* Sections */
.section-padding { padding: 80px 0; }
.section-padding--tight { padding: 56px 0; }

.stats-section--dense { padding: 40px 0 48px; }
.stats-header { margin-bottom: 24px; }
.stats-header .section-title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 0; }
.stat-card--compact { padding: 14px 12px; }
.stat-card--compact .stat-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 8px; }
.stat-card--compact .stat-value { font-size: 1.35rem; }
.stat-card--compact .stat-label { font-size: 0.72rem; line-height: 1.3; }
/* Impact + Awards: single row on desktop */
@media (min-width: 992px) {
    .stats-one-row,
    .awards-one-row {
        flex-wrap: nowrap;
    }
    .stats-one-row > [class*="col"],
    .awards-one-row > [class*="col"] {
        flex: 1 1 0;
        width: 0;
        max-width: none;
    }
}
.awards-one-row .award-card--summary {
    padding: 10px 8px 12px;
}
.awards-one-row .award-card img {
    max-height: 110px;
}
.awards-one-row .award-card--summary strong {
    font-size: 0.72rem;
    -webkit-line-clamp: 2;
}
.awards-one-row .award-summary {
    display: none;
}
.awards-one-row .award-card-actions {
    justify-content: center;
}
.awards-one-row .doc-btn {
    font-size: 0.68rem;
    padding: 3px 8px;
}

.award-card--summary {
    text-align: left;
    gap: 8px;
}
.award-card--summary strong {
    font-size: 0.88rem;
    color: var(--primary-dark);
    line-height: 1.3;
}
.award-summary {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.award-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    width: 100%;
}
.team-readmore {
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.team-readmore:hover { color: var(--primary-dark); }

.about-link-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.about-link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.about-link-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-link-card strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}
.about-link-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.report-cat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}
.report-cat-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
}
.report-cat-card:hover,
.report-cat-card.is-active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.report-cat-card i {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 2px;
}
.report-cat-card strong {
    font-size: 0.92rem;
    color: var(--primary-dark);
    line-height: 1.25;
}
.report-cat-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}
.report-cat-card em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}
@media (min-width: 768px) {
    .report-cat-card {
        flex: 1 1 calc(20% - 12px);
        min-width: 0;
    }
}
@media (min-width: 992px) {
    .report-cat-grid {
        flex-wrap: nowrap;
    }
    .report-cat-card {
        flex: 1 1 0;
        width: 0;
    }
}

.reports-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 12px;
}
.reports-teaser-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.story-card--link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.story-card--link .story-image { height: 160px; }
.story-card--link .story-body h4 { font-size: 0.95rem; }
.story-card--link .story-body p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-home-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease;
}
.news-home-card:hover { box-shadow: var(--shadow-md); }
.news-home-card img { width: 100%; height: 140px; object-fit: cover; }
.news-home-card > div { padding: 12px 14px; }
.news-home-card h4 { font-size: 0.95rem; margin: 0 0 6px; color: var(--primary-dark); }
.news-home-card p { margin: 0; font-size: 0.8rem; color: var(--text-muted); }

.partners-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}
.partners-strip-item {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 140px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.partners-strip-item:hover {
    border-color: rgba(15, 81, 50, 0.2);
    box-shadow: var(--shadow-md);
}
.partners-strip-item a { text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; width: 100%; }
.partners-strip-item img {
    max-height: 52px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}
.partners-strip-item span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}
@media (min-width: 768px) {
    .partners-strip-item {
        flex: 1 1 calc(16.666% - 12px);
        min-width: 0;
    }
}
@media (min-width: 992px) {
    .partners-strip {
        flex-wrap: nowrap;
    }
    .partners-strip-item {
        flex: 1 1 0;
        width: 0;
        min-width: 0;
        padding: 18px 10px;
    }
}

/* Awards detail page */
.awards-detail-list { display: flex; flex-direction: column; gap: 20px; }
.award-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 12px;
    padding: 16px;
    align-items: start;
}
.award-detail-media img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    background: #f7f8f6;
    border-radius: 8px;
}
.award-detail-body h2 {
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--primary-dark);
}
.award-detail-summary {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.award-detail-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.value-card {
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}
.value-card h3 { font-size: 1rem; margin: 0 0 6px; color: var(--primary-dark); }
.value-card p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

.board-list { display: flex; flex-direction: column; gap: 16px; }
.board-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 12px;
    padding: 14px;
}
.board-card-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}
.board-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.board-card-body h3 { font-size: 1.05rem; margin: 0 0 4px; color: var(--primary-dark); }
.board-role { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.board-card-body p { margin: 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.policy-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    height: 100%;
}
.policy-chip i { color: var(--primary); }

.org-placeholder {
    text-align: center;
    padding: 32px 16px;
    background: #f7f8f6;
    border: 1px dashed rgba(15, 81, 50, 0.25);
    border-radius: 12px;
    color: var(--text-muted);
}
.org-placeholder i { font-size: 2rem; display: block; margin-bottom: 8px; color: var(--primary); }

.about-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 12px;
}
.about-cta-bar h3 { font-size: 1.05rem; color: var(--primary-dark); }

.partner-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .award-detail { grid-template-columns: 1fr; }
    .board-card { grid-template-columns: 80px 1fr; }
    .board-card-photo { width: 80px; height: 80px; }
}

@media (max-width: 767px) {
    .reports-teaser { padding: 16px; }
    .reports-teaser-actions { width: 100%; }
    .reports-teaser-actions .btn { flex: 1; }
}
.bg-cream { background: var(--cream); }
.bg-light-green { background: var(--light-green); }
.section-header { margin-bottom: 36px; }
.section-badge {
    display: inline-block; background: var(--primary-dark); color: #fff;
    padding: 6px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700; color: var(--primary-dark); margin-bottom: 12px;
}
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-weight: 600; }

/* Focus Cards — compact, image-first */
.focus-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 81, 50, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
    border: 1px solid rgba(21, 115, 71, 0.08);
    display: flex;
    flex-direction: column;
}
.focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 81, 50, 0.12);
}
.focus-image {
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
    overflow: hidden;
    background: #e8f0eb;
}
.focus-image::after { display: none; }
.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}
.focus-image img[src$=".svg"] {
    object-fit: cover;
    padding: 0;
    background: #e8f0eb;
}
.focus-card:hover .focus-image img { transform: scale(1.04); }
.focus-icon { display: none !important; }
.focus-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Our Work page — larger “What We Focus On” style cards */
.our-work-page { background: var(--cream, #f7f5f0); }
.our-work-intro-html {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.our-work-intro-html p { margin-bottom: 0.35rem; }
.our-work-intro-html p:last-child { margin-bottom: 0; }

.focus-card--page {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 81, 50, 0.07);
}
.focus-card--page .focus-image {
    aspect-ratio: 4 / 3;
    min-height: 200px;
}
.focus-card--page .focus-body {
    padding: 18px 18px 20px;
    gap: 8px;
}
.focus-card--page .focus-body h4 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--primary-dark);
    line-height: 1.3;
}
.focus-card--page .focus-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.focus-page-num {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(15, 81, 50, 0.88);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 6px;
}
.focus-card--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.focus-readmore {
    margin-top: auto;
    padding-top: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}
.focus-readmore i { font-size: 0.85rem; }

.our-work-projects { background: #fff; }
.focus-body h4 {
    font-weight: 700;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--primary-dark);
    font-family: inherit;
}
.focus-body p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 575px) {
    .focus-body { padding: 10px 11px 12px; }
    .focus-body h4 { font-size: 0.88rem; }
    .focus-body p { font-size: 0.74rem; -webkit-line-clamp: 2; }
}

/* Story Cards */
.story-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.story-image { height: 240px; overflow: hidden; position: relative; background: #eef6f1; }
.story-image::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image img[src$=".svg"] { object-fit: contain; padding: 36px; background: #eef6f1; }
.story-body { padding: 24px; }
.story-body h4 { font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; }
.story-body p { color: var(--text-muted); font-size: .9rem; }
.read-more { color: var(--primary); font-weight: 600; font-size: .9rem; }
.read-more:hover { color: var(--accent); }
.read-more i { transition: transform .3s; }
.read-more:hover i { transform: translateX(4px); }

/* Project Cards */
.project-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.project-image { position: relative; height: 200px; overflow: hidden; background: #eef6f1; }
.project-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,81,50,.5) 0%, transparent 60%);
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-image img[src$=".svg"] { object-fit: contain; padding: 28px; background: #eef6f1; }
.project-status {
    position: absolute; top: 12px; right: 12px;
    background: var(--primary); color: #fff;
    padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600;
}
.project-body { padding: 20px; }
.project-body h5 { font-weight: 700; margin-bottom: 8px; }
.project-body p { color: var(--text-muted); font-size: .85rem; }
.progress { height: 6px; border-radius: 3px; background: #e9ecef; }
.progress-bar { background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; }

/* Timeline */
.timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; padding-left: 40px; }
.timeline-wrapper::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 40px; padding-left: 30px; }
.timeline-dot {
    position: absolute; left: -33px; top: 0;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px var(--light-green);
}
.timeline-year { color: var(--accent); font-weight: 700; font-size: .9rem; }
.timeline-content h5 { font-weight: 700; margin: 4px 0 8px; }
.timeline-content p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-btn {
    border: 2px solid var(--primary); background: transparent; color: var(--primary);
    padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: .85rem;
    cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; }
.gallery-card {
    position: relative; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer; aspect-ratio: 1;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(15,81,50,.72);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 12px; opacity: 0; transition: var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 1.6rem; }
.gallery-card-title {
    color: #fff; font-size: .82rem; font-weight: 600; text-align: center;
    line-height: 1.3; max-width: 100%;
}
.gallery-item-text {
    margin: 8px 2px 0; font-size: .8rem; color: var(--text-muted);
    line-height: 1.4; font-weight: 500;
}
.gallery-card:hover img { transform: scale(1.1); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-item.hidden { display: none; }
.gallery-empty {
    max-width: 480px; margin: 0 auto; padding: 48px 20px;
    border: 1px dashed #c5d4cb; border-radius: var(--radius);
    background: #f8fbf9;
}
.gallery-empty-icon {
    width: 72px; height: 72px; margin: 0 auto;
    border-radius: 50%; background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
}

/* CMS classic page content */
.cms-content {
    color: var(--text-dark);
    font-size: .95rem;
    line-height: 1.7;
    font-weight: 500;
}
.cms-content h2,
.cms-content h3,
.cms-content h4 {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1.25rem 0 .6rem;
}
.cms-content h2 { font-size: 1.45rem; }
.cms-content h3 { font-size: 1.15rem; }
.cms-content p { margin: 0 0 .9rem; color: var(--text-muted); }
.cms-content ul,
.cms-content ol { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--text-muted); }
.cms-content li { margin-bottom: .35rem; }
.cms-content strong { color: var(--text-dark); }
.cms-content--intro { max-width: 720px; margin-left: auto; margin-right: auto; }
.cms-content--donate,
.cms-content--donate p,
.cms-content--donate h2,
.cms-content--donate h3 { color: rgba(255,255,255,.92); }
.cms-content--donate h2,
.cms-content--donate h3 { color: #fff; }
.cms-content--donate strong { color: #fff; }

/* About page — clean minimal */
.about-page {
    padding-top: 40px;
    padding-bottom: 56px;
    background: #fff;
}
.about-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.about-head {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5ebe7;
}
.about-head-text .section-badge { margin-bottom: 8px; }
.about-head-text h2 {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--primary-dark);
    letter-spacing: -.02em;
}
.about-head-text p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 560px;
}
.about-head-photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light-green);
    border: 1px solid #e5ebe7;
}
.about-head-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-head-years {
    position: absolute; left: 8px; bottom: 8px;
    background: rgba(15,81,50,.92); color: #fff;
    font-size: .72rem; font-weight: 700;
    padding: 4px 8px; border-radius: 3px;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e5ebe7;
    border: 1px solid #e5ebe7;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}
.about-fact {
    background: #f8faf9;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-fact--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
}
.about-fact span {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-soft);
}
.about-fact strong {
    font-size: .95rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.about-pillar {
    padding: 16px 16px 14px;
    border: 1px solid #e5ebe7;
    border-radius: 4px;
    background: #fff;
}
.about-pillar h3 {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex; align-items: center; gap: 8px;
}
.about-pillar h3 i { color: var(--accent-dark); font-size: .95rem; }
.about-pillar p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-weight: 500;
}

.about-meta {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e5ebe7;
}
.about-meta-block h4 {
    margin: 0 0 8px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-soft);
}
.about-meta-block p {
    margin: 0 0 4px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
}
.about-meta-block p span {
    display: inline-block;
    min-width: 120px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-soft);
}
.about-meta-block a { color: var(--primary-dark); text-decoration: none; }
.about-meta-block a:hover { text-decoration: underline; }
.about-meta-block--action {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-meta-btn {
    border-radius: 4px !important;
    padding: 10px 18px !important;
    font-size: .85rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 991px) {
    .about-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-head-photo {
        width: 160px;
        aspect-ratio: 1;
    }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .about-fact--wide { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
    .about-pillars { grid-template-columns: 1fr; gap: 10px; }
    .about-meta {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-meta-block--action { flex-direction: row; flex-wrap: wrap; }
    .about-meta-btn { flex: 1; min-width: 140px; }
}

@media (max-width: 575px) {
    .about-facts { grid-template-columns: 1fr; }
    .about-head-text h2 { font-size: 1.3rem; }
}

/* Our Work page — compact line-by-line */
.page-hero--compact { padding: calc(var(--header-height) + 36px) 0 36px; }
.page-hero--slim {
    padding: calc(var(--header-height) + 18px) 0 18px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.page-hero-slim-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    flex-wrap: wrap;
}
.page-hero--slim h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.breadcrumb-nav--inline {
    margin: 0;
    justify-content: flex-end;
    font-size: 0.8rem;
}

/* Documents / Publications — compact list */
.docs-page {
    padding: 28px 0 56px;
    background: #f7f8f6;
}
.docs-intro {
    max-width: 640px;
    margin: 0 0 18px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.docs-intro p { margin: 0 0 0.4em; }
.docs-intro p:last-child { margin-bottom: 0; }
.docs-intro h1, .docs-intro h2, .docs-intro h3 {
    font-size: 1rem;
    margin: 0 0 0.35em;
    color: var(--primary-dark);
}
.report-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.report-card {
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(15, 81, 50, 0.05);
    transition: box-shadow .2s ease, transform .2s ease;
}
.report-card:hover {
    box-shadow: 0 8px 22px rgba(15, 81, 50, 0.1);
    transform: translateY(-3px);
}
.report-card-cover {
    aspect-ratio: 3 / 4;
    background: #e8f0eb;
    overflow: hidden;
}
.report-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.report-card-cover--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fef2f2, #fff5f5);
    color: #dc2626;
    font-size: 3rem;
}
.report-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.report-card-title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}
.report-card-desc {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.report-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}
.doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(15, 81, 50, 0.08);
    transition: background 0.2s ease;
}
.doc-row:last-child { border-bottom: 0; }
.doc-row:hover { background: #fafcfb; }
.doc-row-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.docs-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.35rem;
    overflow: hidden;
}
.docs-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.docs-icon--pdf { background: #fef2f2; color: #dc2626; }
.docs-icon--doc { background: #eff6ff; color: #2563eb; }
.doc-row-body { min-width: 0; }
.doc-title {
    margin: 0 0 2px;
    font-size: 0.98rem;
    font-weight: 650;
    color: var(--primary-dark);
    line-height: 1.35;
    font-family: inherit;
}
.doc-desc {
    margin: 0 0 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.doc-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.doc-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    background: #e8f5ee;
    color: var(--primary-dark);
}
.doc-tag--muted {
    background: #f1f3f2;
    color: #5a6b62;
    font-weight: 600;
}
.doc-row-actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}
.doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.doc-btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}
.doc-btn--primary:hover { background: var(--primary-dark); color: #fff; }
.doc-btn--ghost {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid rgba(15, 81, 50, 0.22);
}
.doc-btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f3faf6;
}
.docs-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.docs-tab {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.15);
}
.docs-tab.active,
.docs-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.docs-group-title {
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 0 0 10px;
}
.partner-card {
    background: #fff;
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 10px;
}
.docs-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-muted);
    background: #fff;
    border: 1px dashed rgba(15, 81, 50, 0.2);
    border-radius: 10px;
}
.docs-empty i { font-size: 2rem; display: block; margin-bottom: 8px; opacity: 0.55; }
.docs-empty p { margin: 0; font-size: 0.92rem; }

@media (max-width: 767px) {
    .page-hero--slim { padding: calc(var(--header-height) + 14px) 0 14px; }
    .page-hero-slim-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .breadcrumb-nav--inline { justify-content: flex-start; }
    .docs-page { padding: 20px 0 40px; }
    .doc-row {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        gap: 12px;
    }
    .doc-row-actions { width: 100%; }
    .doc-btn { flex: 1; justify-content: center; }
}

.our-work-page { background: #fff; padding-top: 48px; padding-bottom: 48px; }
.our-work-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}
.our-work-intro--left {
    text-align: left;
    margin: 0 0 18px;
    max-width: none;
}
.our-work-intro .section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.our-work-intro .section-subtitle { margin-top: 0; font-size: .92rem; }

.our-work-lines {
    border: 1px solid #d5e0d9;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}
.our-work-line {
    display: grid;
    grid-template-columns: 48px 88px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e4ece7;
    transition: background .15s ease;
}
.our-work-line:last-child { border-bottom: 0; }
.our-work-line:hover { background: #f6faf7; }
.our-work-line-num {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--accent-dark);
    text-align: center;
}
.our-work-line-thumb {
    width: 88px; height: 64px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-green);
    border: 1px solid #d8e3dc;
}
.our-work-line-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.our-work-line-body { min-width: 0; }
.our-work-line-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 4px;
}
.our-work-line-body h3 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.3;
}
.our-work-line-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.5;
    font-weight: 500;
}
.our-work-line-icon {
    width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .9rem;
}

.our-work-projects {
    background: #f7faf8;
    padding-top: 40px;
    padding-bottom: 40px;
}
.our-work-project-lines {
    border: 1px solid #d5e0d9;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}
.our-work-project-line {
    display: grid;
    grid-template-columns: 72px 1fr 24px;
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e4ece7;
    text-decoration: none !important;
    color: inherit;
    transition: background .15s ease;
}
.our-work-project-line:last-child { border-bottom: 0; }
.our-work-project-line:hover { background: #f6faf7; }
.our-work-project-thumb {
    width: 72px; height: 52px; border-radius: 4px; overflow: hidden;
    background: var(--light-green); border: 1px solid #d8e3dc;
}
.our-work-project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.our-work-project-top {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 2px;
}
.our-work-project-body h4 {
    margin: 0; font-size: .98rem; font-weight: 800; color: var(--primary-dark);
}
.our-work-project-body p {
    margin: 0; font-size: .84rem; color: var(--text-muted); font-weight: 500; line-height: 1.45;
}
.our-work-project-status {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    color: var(--primary-dark); background: var(--primary-light);
    padding: 3px 8px; border-radius: 3px;
}
.our-work-project-arrow { color: var(--primary); font-size: 1rem; }

.our-work-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 28px 0;
}
.our-work-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.our-work-cta h3 {
    margin: 0 0 4px; color: #fff; font-weight: 800; font-size: 1.2rem;
}
.our-work-cta p {
    margin: 0; color: rgba(255,255,255,.9); font-weight: 500; font-size: .9rem; max-width: 520px;
}
.our-work-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 767px) {
    .our-work-line {
        grid-template-columns: 36px 64px 1fr;
        gap: 10px;
        padding: 12px 12px;
    }
    .our-work-line-thumb { width: 64px; height: 52px; }
    .our-work-line-body h3 { font-size: .95rem; }
    .our-work-line-body p { font-size: .8rem; }
    .our-work-line-icon { width: 28px; height: 28px; font-size: .8rem; }
    .our-work-project-line {
        grid-template-columns: 56px 1fr 18px;
        gap: 10px;
        padding: 10px 12px;
    }
    .our-work-project-thumb { width: 56px; height: 44px; }
    .our-work-cta-inner { text-align: center; justify-content: center; }
    .our-work-cta-actions { justify-content: center; width: 100%; }
    .our-work-cta-actions .btn { flex: 1; min-width: 130px; }
}

/* Partners Carousel */
.partners-carousel { overflow: hidden; padding: 20px 0; max-width: 100%; width: 100%; }
.partners-track {
    display: flex; gap: 40px; animation: scroll 30s linear infinite;
    width: max-content; will-change: transform;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.partner-logo {
    flex-shrink: 0; width: 150px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    filter: grayscale(100%); opacity: .6; transition: var(--transition);
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; }
.partner-logo img { max-height: 60px; max-width: 130px; object-fit: contain; }

/* Donation */
.donation-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative; overflow: hidden;
}
.donation-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/hero-3.jpg') center/cover no-repeat;
    opacity: .12;
}
.donation-section .container { position: relative; z-index: 1; }
.donation-details {
    background: rgba(255,255,255,.1); border-radius: var(--radius);
    padding: 24px; backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    width: 100%;
    max-width: 520px;
}
.bank-detail {
    color: rgba(255,255,255,.9); padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9rem;
    display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap;
    word-break: break-word;
}
.bank-detail:last-child { border-bottom: 0; }
.bank-detail strong { color: var(--accent); min-width: 0; flex: 0 0 auto; }
.donation-qr-card {
    background: var(--white); border-radius: var(--radius);
    padding: 28px 24px; box-shadow: var(--shadow-lg);
    border: 3px solid rgba(245,158,11,.3);
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.donation-qr-card .qr-image { margin-left: auto; margin-right: auto; }
.donation-form .row {
    --bs-gutter-x: 0.75rem;
    margin-left: 0;
    margin-right: 0;
}
.donation-form .row > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
}
.qr-image { max-width: 200px; border-radius: var(--radius-sm); }

/* Newsletter */
.newsletter-section { padding: 0 0 80px; margin-top: -40px; position: relative; z-index: 5; }
.newsletter-box {
    background: var(--white); border-radius: var(--radius);
    padding: 40px; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(21,115,71,.1);
    overflow: hidden;
}
.newsletter-box h3 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.newsletter-image {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow-md);
}
.newsletter-image img { width: 100%; height: 220px; object-fit: cover; }
.newsletter-image-badge {
    position: absolute; bottom: 12px; right: 12px;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.newsletter-input-group .input-group-text {
    background: var(--primary-light); border-color: var(--primary-light);
    color: var(--primary);
}
.newsletter-input-group .form-control { border-color: #e9ecef; padding: 12px 16px; }
.newsletter-input-group .btn { padding: 12px 24px; }

/* Contact — compact editorial style */
.contact-section {
    background: #fff;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 18px;
    background: var(--primary-dark);
    border-radius: 4px;
    overflow: hidden;
}
.contact-info-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    box-shadow: none;
    text-decoration: none !important;
    color: #fff;
    transition: background .2s ease;
    min-height: 100%;
}
.contact-info-tile:last-child { border-right: 0; }
.contact-info-tile:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}
.contact-info-tile-icon {
    width: 36px; height: 36px; border-radius: 4px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: #111; font-size: .95rem;
}
.contact-info-tile h6 {
    margin: 0 0 3px; font-weight: 700; color: #fff; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .04em;
}
.contact-info-tile p {
    margin: 0; color: rgba(255,255,255,.88); font-size: .78rem; line-height: 1.4;
    word-break: break-word; font-weight: 500;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #d8e3dc;
    min-height: 0;
}
.contact-panel-form {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary);
    background: #fbfcfb;
}
.contact-panel-heading {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dce6e0;
}
.contact-panel-heading h3 {
    margin: 0 0 4px;
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.15rem;
    letter-spacing: -.01em;
}
.contact-panel-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: .84rem;
    font-weight: 500;
}
.contact-panel-map {
    position: relative;
    min-height: 420px;
    background: #e8f0eb;
}
.contact-panel-map .map-container {
    position: absolute;
    inset: 0;
    border-radius: 0;
    height: 100%;
    box-shadow: none;
}
.contact-panel-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    display: block;
    border: 0;
}

.contact-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.contact-input {
    position: relative;
}
.contact-input > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    opacity: .85;
    font-size: .9rem;
    pointer-events: none;
    z-index: 2;
}
.contact-input-textarea > i {
    top: 12px;
    transform: none;
}
.contact-form .row { --bs-gutter-y: 0.7rem; }
.contact-form .form-control {
    width: 100%;
    border: 1px solid #c5d4cb;
    border-radius: 4px;
    padding: 9px 12px 9px 36px;
    min-height: 42px;
    background: #fff;
    font-size: .9rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form textarea.form-control {
    min-height: 96px;
    resize: vertical;
    padding-top: 10px;
}
.contact-form .form-control:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 .15rem rgba(21,115,71,.12);
    color: var(--text-dark);
}
.contact-form .form-control::placeholder {
    color: #64748b !important;
    font-weight: 400;
}
.contact-submit-btn {
    width: 100%;
    min-height: 44px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    margin-top: 4px;
}

.contact-info-card { background: var(--light-green); border-radius: var(--radius); padding: 30px; }
.contact-form { width: 100%; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item h6 { font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.contact-item p { margin: 0; color: var(--text-muted); font-size: .9rem; }
.contact-item a { color: var(--primary-dark); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.map-container {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md); width: 100%; max-width: 100%;
}
.map-container iframe { width: 100% !important; max-width: 100%; display: block; }

/* Footer - Modern Premium Design */
.site-footer {
    margin-top: 0;
    position: relative;
    overflow-x: clip;
    max-width: 100%;
}

/* CTA Strip — compact professional bar */
.footer-cta {
    padding: 22px 0;
    position: relative;
    overflow: visible;
    background-size: cover;
    background-position: center;
}
.footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(180, 83, 9, 0.94) 0%, rgba(217, 119, 6, 0.9) 55%, rgba(245, 158, 11, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}
.footer-cta .container {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 240px;
}
.footer-cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.footer-cta-text h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.25;
    margin: 0 0 3px;
    letter-spacing: -0.01em;
}
.footer-cta-text p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 500;
}
.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 8px;
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
    flex: 0 0 auto;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-cta-btn i { font-size: 0.9rem; }
.footer-cta-btn--primary {
    background: #fff;
    color: #9a3412;
    border: 1.5px solid #fff;
}
.footer-cta-btn--primary:hover {
    background: #fff7ed;
    color: #7c2d12;
}
.footer-cta-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
}
.footer-cta-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    color: #fff;
}

/* Footer brand partners strip */
.footer-brand-strip {
    background: #0c4529;
    padding: 22px 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand-strip-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.footer-brand-strip-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.footer-brand-strip-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: footerBrandScroll 35s linear infinite;
    will-change: transform;
}
.footer-brand-strip:hover .footer-brand-strip-track {
    animation-play-state: paused;
}
@keyframes footerBrandScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.footer-brand-logo {
    flex-shrink: 0;
    width: 120px;
    height: 64px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Photo Strip */
.footer-photo-strip {
    display: flex; height: 100px; overflow: hidden;
}
.footer-photo-item { flex: 1; overflow: hidden; }
.footer-photo-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s, opacity .4s; opacity: .8;
}
.footer-photo-item:hover img { transform: scale(1.1); opacity: 1; }

/* Certifications */
.footer-certs {
    background: #0a3d24;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-certs-inner {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px;
}
.footer-cert {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 500;
}
.footer-cert i { color: var(--accent); font-size: 1rem; }

/* Mini Gallery in Footer Brand */
.footer-mini-gallery {
    display: flex; gap: 8px; margin-bottom: 20px;
}
.footer-mini-gallery img {
    width: 72px; height: 52px; border-radius: 8px;
    object-fit: cover; border: 2px solid rgba(255,255,255,.15);
    transition: var(--transition);
}
.footer-mini-gallery img:hover {
    border-color: var(--accent); transform: scale(1.05);
}

/* Main Footer */
.footer-main {
    background: linear-gradient(160deg, #0f5132 0%, #157347 50%, #1a6b4a 100%);
    padding: 70px 0 50px;
    color: rgba(255,255,255,.85);
    position: relative;
}
.footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.footer-main .container { position: relative; z-index: 1; }

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Brand Column */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
    line-height: 0;
}
.footer-logo {
    max-height: 48px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.footer-brand-name {
    color: #fff;
    font-weight: 700;
    margin: 16px 0 12px;
    font-size: 1.1rem;
}
.footer-brand-desc {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-since {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    color: var(--accent);
    margin-bottom: 24px;
}
.footer-since i { font-size: 1rem; }

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-links a:hover::before { width: 12px; margin-right: 4px; }

/* Latest Updates */
.footer-update-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    margin-bottom: 10px;
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
    color: inherit;
}
.footer-update-item:hover {
    background: rgba(255,255,255,.12);
    transform: translateX(4px);
    color: inherit;
}
.footer-update-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.footer-event-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(245,158,11,.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.update-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.4;
    margin-bottom: 4px;
}
.update-date {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: .78rem;
}
.update-date i { margin-right: 4px; }
.footer-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: .85rem;
    margin-top: 8px;
    transition: var(--transition);
}
.footer-view-all:hover { color: #fff; gap: 10px; }

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: .9rem;
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.footer-contact a {
    color: rgba(255,255,255,.85);
    transition: color .2s;
}
.footer-contact a:hover { color: var(--accent); }

/* Newsletter */
.footer-newsletter-label {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin-bottom: 10px;
}
.footer-newsletter-input {
    display: flex;
    background: rgba(255,255,255,.1);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    overflow: hidden;
    transition: var(--transition);
}
.footer-newsletter-input:focus-within {
    border-color: var(--accent);
    background: rgba(255,255,255,.15);
}
.footer-newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: .88rem;
    outline: none;
}
.footer-newsletter-input input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter-input button {
    background: var(--accent);
    border: none;
    color: #fff;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.footer-newsletter-input button:hover { background: var(--accent-dark); }

/* Bottom Bar */
.footer-bottom {
    background: #0a3d24;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin: 0;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    padding: 4px 12px;
    border-radius: 6px;
    transition: var(--transition);
}
.footer-legal a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}
.footer-legal a:not(:last-child)::after {
    content: '';
    display: none;
}

@media (max-width: 991px) {
    .footer-cta { padding: 18px 0; }
    .footer-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 14px;
    }
    .footer-cta-text { flex: 1 1 auto; }
    .footer-cta-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }
    .footer-main { padding: 50px 0 40px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}
@media (max-width: 767px) {
    .footer-cta-text { align-items: flex-start; }
    .footer-cta-text h3 { font-size: 1.05rem; }
    .footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .footer-cta-btn {
        width: 100%;
        min-width: 0;
        padding: 10px 12px;
    }
}


/* Event date badge (events page) */
.event-date-badge {
    background: var(--primary); color: #fff; border-radius: 8px;
    padding: 8px 12px; text-align: center; min-width: 50px; line-height: 1.2;
}
.event-date-badge .day { display: block; font-size: 1.2rem; font-weight: 700; }
.event-date-badge .month { display: block; font-size: .7rem; text-transform: uppercase; }

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    display: flex; justify-content: space-around; padding: 8px 0;
    border-top: 1px solid rgba(0,0,0,.05);
}
.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; color: var(--text-muted); font-size: .65rem;
    background: none; border: none; padding: 4px 8px; cursor: pointer;
}
.bottom-nav-item i { font-size: 1.2rem; }
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--primary); }
.donate-nav { color: var(--accent) !important; }
.donate-nav i { font-size: 1.4rem !important; }

/* Mobile Drawer */
.drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1001;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(2px);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
html.drawer-open,
body.drawer-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
}
body.drawer-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}
.mobile-drawer {
    position: fixed; top: 0; right: -320px; left: auto; width: 300px; max-width: 88vw;
    height: 100dvh; max-height: 100dvh;
    background: #fff; z-index: 1002; transition: right .32s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    box-shadow: -8px 0 32px rgba(0,0,0,.18);
    display: flex; flex-direction: column;
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    touch-action: pan-y;
}
.mobile-drawer.active { right: 0; left: auto; }
.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff; position: relative; overflow: hidden;
}
.drawer-header::after {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.drawer-profile { display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; min-width: 0; }
.drawer-profile-text { min-width: 0; }
.drawer-profile-text h6 {
    font-size: .82rem; font-weight: 700; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.drawer-since {
    display: inline-flex; align-items: center; gap: 3px;
    color: rgba(255,255,255,.75); font-size: .68rem;
}
.drawer-since i { color: var(--accent); font-size: .65rem; }
.drawer-avatar {
    width: 34px; height: 34px; max-width: 34px; max-height: 34px;
    border-radius: 8px; object-fit: contain;
    background: #fff; padding: 3px; flex-shrink: 0;
}
.drawer-close {
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: .9rem; cursor: pointer; width: 30px; height: 30px;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
}

.drawer-nav {
    padding: 4px 8px; flex: 1; min-height: 0;
    display: flex; flex-direction: column; overflow: hidden;
}
.drawer-nav-list {
    flex: 1; display: flex; flex-direction: column;
    justify-content: space-evenly; min-height: 0;
}
.drawer-link {
    display: flex; align-items: center; gap: 10px;
    padding: 4px 10px; margin: 0;
    color: var(--text-dark); font-weight: 500; font-size: .8125rem;
    border-radius: 8px; transition: background .15s, color .15s;
    text-decoration: none !important; flex-shrink: 0;
}
.drawer-link-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--light-green); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; flex-shrink: 0;
}
.drawer-link-text { flex: 1; min-width: 0; line-height: 1.2; }
.drawer-link-arrow {
    font-size: .7rem; color: #cbd5e1; flex-shrink: 0;
}
.drawer-link:hover,
.drawer-link.active {
    background: var(--light-green); color: var(--primary);
}
.drawer-link:hover .drawer-link-icon,
.drawer-link.active .drawer-link-icon {
    background: var(--primary); color: #fff;
}
.drawer-link:hover .drawer-link-arrow,
.drawer-link.active .drawer-link-arrow { color: var(--primary); }
.drawer-link.active { font-weight: 600; }
.drawer-link-donate .drawer-link-icon { background: rgba(245,158,11,.15); color: var(--accent-dark); }
.drawer-link-donate:hover,
.drawer-link-donate.active { background: rgba(245,158,11,.1); color: var(--accent-dark); }
.drawer-link-donate:hover .drawer-link-icon,
.drawer-link-donate.active .drawer-link-icon { background: var(--accent); color: #fff; }

.drawer-footer {
    flex-shrink: 0; padding: 8px 10px 10px;
    border-top: 1px solid #f1f5f9; background: #fafbfc;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.drawer-social-links { display: flex; gap: 6px; align-items: center; }
.drawer-social-links a,
.drawer-call-btn {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--light-green); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; text-decoration: none !important;
}
.drawer-call-btn { background: var(--primary); color: #fff; }
.drawer-footer-settings {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.drawer-select {
    width: 52px; font-size: .72rem; border-radius: 6px;
    border: 1px solid #e2e8f0; padding: 3px 4px; background: #fff;
}
.drawer-footer-settings .form-check-input {
    width: 2em; height: 1.1em; cursor: pointer; margin: 0;
}
.drawer-footer-settings .form-check-input:checked {
    background-color: var(--primary); border-color: var(--primary);
}

@media (max-height: 680px) {
    .drawer-header { padding: 8px 10px; }
    .drawer-avatar { width: 30px; height: 30px; max-width: 30px; max-height: 30px; }
    .drawer-profile-text h6 { font-size: .78rem; }
    .drawer-nav { padding: 2px 6px; }
    .drawer-link { padding: 2px 8px; font-size: .76rem; gap: 8px; }
    .drawer-link-icon { width: 28px; height: 28px; font-size: .8rem; }
    .drawer-footer { padding: 6px 8px 8px; }
    .drawer-social-links a, .drawer-call-btn { width: 28px; height: 28px; font-size: .82rem; }
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,.9); display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90%; max-height: 80vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: none; border: none;
    color: #fff; font-size: 1.5rem; cursor: pointer; padding: 10px;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 20px; color: #fff; text-align: center; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 90px; right: 20px; z-index: 998;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none;
    opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: var(--shadow-md); cursor: pointer;
}
@media (min-width: 992px) { .back-to-top { bottom: 30px; } }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* Page Header (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--header-height) + 60px) 0 60px; color: #fff; text-align: center;
}
.page-hero h1 {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin: 0 0 8px;
}
.breadcrumb-nav { display: flex; justify-content: center; gap: 8px; font-size: .9rem; margin-top: 12px; }
.breadcrumb-nav a { color: rgba(255,255,255,.7); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .active { color: var(--accent); }

/* Content Cards */
.content-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: var(--transition); height: 100%;
}
.content-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* Form Styles */
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(21,115,71,.15); }
.form-alert {
    padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; display: none;
}
.form-alert.success { background: #d1e7dd; color: #0f5132; display: block; }
.form-alert.error { background: #f8d7da; color: #842029; display: block; }

/* Responsive */
@media (max-width: 991px) {
    .hero-content { padding: calc(var(--header-height) + 20px) 16px 100px; }
    .top-bar { font-size: .72rem; }
    .top-bar .container { padding-left: 12px; padding-right: 12px; }
    .top-bar-inner { gap: 8px; }
    .top-bar-contact { gap: 10px; flex: 1; min-width: 0; }
    .top-bar-item span { display: none; }
    .top-bar-item { gap: 0; padding: 4px; }
    .top-bar-item i { font-size: .92rem; }
    .top-bar-item--landline { display: none; }
    .top-bar-social { gap: 4px; flex-shrink: 0; }
    .top-bar-social a { width: 26px; height: 26px; font-size: .78rem; }
    .logo-img { max-height: 54px; max-width: 180px; }
    .header-glass:not(.scrolled) .logo-img { max-height: 56px; padding: 1px 4px; }
    .header-glass.scrolled .logo-img { max-height: 52px; }
    .hero-impact-card {
        position: relative; bottom: auto; right: auto;
        margin-top: 24px; max-width: 100%; width: 100%;
        padding: 14px 16px;
    }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next { display: none; }
    .stat-card:hover,
    .focus-card:hover,
    .story-card:hover,
    .project-card:hover,
    .mission-card:hover { transform: none; }
    .about-float-card { left: 12px; bottom: 12px; }
    .about-image-accent { display: none; }
    .impact-banner-bg { background-attachment: scroll; }
    .brand-strip { padding: 10px 0; }
    .brand-strip-fade { width: 28px; }
    .brand-strip-item { width: 112px; height: 72px; border-radius: 6px; }
    .brand-strip-track { gap: 8px; animation-duration: 26s; }
    .photo-showcase-item { width: 200px; height: 140px; }
    .footer-photo-strip { height: 70px; }
    .footer-certs-inner { gap: 8px 16px; }
    .footer-cert { font-size: .72rem; }
    .newsletter-box { padding: 24px; }
    .section-padding { padding: 60px 0; }
    .stats-section .row { --bs-gutter-x: 0.75rem; }

    /* Mobile: full-width columns & centered sections */
    .container {
        width: 100%; max-width: 100%;
        margin-left: auto; margin-right: auto;
        padding-left: 20px; padding-right: 20px;
    }
    .row > [class*="col-lg-"],
    .row > [class*="col-xl-"] {
        flex: 0 0 100%; max-width: 100%; width: 100%;
    }
    .row.justify-content-center,
    .row.align-items-center { justify-content: center !important; }

    /* About section center on mobile */
    .about-intro .section-title.text-start,
    .about-intro .about-lead,
    .about-intro .text-muted { text-align: center !important; }
    .about-intro .section-badge { display: inline-flex; }
    .about-intro .about-features { align-items: center; }
    .about-intro .about-feature-item { justify-content: center; }
    .about-intro .d-flex.flex-wrap { justify-content: center !important; }
    .about-image-wrap { max-width: 420px; margin: 0 auto; }

    /* Donation section center + breathing room */
    .donation-section .section-padding,
    .donation-section.section-padding { padding-left: 0; padding-right: 0; }
    .donation-section .col-lg-6,
    .donation-section .col-12 { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .donation-details {
        text-align: left;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 20px 18px;
        box-sizing: border-box;
    }
    .donation-qr-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 22px 18px;
        box-sizing: border-box;
    }
    .donation-form .row { --bs-gutter-x: 0.5rem; margin-left: 0; margin-right: 0; }

    /* Contact section center */
    #contact .row { justify-content: center; }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-bottom: 14px;
    }
    .contact-info-tile {
        padding: 14px 12px;
        text-align: left;
        border-right: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .contact-info-tile:nth-child(2n) { border-right: 0; }
    .contact-info-tile:nth-child(n+3) { border-bottom: 0; }
    .contact-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .contact-panel-form { padding: 18px 16px; border-left-width: 3px; }
    .contact-panel-map { min-height: 280px; }
    .contact-info-card,
    .contact-form,
    .map-container {
        width: 100%; max-width: 100%; margin-left: auto; margin-right: auto;
    }
    .contact-info-card { padding: 22px 18px; }
    .map-container iframe { height: 280px !important; }
    .contact-panel-map iframe { height: 100% !important; min-height: 280px; }

    /* Newsletter center */
    .newsletter-box { text-align: center; padding: 24px 18px; }
    .newsletter-input-group { flex-wrap: wrap; justify-content: center; }
    .newsletter-input-group .btn { width: 100%; margin-top: 8px; }

    /* Impact banner center */
    .impact-banner-content .col-lg-4 { text-align: center !important; margin-top: 16px; }
}
@media (max-width: 767px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .donation-details { padding: 18px 16px; }
    .donation-qr-card { padding: 20px 16px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-info-tile {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .contact-info-tile:last-child { border-bottom: 0; }
    .contact-panel-heading h3 { font-size: 1.05rem; }
    .hero-title { font-size: clamp(1.45rem, 5.5vw, 1.85rem); }
    .hero-subtitle { font-size: .92rem; line-height: 1.55; }
    .hero-badge { font-size: .78rem; padding: 5px 12px; }
    .stat-card { padding: 16px 6px; min-height: 130px; }
    .stat-number { font-size: 1.1rem; }
    .stat-suffix { font-size: .85rem; }
    .stat-label { font-size: .68rem; min-height: 2.4em; padding: 0 2px; }
    .stat-icon { width: 40px; height: 40px; font-size: 1.1rem; }

    .row > .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .contact-form .col-12.text-center { text-align: center !important; }
}
@media (hover: none) {
    .stat-card:hover,
    .focus-card:hover,
    .story-card:hover,
    .project-card:hover,
    .mission-card:hover { transform: none; box-shadow: var(--shadow-md); }
}

/* Print */
@media print {
    .header-glass, .mobile-bottom-nav, .back-to-top, .loading-screen { display: none !important; }
}
