/* ============================================
   MASTER STYLESHEET - COMPLETE WEBSITE STYLING
   Version: 2.0 | All-in-One | Fully Working
   ============================================ */

/* ========== 1. CSS VARIABLES & RESET ========== */
:root {
    /* Colors */
    --primary-dark: #0a3a5c;
    --primary: #1a5a8c;
    --primary-light: #2d7ab8;
    --secondary: #e53e3e;
    --secondary-dark: #c53030;
    --secondary-light: #fc8181;
    --dark: #1f2937;
    --gray-dark: #374151;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f3f4f6;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading-weight: 800;
    --font-body-weight: 400;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Borders */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== 2. TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-heading-weight);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-dark);
}

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

a:hover {
    color: var(--secondary);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* ========== 3. SCROLL REVEAL ANIMATIONS ========== */
.reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-down, .reveal-scale {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active, .reveal-left.active, .reveal-right.active, 
.reveal-up.active, .reveal-down.active, .reveal-scale.active {
    opacity: 1;
    visibility: visible;
}

.reveal-left { transform: translateX(-50px); }
.reveal-left.active { transform: translateX(0); }

.reveal-right { transform: translateX(50px); }
.reveal-right.active { transform: translateX(0); }

.reveal-up { transform: translateY(50px); }
.reveal-up.active { transform: translateY(0); }

.reveal-down { transform: translateY(-50px); }
.reveal-down.active { transform: translateY(0); }

.reveal-scale { transform: scale(0.9); }
.reveal-scale.active { transform: scale(1); }

/* Staggered Animations */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ========== 4. SECTION STYLES ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: var(--space-md);
}

/* ========== 5. HEADER & NAVIGATION ========== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    gap: var(--space-lg);
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    justify-content: flex-end;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.donate-btn {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition);
}

.donate-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition-fast);
}

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

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

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

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
}

/* Typewriter Fix - No Layout Shift */
.typewriter-wrapper {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.typewriter {
    display: inline-block;
    position: relative;
}

.typewriter::after {
    content: '|';
    position: relative;
    display: inline-block;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.2rem;
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--white);
}

/* ========== 7. BUTTONS ========== */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: translate(-30%, -30%) scale(1); opacity: 0; }
    50% { transform: translate(-30%, -30%) scale(1.5); opacity: 1; }
}

/* ========== 8. STATS CARDS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--light);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary)20, var(--secondary-dark)20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--secondary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========== 9. PROGRAM CARDS ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.program-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 62, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    transition: all var(--transition);
}

.program-link:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    color: var(--white);
}

.program-content {
    padding: 25px;
}

.program-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(229, 62, 62, 0.1);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.program-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.learn-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.learn-more:hover {
    gap: 12px;
}

/* ========== 10. TEAM CARDS ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.2rem;
}

.team-card .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== 11. HOOK / ABOUT SECTION ========== */
.hook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hook-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.hook-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hook-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hook-icon i {
    font-size: 30px;
    color: var(--white);
}

/* ========== 12. GET INVOLVED CARDS ========== */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.involve-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--light);
}

.involve-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.involve-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.involve-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.involve-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.involve-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.involve-link:hover {
    gap: 12px;
}

/* ========== 13. NEWS/BLOG CARDS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

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

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

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

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 50px;
}

.date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.news-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* ========== 14. SUCCESS STORY SECTION ========== */
.success-story {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

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

.story-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.story-quote {
    position: relative;
    margin-bottom: 30px;
}

.story-quote i {
    font-size: 40px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.story-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255,255,255,0.95);
}

.story-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.story-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-media img,
.story-media video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========== 15. PARTNERS SECTION ========== */
.partners-slider {
    overflow: hidden;
    margin: 40px 0;
}

.partners-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 60px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--light);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.badge i {
    font-size: 20px;
    color: var(--secondary);
}

/* ========== 16. CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}

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

.info-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: inherit;
    transition: all var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* ========== 17. CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
}

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

/* ========== 18. FOOTER ========== */
.main-footer {
    background: var(--primary-dark);
    color: var(--gray-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

.social-footer a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

.social-footer a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== 19. PAGE HERO (INNER PAGES) ========== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255,255,255,0.2);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ========== 20. BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(229,62,62,0.3);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-dark), #9b2c2c);
    box-shadow: 0 6px 20px rgba(229,62,62,0.4);
}

/* ========== 21. SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #f97316);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ========== 22. PREMIUM LOADING SCREEN ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(20, 20, 25, 0.98));
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    transform: translateY(-20px);
}

/* Premium Multi-Ring Loader */
.premium-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader-ring:nth-child(1) {
    border-top-color: #e53e3e;
    animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    border-right-color: #e53e3e;
    animation: spin 1.2s linear infinite reverse;
}

.loader-ring:nth-child(3) {
    border-bottom-color: #e53e3e;
    animation: spin 1.2s linear infinite 0.3s;
}

.loader-ring:nth-child(4) {
    border-left-color: #e53e3e;
    animation: spin 1.2s linear infinite 0.6s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Inner Pulse Dot */
.loader-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #e53e3e;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(229,62,62,0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* Loading Text */
.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: 2px;
    margin-top: 20px;
    text-transform: uppercase;
}

.loading-dots {
    display: inline-block;
    width: 30px;
    text-align: left;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Loading Progress Bar */
.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(229, 62, 62, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #e53e3e, #f97316);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ========== 23. RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .stats-grid,
    .programs-grid,
    .team-grid,
    .involve-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hook-grid {
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: left var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 20px;
    }
    
    /* Hero Slider Mobile */
    .slide-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    
    /* Grid Mobile */
    .stats-grid,
    .programs-grid,
    .team-grid,
    .involve-grid,
    .news-grid,
    .hook-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Story Section Mobile */
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .story-quote p {
        font-size: 1rem;
    }
    
    .story-media img,
    .story-media video {
        height: 250px;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        min-height: 300px;
    }
    
    .page-hero-content {
        padding: 25px 20px;
        width: 90%;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Typewriter Mobile */
    .typewriter-wrapper {
        min-height: 70px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Trust Badges */
    .trust-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.4rem;
    }
    
    .hook-card {
        padding: 25px;
    }
    
    .program-content {
        padding: 20px;
    }
    
    .involve-card {
        padding: 30px 20px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .social-footer {
        justify-content: center;
    }
}

/* ========== 24. UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* ========== 25. PRINT STYLES ========== */
@media print {
    .main-header,
    .hero-slider,
    .cta-section,
    .main-footer,
    .back-to-top,
    .scroll-progress,
    .loading-screen {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ========== ABOUT US PAGE STYLES ========== */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 35px;
    color: var(--white);
}

.mv-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

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

.story-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.story-text h2::after {
    left: 0;
    transform: translateX(0);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.story-stat {
    text-align: center;
    flex: 1;
}

.story-stat .stat-number {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.story-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(229,62,62,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.story-image-overlay i {
    font-size: 28px;
    color: var(--white);
}

.story-image-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--light);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: bottom var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition);
}

.team-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

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

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition);
}

.partner-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mv-grid,
    .story-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .team-info {
        padding: 20px;
    }
}

/* ========== LANGUAGE SWITCHER STYLES ========== */
.language-switcher {
    position: relative;
    margin-right: 15px;
}

.language-select {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 12px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--dark);
}

.language-select:hover {
    border-color: var(--secondary);
    background: rgba(229,62,62,0.05);
}

.language-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(229,62,62,0.1);
}

/* Language Dropdown Options */
.language-select option {
    padding: 10px;
    background: var(--white);
    color: var(--dark);
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 10px;
    }
    
    .language-select {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Dark Header Language Switcher */
.main-header.scrolled .language-select {
    border-color: rgba(0,0,0,0.2);
    color: var(--dark);
}

.main-header.scrolled .language-select:hover {
    border-color: var(--secondary);
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    transition: right var(--transition);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-container {
    padding: 80px 30px 30px;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light);
    transition: all var(--transition);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--secondary);
    padding-left: 10px;
}

.donate-btn-mobile {
    display: block;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.donate-btn-mobile:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Header Scroll Effect */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

/* Donate Button Icon */
.donate-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .donate-btn span {
        display: none;
    }
    
    .donate-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .mobile-nav-container {
        padding: 80px 25px 30px;
    }
}

/* ============================================
   IMPACT PAGE STYLES
   ============================================ */

/* Impact Metrics Section */
.impact-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.metric-context {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Annual Reports Section */
.annual-reports {
    padding: 80px 0;
    background: var(--white);
}

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

.report-card {
    background: var(--light);
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.report-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.report-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.report-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    gap: 12px;
}

/* Financial Highlights */
.financial-highlights {
    padding: 80px 0;
    background: var(--light);
}

.financial-highlights .section-title {
    margin-bottom: 40px;
}

.financial-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.allocation-item {
    margin-bottom: 25px;
}

.allocation-item .category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.progress-bar {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: width 1.5s ease;
}

.percentage {
    font-weight: 600;
    color: var(--primary-dark);
    margin-left: 10px;
}

/* Strategic Plan Section */
.strategic-plan {
    padding: 80px 0;
    background: var(--white);
}

.strategic-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.goal-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229,62,62,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-card:hover::before {
    opacity: 1;
}

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

.goal-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.goal-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.goal-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.goal-progress {
    margin-top: 15px;
}

.goal-progress .progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.strategic-plan-download {
    text-align: center;
    margin-top: 40px;
}

/* Transparency Badges Section */
.transparency-badges {
    padding: 60px 0;
    background: var(--light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.badge {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge img {
    max-width: 100px;
    margin-bottom: 15px;
}

.badge h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.badge p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   RESOURCES & BLOG PAGE STYLES
   ============================================ */

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card .blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-card h3 {
    padding: 15px 20px 10px;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.blog-card .excerpt {
    padding: 0 20px 15px;
    color: var(--gray);
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px 20px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* Resource Hub Section */
.resource-hub {
    padding: 80px 0;
    background: var(--light);
}

.resource-categories {
    display: grid;
    gap: 40px;
}

.resource-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.resource-category h3 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3rem;
}

.resource-category h3 i {
    margin-right: 10px;
}

.resources-list {
    padding: 20px;
}

.resource-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.resource-icon {
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.resource-info p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.resource-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.resource-info a:hover {
    gap: 10px;
}

/* External Resources Section */
.external-resources {
    padding: 80px 0;
    background: var(--white);
}

.external-links {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-link:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.external-link i {
    font-size: 2rem;
    color: var(--secondary);
}

.external-link .link-content {
    flex: 1;
}

.external-link .link-content h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.external-link .link-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 30px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Responsive Impact & Resources Pages */
@media (max-width: 1024px) {
    .metrics-grid,
    .reports-grid,
    .strategic-goals,
    .badges-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .metrics-grid,
    .reports-grid,
    .strategic-goals,
    .badges-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .blog-card .blog-image {
        height: 200px;
    }
    
    .external-link {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .metric-number {
        font-size: 2rem;
    }
    
    .report-card h3 {
        font-size: 1.5rem;
    }
    
    .goal-card {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Animation for Metric Cards */
.metric-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effect for Blog Cards */
.blog-card {
    position: relative;
}

.blog-card .category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* Stats Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-number {
    animation: countUp 0.8s ease forwards;
}

/* ============================================
   IMPACT PAGE STYLES
   ============================================ */

/* Impact Metrics Section */
.impact-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.metric-context {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Annual Reports Section */
.annual-reports {
    padding: 80px 0;
    background: var(--white);
}

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

.report-card {
    background: var(--light);
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.report-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.report-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.report-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    gap: 12px;
}

/* Financial Highlights */
.financial-highlights {
    padding: 80px 0;
    background: var(--light);
}

.financial-highlights .section-title {
    margin-bottom: 40px;
}

.financial-breakdown {
    max-width: 600px;
    margin: 0 auto;
}

.allocation-item {
    margin-bottom: 25px;
}

.allocation-item .category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.progress-bar {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: width 1.5s ease;
}

.percentage {
    font-weight: 600;
    color: var(--primary-dark);
    margin-left: 10px;
}

/* Strategic Plan Section */
.strategic-plan {
    padding: 80px 0;
    background: var(--white);
}

.strategic-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.goal-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229,62,62,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-card:hover::before {
    opacity: 1;
}

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

.goal-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.goal-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.goal-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.goal-progress {
    margin-top: 15px;
}

.goal-progress .progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.strategic-plan-download {
    text-align: center;
    margin-top: 40px;
}

/* Transparency Badges Section */
.transparency-badges {
    padding: 60px 0;
    background: var(--light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.badge {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge img {
    max-width: 100px;
    margin-bottom: 15px;
}

.badge h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.badge p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   RESOURCES & BLOG PAGE STYLES
   ============================================ */

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card .blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-card h3 {
    padding: 15px 20px 10px;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.blog-card .excerpt {
    padding: 0 20px 15px;
    color: var(--gray);
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px 20px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* Resource Hub Section */
.resource-hub {
    padding: 80px 0;
    background: var(--light);
}

.resource-categories {
    display: grid;
    gap: 40px;
}

.resource-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.resource-category h3 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3rem;
}

.resource-category h3 i {
    margin-right: 10px;
}

.resources-list {
    padding: 20px;
}

.resource-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.resource-icon {
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.resource-info p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.resource-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.resource-info a:hover {
    gap: 10px;
}

/* External Resources Section */
.external-resources {
    padding: 80px 0;
    background: var(--white);
}

.external-links {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-link:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.external-link i {
    font-size: 2rem;
    color: var(--secondary);
}

.external-link .link-content {
    flex: 1;
}

.external-link .link-content h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.external-link .link-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 30px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Responsive Impact & Resources Pages */
@media (max-width: 1024px) {
    .metrics-grid,
    .reports-grid,
    .strategic-goals,
    .badges-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .metrics-grid,
    .reports-grid,
    .strategic-goals,
    .badges-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .blog-card .blog-image {
        height: 200px;
    }
    
    .external-link {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .metric-number {
        font-size: 2rem;
    }
    
    .report-card h3 {
        font-size: 1.5rem;
    }
    
    .goal-card {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Animation for Metric Cards */
.metric-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effect for Blog Cards */
.blog-card {
    position: relative;
}

.blog-card .category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* Stats Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-number {
    animation: countUp 0.8s ease forwards;
}