/* ============================================
   HELPING HAND'S TRUST - PREMIUM CSS
   World-Class NGO Website Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1E4DB7;
    --primary-hover: #163A8A;
    --secondary: #F57C00;
    --secondary-hover: #D96A00;
    --accent: #8E24AA;
    --success: #4CAF50;
    --bg: #FAFBFC;
    --card-bg: #FFFFFF;
    --heading: #0F172A;
    --body-text: #475569;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --hero-gradient: linear-gradient(135deg, #1E4DB7 0%, #4F46E5 50%, #8E24AA 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--body-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow: hidden;
}

.text-center { text-align: center; }

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-heart {
    font-size: 3rem;
    color: var(--primary);
    animation: pulse 1.2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}

.navbar.scrolled .logo-name { color: var(--heading); }

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    transition: var(--transition);
}

.navbar.scrolled .logo-tagline { color: var(--body-text); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link { color: var(--body-text); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--primary); background: rgba(30,77,183,0.06); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.15); }

.nav-donate-btn {
    background: var(--secondary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-donate-btn:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,124,0,0.4);
}

/* --- Mobile Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggle-bar {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .toggle-bar { background: var(--heading); }

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 40px;
    border-radius: 12px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    font-family: 'Playfair Display', serif;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(9) { transition-delay: 0.5s; }

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05) !important;
}

.mobile-donate-btn {
    background: var(--secondary) !important;
    border-radius: 50px !important;
    margin-top: 16px;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30,77,183,0.35);
}

.btn-donate {
    background: var(--secondary);
    color: var(--white);
}

.btn-donate:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,124,0,0.35);
}

.btn-full { width: 100%; justify-content: center; }

/* --- Section Base --- */
.section {
    padding: 100px 0;
    overflow: hidden;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label.center { justify-content: center; }
.section-label.light { color: rgba(255,255,255,0.8); }

.label-line {
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.highlight { color: var(--primary); }
.highlight-orange { color: var(--secondary); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--body-text);
    max-width: 650px;
    margin: 0 auto;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 60px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD54F 0%, #FF9800 50%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-certs {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--heading);
    box-shadow: var(--shadow-sm);
}

.cert-badge i {
    font-size: 1.3rem;
    color: var(--primary);
}

.about-visual {
    position: relative;
    overflow: visible;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 30px rgba(245,124,0,0.4);
}

.exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: rgba(30,77,183,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.about-mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.about-mission-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    background: var(--bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover::before { transform: scaleX(1); }

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.program-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(30,77,183,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent, var(--primary));
    margin-bottom: 20px;
    transition: var(--transition);
}

.program-card:hover .program-icon-wrap {
    background: var(--accent, var(--primary));
    color: var(--white);
    transform: scale(1.1);
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--heading);
    margin-bottom: 12px;
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.program-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30,77,183,0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    position: relative;
    background: var(--hero-gradient);
    overflow: hidden;
}

.impact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.05'%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;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-8px);
}

.impact-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-bottom: 16px;
}

.impact-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.impact-bar-fill {
    width: 0;
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.impact-bar-fill.animated {
    width: var(--fill);
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision-section {
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mv-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--hero-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.mv-card:hover .mv-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--heading);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.mv-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(30,77,183,0.05);
    border-radius: 50%;
}

/* ============================================
   STORIES / TESTIMONIALS
   ============================================ */
.stories-section {
    background: var(--bg);
}

.stories-carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.stories-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card {
    min-width: 100%;
    padding: 0 20px;
}

.story-card > div:first-child {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
}

.story-quote {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.story-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--heading);
    font-style: italic;
    margin-bottom: 24px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-avatar {
    width: 52px;
    height: 52px;
    background: var(--hero-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.story-author strong {
    display: block;
    color: var(--heading);
    font-size: 1rem;
}

.story-author span {
    font-size: 0.85rem;
    color: var(--body-text);
}

.stories-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.story-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--heading);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.story-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.story-dots {
    display: flex;
    gap: 8px;
}

.story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.story-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview-section {
    background: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-preview-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,77,183,0.7), rgba(142,36,170,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

.gallery-preview-item:hover .gallery-overlay {
    opacity: 1;
}

.gi-1 { grid-column: span 2; }
.gi-4 { grid-column: span 2; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: var(--hero-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--heading);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(30,77,183,0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   VOLUNTEER SECTION
   ============================================ */
.volunteer-section {
    background: var(--white);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.volunteer-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.volunteer-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.volunteer-option:hover {
    transform: translateX(8px);
    border-color: var(--primary);
}

.vol-icon {
    width: 48px;
    height: 48px;
    background: rgba(30,77,183,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.volunteer-option strong {
    display: block;
    color: var(--heading);
    margin-bottom: 4px;
}

.volunteer-option p {
    font-size: 0.9rem;
    margin: 0;
}

.volunteer-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.volunteer-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--heading);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.volunteer-form-card h3 i {
    color: var(--primary);
}

/* --- Forms --- */
.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--heading);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30,77,183,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate-section {
    position: relative;
    background: var(--hero-gradient);
    overflow: hidden;
}

.donate-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245,124,0,0.15), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(142,36,170,0.15), transparent 60%);
    pointer-events: none;
}

.donate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.donate-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.donate-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-8px);
}

.donate-card.featured {
    background: rgba(255,255,255,0.2);
    border-color: var(--secondary);
}

    .donate-card.featured:hover { transform: translateY(-8px); }

.donate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.donate-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.donate-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.donate-bank-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.donate-bank-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bank-details {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.bank-details strong {
    color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    width: 100%;
    overflow: hidden;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--hero-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    color: var(--heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-form-wrap {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    width: 100%;
    overflow: hidden;
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--heading);
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0B1121;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-reg {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-reg p {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(30,77,183,0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
    background: var(--hero-gradient);
    padding: 160px 0 100px;
    text-align: center;
}

.gallery-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.gallery-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-section {
    background: var(--bg);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-item-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.gallery-expand-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-expand-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    z-index: 3;
}

.slide .hero-title,
.slide .hero-subtitle,
.slide .hero-badge {
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}

.slide .hero-badge,
.slide .hero-title,
.slide .hero-subtitle,
.slide .hero-buttons {
    max-width: 900px;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    width: 36px;
    border-radius: 6px;
}

.slide .hero-scroll-indicator {
    display: none;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: var(--hero-gradient);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::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.05'%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");
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    font-size: 0.7rem;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: var(--bg);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.news-card.news-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.news-card.news-featured .news-image {
    height: 100%;
}

.news-card.news-featured .news-image img {
    height: 100%;
    object-fit: cover;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-body {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--body-text);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: var(--primary);
}

.news-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ============================================
   PROGRAM DETAIL
   ============================================ */
.program-detail {
    padding: 100px 0;
}

.program-detail:nth-child(even) {
    background: var(--white);
}

.program-detail:nth-child(odd) {
    background: var(--bg);
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-detail-grid.reversed {
    direction: rtl;
}

.program-detail-grid.reversed > * {
    direction: ltr;
}

.program-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.program-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.program-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--heading);
    margin-bottom: 16px;
}

.program-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-activities {
    margin: 24px 0;
}

.program-activities h4 {
    font-size: 1rem;
    color: var(--heading);
    margin-bottom: 12px;
}

.program-activities ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-activities ul li i {
    color: var(--success);
    font-size: 0.85rem;
}

.program-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.program-stat-item {
    text-align: center;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.program-stat-item .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.program-stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--body-text);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--hero-gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 45%;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 40px;
    transition: var(--transition);
}

.timeline-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.timeline-item:nth-child(odd) {
    margin-left: 5%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item:nth-child(odd)::before {
    right: -32px;
}

.timeline-item:nth-child(even)::before {
    left: -32px;
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 8px;
}

.timeline-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--body-text);
}

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-hero-section {
    background: var(--hero-gradient);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.donate-why-section {
    background: var(--white);
}

.donate-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.donate-tier-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.donate-tier-card:hover,
.donate-tier-card.featured {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.donate-tier-card.featured {
    background: var(--hero-gradient);
    color: var(--white);
}

.donate-tier-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.donate-tier-card.featured .donate-tier-amount {
    color: var(--white);
}

.donate-tier-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.donate-form-section {
    background: var(--bg);
}

.donate-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}

.donate-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--heading);
    margin-bottom: 32px;
    text-align: center;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.amount-option {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--bg);
}

.amount-option:hover,
.amount-option.selected {
    border-color: var(--secondary);
    background: rgba(245,124,0,0.05);
    color: var(--secondary);
}

.amount-option input {
    display: none;
}

.custom-amount-input {
    display: none;
    margin-bottom: 16px;
}

.custom-amount-input.visible {
    display: block;
}

.donation-breakdown {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.breakdown-bar {
    display: flex;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.breakdown-segment {
    height: 100%;
    transition: width 1s ease;
}

.breakdown-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.tax-benefits-section {
    background: var(--bg);
}

.tax-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

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

.tax-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.tax-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--heading);
    margin-bottom: 12px;
}

.donor-testimonial {
    background: var(--hero-gradient);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.donor-testimonial .stars {
    color: #FFD54F;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.donor-testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 20px;
}

.donor-testimonial .donor-name {
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================
   MISSION DETAIL
   ============================================ */
.mission-detail-section {
    background: var(--white);
}

.mission-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mission-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
}

.pillar-item i {
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background: var(--hero-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--white);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.strategic-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.goal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.goal-card .goal-period {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30,77,183,0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.goal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 12px;
}

.goal-card ul {
    list-style: none;
}

.goal-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.goal-card ul li i {
    color: var(--success);
    margin-top: 4px;
    font-size: 0.8rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.approach-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.approach-icon {
    width: 56px;
    height: 56px;
    background: var(--hero-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.approach-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 6px;
}

.approach-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-page-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.sidebar-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.recent-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.9rem;
    color: var(--heading);
    line-height: 1.4;
    margin-bottom: 4px;
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--body-text);
}

.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-count {
    background: var(--bg);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .next-btn {
    width: auto;
    padding: 0 16px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,77,183,0.9), rgba(142,36,170,0.9));
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
    .nav-link { padding: 8px 10px; font-size: 0.82rem; }
    .logo-tagline { display: none; }
    .logo-name { font-size: 1rem; }
    .logo-img { width: 40px; height: 40px; }

    .about-grid,
    .volunteer-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .donate-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .program-detail-grid { grid-template-columns: 1fr; gap: 48px; }
    .program-detail-grid.reversed { direction: ltr; }
    .mission-detail-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.news-featured { grid-column: span 2; }
    .donate-tiers-grid { grid-template-columns: 1fr 1fr; }
    .strategic-goals-grid { grid-template-columns: 1fr; }
    .news-page-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr; }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {

    /* NAVBAR */
    .nav-menu { display: none !important; }
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .toggle-bar {
        width: 28px;
        height: 3px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }
    .navbar.scrolled .toggle-bar { background: var(--heading); }
    .logo-tagline { display: none; }
    .logo-name { font-size: 0.95rem; }
    .logo-img { width: 38px; height: 38px; }
    .nav-container { padding: 0 16px; }
    .navbar { padding: 12px 0; }
    .navbar.scrolled { padding: 8px 0; }

    /* HERO SLIDER */
    .hero-slider { height: 100vh; min-height: 600px; }
    .slide-content {
        padding: 140px 20px 100px;
        justify-content: center;
    }
    .slide .hero-title { font-size: 2rem; line-height: 1.15; }
    .slide .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }
    .slide .hero-badge { font-size: 0.75rem; padding: 8px 16px; margin-bottom: 20px; }
    .slider-nav { bottom: 20px; gap: 12px; }
    .slider-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .slider-dot { width: 10px; height: 10px; }
    .slider-dot.active { width: 28px; }
    .hero-scroll-indicator { display: none; }

    /* MOBILE MENU OVERLAY */
    .mobile-menu-overlay { z-index: 9999; }
    .mobile-menu-close {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        top: 16px;
        right: 16px;
    }
    .mobile-nav-link {
        font-size: 1.6rem;
        padding: 10px 30px;
    }

    /* SECTIONS */
    .section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.95rem; }
    .section-header { margin-bottom: 40px; }

    /* PAGE HERO */
    .page-hero { padding: 120px 0 60px; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 0.95rem; }

    /* ABOUT */
    .about-image-card img { height: 280px; }
    .about-experience-badge { bottom: 10px; right: 10px; padding: 14px 18px; }
    .exp-number { font-size: 1.8rem; }
    .about-certs { flex-direction: column; gap: 10px; }
    .cert-badge { width: 100%; justify-content: center; }

    /* PROGRAMS */
    .programs-grid { grid-template-columns: 1fr; }
    .program-card { padding: 28px 24px; }

    /* IMPACT */
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .impact-card { padding: 24px 12px; }
    .impact-number { font-size: 2rem; }
    .impact-label { font-size: 0.8rem; }

    /* MISSION & VISION */
    .mv-grid { grid-template-columns: 1fr; gap: 20px; }
    .mv-card { padding: 32px 24px; }

    /* STORIES */
    .stories-track > .story-card { padding: 0 8px; }
    .story-card > div:first-child { padding: 28px 20px; }
    .story-card p { font-size: 0.95rem; }
    .stories-nav { gap: 12px; margin-top: 24px; }
    .story-nav-btn { width: 40px; height: 40px; }

    /* GALLERY PREVIEW */
    .gallery-preview-grid { grid-template-columns: 1fr 1fr; gap: 10px; grid-template-rows: auto; }
    .gi-1, .gi-4 { grid-column: span 1; }
    .gallery-preview-item { border-radius: var(--radius-md); }

    /* GALLERY PAGE */
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }

    /* TEAM */
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-card { padding: 28px 20px; }

    /* VOLUNTEER */
    .volunteer-grid { grid-template-columns: 1fr; gap: 40px; }
    .volunteer-form-card { padding: 28px; }

    /* DONATE */
    .donate-cards { grid-template-columns: 1fr; gap: 16px; }
    .donate-card { padding: 28px 20px; }
    .donate-card.featured:hover { transform: translateY(-8px); }
    .donate-amount { font-size: 1.8rem; }
    .donate-bank-info { padding: 24px 16px; }
    .bank-details { flex-direction: column; gap: 8px; align-items: center; }
    .donate-tiers-grid { grid-template-columns: 1fr; }
    .donate-form-card { padding: 24px; }
    .amount-options { grid-template-columns: repeat(2, 1fr); }

    /* NEWS */
    .news-grid { grid-template-columns: 1fr; }
    .news-card.news-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .news-card.news-featured .news-image { height: 220px; }
    .news-image { height: 200px; }
    .news-body { padding: 20px; }
    .news-body h3 { font-size: 1.1rem; }
    .news-page-grid { grid-template-columns: 1fr; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-card { padding: 20px; }
    .contact-form-card { padding: 24px; }

    /* FAQ */
    .faq-grid { gap: 12px; }
    .faq-question { padding: 16px 20px; font-size: 0.9rem; }

    /* FORMS */
    .form-row { grid-template-columns: 1fr; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }

    /* TIMELINE */
    .timeline::before { left: 20px; }
    .timeline-item { width: calc(100% - 50px); margin-left: 50px !important; }
    .timeline-item::before { left: -38px !important; right: auto !important; }

    /* MISSION DETAIL */
    .mission-pillars { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .strategic-goals-grid { grid-template-columns: 1fr; }

    /* PROGRAM DETAIL */
    .program-detail { padding: 50px 0; }
    .program-detail-image img { height: 280px; }
    .program-stats-row { flex-wrap: wrap; gap: 12px; }
    .program-stat-item { flex: 1; min-width: calc(50% - 12px); }

    /* FOOTER */
    .footer { padding: 50px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-logo img { width: 40px; height: 40px; }
    .footer-logo span { font-size: 1rem; }
    .footer-contact-item { font-size: 0.85rem; }

    /* BACK TO TOP */
    .back-to-top { width: 44px; height: 44px; font-size: 1rem; bottom: 20px; right: 20px; }

    /* LIGHTBOX */
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { width: 44px; height: 44px; top: 16px; right: 16px; }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
    .slide .hero-title { font-size: 1.6rem; }
    .slide .hero-subtitle { font-size: 0.85rem; }
    .slide .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

    .section-title { font-size: 1.5rem; }
    .page-hero-title { font-size: 1.7rem; }

    .about-text { font-size: 0.95rem; }

    .programs-grid { gap: 16px; }

    .impact-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .impact-card { padding: 20px 10px; }
    .impact-number { font-size: 1.6rem; }
    .impact-icon { width: 50px; height: 50px; font-size: 1.2rem; }

    .gallery-preview-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    .team-avatar { width: 70px; height: 70px; font-size: 1.6rem; }

    .donate-cards { gap: 12px; }

    .mobile-nav-link { font-size: 1.3rem; padding: 8px 24px; }

    .stories-nav { flex-wrap: wrap; justify-content: center; }

    .amount-options { grid-template-columns: 1fr 1fr; gap: 8px; }
    .amount-option { padding: 10px; font-size: 0.95rem; }
}

.footer-developed {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-developed a {
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.footer-developed a:hover {
    color: var(--white);
}
