/* ============================================================
   BEAM Trust Malawi — style.css
   Mobile-first, accessible, performant
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Accessibility: visually hidden ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Focus styles ---- */
:focus-visible {
    outline: 3px solid var(--beam-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- Design Tokens ---- */
:root {
    --beam-green:         #1e5631;
    --beam-green-dark:    #0f381f;
    --beam-green-light:   #2d7a46;
    --beam-red:           #c0392b;
    --beam-red-dark:      #a93226;
    --beam-red-light:     #e74c3c;
    --beam-gold:          #d4af37;
    --beam-gold-soft:     #f9f1d9;
    --beam-gray-light:    #f4f7f2;
    --beam-gray:          #5a6b5e;
    --beam-dark:          #0f2818;
    --shadow-sm:          0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow-md:          0 12px 32px rgba(0, 0, 0, 0.12);
    --radius-card:        24px;
    --radius-pill:        50px;
    --transition:         0.3s ease;
    --nav-height:         80px;
}

/* ---- Layout ---- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* ---- Typography ---- */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--beam-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--beam-gray);
    max-width: 700px;
    margin-bottom: 48px;
    border-left: 4px solid var(--beam-red);
    padding-left: 20px;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--beam-red);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--beam-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--beam-green);
    color: var(--beam-green);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--beam-green);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
    background: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Logo */
.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition);
}

.navbar.scrolled .logo img {
    height: 80px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links > a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--beam-red-light);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links > a:hover::after { width: 100%; }

.navbar.scrolled .nav-links > a { color: var(--beam-dark); }
.nav-links > a:hover { color: var(--beam-red-light); }
.navbar.scrolled .nav-links > a:hover { color: var(--beam-red); }

/* Nav CTA button */
.nav-cta {
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
}

/* ---- Dropdown ---- */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}

.navbar.scrolled .dropdown-toggle { color: var(--beam-dark); }
.dropdown-toggle:hover { color: var(--beam-red-light); }
.navbar.scrolled .dropdown-toggle:hover { color: var(--beam-red); }

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.dropdown.open .dropdown-toggle .fa-chevron-down,
.dropdown:focus-within .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #ffffff;
    min-width: 260px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 200;
    padding: 8px 0;
    border: 1px solid #eef3ea;
}

.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--beam-dark) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu a i {
    color: var(--beam-green);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: var(--beam-gray-light);
    color: var(--beam-red) !important;
    padding-left: 24px;
}

.dropdown-menu a:hover i { color: var(--beam-red); }

/* ---- Hamburger (mobile) ---- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.nav-toggle:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-toggle:hover { background: var(--beam-gray-light); }

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.navbar.scrolled .hamburger-bar { background: var(--beam-dark); }

.nav-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
    width: 100%;
    height: 100svh;
    min-height: 560px;
    position: relative;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    gap: 16px;
}

.slide-badge {
    display: inline-block;
    background: var(--beam-red);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}

.slide-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    max-width: 820px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    opacity: 0.92;
    line-height: 1.6;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--beam-gold);
    background: rgba(0, 0, 0, 0.35);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    transition: background var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet-active {
    background: var(--beam-red) !important;
}

/* ============================================================
   STATS
   ============================================================ */

.stats-wrapper {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: #ffffff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid #e8f0e4;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid #eef3ea;
    transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--beam-gray-light); }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--beam-green);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--beam-gray);
    margin-top: 10px;
    font-weight: 500;
}

/* ============================================================
   MISSION
   ============================================================ */

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: start;
}

.mission-text h2 { margin-bottom: 24px; }

.mission-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #2d3e2a;
    line-height: 1.75;
}

.mission-stats-side {
    background: linear-gradient(160deg, #f0f5ed 0%, #e8f0e4 100%);
    padding: 32px;
    border-radius: var(--radius-card);
    border-top: 4px solid var(--beam-red);
    position: sticky;
    top: 100px;
}

.side-stat {
    margin-bottom: 24px;
    border-bottom: 1px solid #d0e0c8;
    padding-bottom: 20px;
}

.side-stat:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.side-stat h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--beam-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-stat p {
    font-size: 0.92rem;
    color: var(--beam-gray);
    line-height: 1.6;
}

/* ============================================================
   PARTNERS
   ============================================================ */

.partners-wrapper {
    margin-bottom: 0;
    padding-bottom: 48px;
}

.trust-logos {
    background: linear-gradient(135deg, #fafafa 0%, #f0f5ed 100%);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: center;
    border-bottom: 3px solid var(--beam-gold);
}

.trust-logos > p {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--beam-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

.trust-logos > p i { margin-right: 6px; }

.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 28px;
}

.logo-row img {
    height: 80px;
    width: auto;
    opacity: 0.75;
    transition: opacity var(--transition), transform var(--transition);
    filter: grayscale(20%);
}

.logo-row img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ============================================================
   NEWS
   ============================================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid #eef3ea;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--beam-red);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--beam-red);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--beam-dark);
    line-height: 1.4;
}

.news-excerpt {
    color: var(--beam-gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.65;
}

.read-more {
    color: var(--beam-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}

.read-more:hover {
    color: var(--beam-red);
    gap: 12px;
}

/* ============================================================
   PROGRESS BARS
   ============================================================ */

.progress-item {
    margin-bottom: 36px;
    padding: 28px 32px;
    background: var(--beam-gray-light);
    border-radius: 20px;
    border-left: 4px solid var(--beam-green);
}

.progress-item:last-child { margin-bottom: 0; }

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 8px;
}

.progress-header span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--beam-dark);
}

.progress-header span:first-child i { color: var(--beam-green); }

.progress-header span:last-child {
    color: var(--beam-green);
    font-size: 1rem;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

.progress-bar-bg {
    background: #d8e8d0;
    border-radius: 30px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    background: linear-gradient(90deg, var(--beam-green) 0%, var(--beam-red) 100%);
    width: 0%;
    height: 100%;
    border-radius: 30px;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-item > p {
    font-size: 0.88rem;
    color: var(--beam-gray);
    margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    height: 260px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--beam-gold);
    transition: transform var(--transition), border-color var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition);
}

.gallery-item:hover,
.gallery-item:focus-visible {
    transform: scale(1.02);
    border-bottom-color: var(--beam-red);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
    background: linear-gradient(135deg, var(--beam-red-dark) 0%, var(--beam-green-dark) 100%);
    border-radius: 40px;
    padding: 64px 40px;
    text-align: center;
    color: #ffffff;
}

.newsletter h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.newsletter > p {
    opacity: 0.88;
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    width: 300px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.25);
}

.newsletter-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: var(--beam-dark);
    color: #cde2d4;
    padding: 64px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 260px;
}

.footer-left h3 {
    color: var(--beam-gold);
    margin-bottom: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-left address {
    font-style: normal;
}

.footer-left p {
    line-height: 1.7;
    font-size: 0.9rem;
    color: rgba(205, 226, 212, 0.85);
    margin-bottom: 6px;
}

.footer-contact {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--beam-gold);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(205, 226, 212, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--beam-gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(205, 226, 212, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: var(--beam-gold);
    color: var(--beam-dark);
}

.footer-right {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    min-width: 280px;
}

.fb-page {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    margin-top: 48px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.65;
    color: #cde2d4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Medium screens */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mission-stats-side {
        position: static;
    }
}

/* Tablet */
@media (max-width: 850px) {
    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-right {
        justify-content: flex-start;
        width: 100%;
    }

    .fb-page {
        max-width: 100%;
    }

    .logo-row { gap: 32px; }
    .logo-row img { height: 60px; }
}

/* Mobile */
@media (max-width: 768px) {
    section { padding: 56px 0; }

    /* Show hamburger, hide nav */
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 900;
        padding: 80px 24px 40px;
        overflow-y: auto;
    }

    .nav-links.open { display: flex; }

    .nav-links > a {
        font-size: 1.2rem;
        color: var(--beam-dark) !important;
    }

    .nav-links > a::after { display: none; }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        font-size: 1.2rem;
        color: var(--beam-dark) !important;
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.08);
        border-radius: 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition), padding var(--transition);
        padding: 0;
        margin-top: 8px;
        border: none;
    }

    .dropdown.open .dropdown-menu {
        max-height: 400px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        color: var(--beam-gray) !important;
        justify-content: center;
        padding: 12px 20px;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--beam-gold) !important;
        padding-left: 20px;
    }

    .dropdown-menu a i { color: var(--beam-gold); }
    .navbar.scrolled .dropdown-toggle { color: #ffffff !important; }

    .nav-cta {
        margin-top: 8px;
        align-self: center;
    }

    /* Hero */
    .slide-content h1 { font-size: 1.8rem; }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid #eef3ea;
    }

    /* Logo */
    .logo img { height: 80px; }
    .navbar.scrolled .logo img { height: 56px; }

    /* Progress */
    .progress-item { padding: 20px; }
    .progress-header { font-size: 0.88rem; }

    /* Newsletter */
    .newsletter { padding: 40px 20px; border-radius: 24px; }
    .newsletter-form input { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .news-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { height: 180px; }

    .section-subtitle { font-size: 0.95rem; }

    .trust-logos { padding: 28px 16px; border-radius: 20px; }
    .logo-row { gap: 20px; }
    .logo-row img { height: 44px; }
}
.patron-message-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.patron-quote {
    flex: 1.5;
}

.patron-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #2d3e2a;
    text-align: justify;
}

.patron-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--beam-gold);
}

.patron-signature p {
    margin-top: 10px;
    font-size: 0.95rem;
}

.patron-image {
    flex: 1;
    text-align: center;
}

.patron-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--beam-gold);
}

@media (max-width: 768px) {
    .patron-message-grid {
        flex-direction: column;
    }
    .patron-quote {
        order: 2;
    }
    .patron-image {
        order: 1;
        margin-bottom: 20px;
    }
}
/* ---- Close Button (mobile nav) ---- */
.nav-close {
    display: none;
}

/* ---- Home Link (mobile nav) ---- */
.nav-home-link {
    display: none;
}

@media (max-width: 768px) {
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 50%;
        color: var(--beam-dark);
        font-size: 1.1rem;
        cursor: pointer;
        transition: background var(--transition), color var(--transition);
        z-index: 910;
    }

    .nav-close:hover {
        background: var(--beam-red);
        border-color: var(--beam-red);
        color: #ffffff;
    }

    .nav-home-link {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--beam-dark) !important;
        text-decoration: none;
    }

    .nav-home-link i {
        color: var(--beam-green);
        font-size: 1rem;
    }

    .nav-home-link:hover {
        color: var(--beam-red) !important;
    }

    .nav-home-link:hover i {
        color: var(--beam-red);
    }
}
/* ============================================================
   VISION, MISSION & ASPIRATION SECTION
   ============================================================ */

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.vision-card, .mission-card, .aspiration-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef3ea;
    position: relative;
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover, .aspiration-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* decorative top accent */
.vision-card::before, .mission-card::before, .aspiration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--beam-green);
}

.mission-card::before {
    background: var(--beam-red);
}

.aspiration-card::before {
    background: var(--beam-gold);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--beam-gray-light) 0%, #eef3ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: transform var(--transition);
}

.vision-card:hover .icon-circle,
.mission-card:hover .icon-circle,
.aspiration-card:hover .icon-circle {
    transform: scale(1.05);
}

.icon-circle i {
    font-size: 2.5rem;
    color: var(--beam-green);
}

.mission-card .icon-circle i {
    color: var(--beam-red);
}

.aspiration-card .icon-circle i {
    color: var(--beam-gold);
}

.vision-card h3, .mission-card h3, .aspiration-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--beam-dark);
}

.vision-card p, .mission-card p, .aspiration-card p {
    color: var(--beam-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.vision-highlight, .mission-highlight, .aspiration-highlight {
    font-weight: 600;
    color: var(--beam-green);
    margin-top: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.mission-highlight {
    color: var(--beam-red);
}

.aspiration-highlight {
    color: var(--beam-gold);
}

.core-values {
    background: linear-gradient(135deg, #faf9f5 0%, #f0f5ed 100%);
    border-radius: 32px;
    padding: 40px 32px;
    margin-top: 20px;
    text-align: center;
    border-bottom: 3px solid var(--beam-gold);
}

.core-values h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--beam-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--beam-dark);
}

.values-list li i {
    color: var(--beam-red);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .vision-card, .mission-card, .aspiration-card {
        padding: 24px 20px;
    }
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    .icon-circle i {
        font-size: 2rem;
    }
    .values-list li {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-grid {
        gap: 24px;
    }
}