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

:root {
    /* Ultra-Modern 2025 Color Palette - Deep Ocean to Cosmic Purple */
    --primary-midnight: #0f172a;
    --primary-slate: #1e293b;
    --primary-ocean: #0ea5e9;
    --primary-sky: #38bdf8;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-cyan: #06b6d4;
    
    /* Sophisticated Neutrals */
    --neutral-obsidian: #020617;
    --neutral-charcoal: #0f172a;
    --neutral-slate: #334155;
    --neutral-gray: #64748b;
    --neutral-silver: #94a3b8;
    --neutral-mist: #cbd5e1;
    --neutral-cloud: #e2e8f0;
    --neutral-snow: #f8fafc;
    --background-pure: #ffffff;
    
    /* Status Colors */
    --success-emerald: #10b981;
    --warning-gold: #f59e0b;
    --error-crimson: #ef4444;
    --info-azure: #3b82f6;
    
    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-midnight) 0%, var(--primary-slate) 30%, var(--primary-ocean) 70%, var(--primary-sky) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-midnight) 0%, var(--primary-slate) 25%, var(--primary-ocean) 60%, var(--accent-purple) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-orange) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--neutral-snow) 0%, var(--neutral-cloud) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Premium Shadows with Color */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.1), 0 1px 2px 0 rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --shadow-colored: 0 8px 32px rgba(14, 165, 233, 0.15);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Refined Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    
    /* Glass Morphism Effects */
    --glass-light: backdrop-filter: blur(16px) saturate(180%);
    --glass-medium: backdrop-filter: blur(20px) saturate(200%);
    --glass-heavy: backdrop-filter: blur(24px) saturate(220%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--neutral-charcoal);
    overflow-x: hidden;
    background-color: var(--background-pure);
    max-width: 100vw;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 77, 64, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo h2 {
    color: var(--primary-ocean);
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-slate);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.75rem 0;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: var(--primary-ocean);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: var(--gradient-accent);
    color: white !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-glow);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donate-btn::after {
    display: none;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 70%, var(--accent-orange) 100%);
}

.donate-btn:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
    position: relative;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hamburger:hover {
    background: rgba(15, 23, 42, 0.05);
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--neutral-slate);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--radius-xs);
}

.hamburger:hover .bar {
    background: var(--primary-ocean);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
    background: var(--primary-ocean);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
    background: var(--primary-ocean);
}

/* Ultra-Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 60px;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    font-feature-settings: 'kern' 1;
}

.hero-description {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-2xl);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--accent-orange);
    text-shadow: 
        0 2px 8px rgba(249, 115, 22, 0.4),
        0 0 20px rgba(249, 115, 22, 0.2),
        1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    filter: brightness(1.1);
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.01em;
    font-feature-settings: 'kern' 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 70%, var(--accent-orange) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Secondary buttons in light background contexts */
.involvement-card .btn-secondary,
.news-card .btn-secondary,
.news-cta .btn-secondary {
    background: var(--gradient-subtle);
    color: var(--neutral-charcoal);
    border: 2px solid rgba(15, 23, 42, 0.15);
}

.involvement-card .btn-secondary:hover,
.news-card .btn-secondary:hover,
.news-cta .btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-ocean);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-element:nth-child(1) { 
    top: 10%; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 0s;
}
.floating-element:nth-child(2) { 
    top: 50%; 
    right: 10%; 
    transform: translateY(-50%);
    animation-delay: 1s;
}
.floating-element:nth-child(3) { 
    bottom: 10%; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 2s;
}
.floating-element:nth-child(4) { 
    top: 50%; 
    left: 10%; 
    transform: translateY(-50%);
    animation-delay: 3s;
}

.floating-element i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-main-icon i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-15px) scale(1.05); }
    50% { transform: translateY(-25px) scale(1); }
    75% { transform: translateY(-10px) scale(0.95); }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* Language Toggle - Modern Update */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-toggle {
    display: flex;
    background: rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-full);
    padding: 6px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow-sm);
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: calc(var(--radius-full) - 6px);
    color: var(--neutral-slate);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
    transform: scale(1.02);
}

.lang-btn:hover:not(.active) {
    background: rgba(15, 23, 42, 0.12);
    color: var(--primary-ocean);
    transform: scale(1.02);
}

/* About Section - Ultra Modern */
.about {
    padding: 120px 0;
    background: var(--gradient-subtle);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(15, 23, 42, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neutral-obsidian);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neutral-obsidian);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--neutral-slate);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.mission-values {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--background-pure);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item i {
    font-size: 1.75rem;
    color: var(--primary-ocean);
    margin-top: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem;
    background-color: rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--neutral-obsidian);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--neutral-slate);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--background-pure);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--background-pure);
    border-radius: calc(var(--radius-2xl) - 1px);
    z-index: 1;
}

.stat-item > * {
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #0ea5e9;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    /* Use solid color instead of gradient for better visibility */
    background: none;
    text-shadow: 
        0 2px 12px rgba(14, 165, 233, 0.5),
        0 0 24px rgba(14, 165, 233, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.1);
    filter: brightness(1.2) contrast(1.2);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--neutral-slate);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.value-item i {
    font-size: 1.75rem;
    color: var(--primary-emerald);
    margin-top: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem;
    background-color: rgba(0, 77, 64, 0.06);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--neutral-obsidian);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--neutral-slate);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--background-pure);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--neutral-slate);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Programs Section - Ultra Modern */
.programs {
    padding: 120px 0;
    background: var(--background-pure);
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.program-card {
    background: var(--background-pure);
    padding: 3rem;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.program-card:hover::after {
    opacity: 0.02;
}

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

.program-card:nth-child(1) .program-icon {
    background: linear-gradient(135deg, var(--info-azure) 0%, var(--primary-sky) 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.program-card:nth-child(2) .program-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3);
}

.program-card:nth-child(3) .program-icon {
    background: var(--gradient-accent);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.program-card:nth-child(4) .program-icon {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.program-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.program-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.05) rotate(2deg);
}

.program-card:hover .program-icon::before {
    opacity: 1;
}

.program-icon i {
    font-size: 2.25rem;
    color: white;
    z-index: 1;
    position: relative;
}

.program-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neutral-obsidian);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.program-card p {
    color: var(--neutral-slate);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card li {
    color: var(--neutral-slate);
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
}

.program-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-emerald);
    font-weight: 800;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    top: 0.1rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

/* Impact Section - Ultra Modern */
.impact {
    padding: 120px 0;
    background: var(--gradient-subtle);
    position: relative;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(15, 23, 42, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: var(--background-pure);
    padding: 3rem;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 77, 64, 0.08);
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.story-card:hover::before {
    transform: scaleY(1);
}

.story-card:hover::after {
    opacity: 0.02;
}

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

.story-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-colored);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover .story-image {
    transform: scale(1.1) rotate(5deg);
}

.story-card:hover .story-image::before {
    opacity: 1;
}

.story-image i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
    position: relative;
}

.story-card p {
    font-size: 1.15rem;
    color: var(--neutral-slate);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.story-author {
    font-weight: 700;
    color: var(--primary-ocean);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.story-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-colored);
}

.story-image i {
    font-size: 1.5rem;
    color: white;
}

.story-card p {
    font-size: 1.1rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-author {
    font-weight: 600;
    color: var(--primary-ocean);
}

/* Get Involved Section - Modern Update */
.get-involved {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--neutral-snow) 0%, var(--neutral-cloud) 100%);
    position: relative;
}

.get-involved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(15, 23, 42, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.involvement-card {
    background: var(--background-pure);
    padding: 3rem;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 77, 64, 0.08);
    position: relative;
    overflow: hidden;
}

.involvement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.involvement-card:hover::before {
    opacity: 0.02;
}

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

.involvement-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-colored);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.involvement-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.involvement-card:hover .involvement-icon::before {
    opacity: 1;
}

.involvement-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.involvement-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neutral-obsidian);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.involvement-card p {
    color: var(--neutral-slate);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Donation Section - Ultra Modern */
.donate {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-midnight) 0%, var(--primary-slate) 50%, var(--primary-ocean) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.donate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="donate-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23donate-dots)"/></svg>');
    pointer-events: none;
    opacity: 0.7;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.donate-text h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.donate-text p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.donation-impact {
    display: grid;
    gap: 1rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 80px;
}

.description {
    opacity: 0.9;
}

.donate-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donate-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-amount {
    margin-bottom: 1.5rem;
}

.custom-amount input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    font-size: 1rem;
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.donate-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-ocean);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-ocean);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colored);
}

.social-link:hover {
    background: var(--primary-sky);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-ocean);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer - Ultra Modern */
.footer {
    background: linear-gradient(135deg, var(--neutral-obsidian) 0%, var(--neutral-charcoal) 50%, var(--neutral-slate) 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(38, 166, 154, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-certifications {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-certifications p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-sky);
    transform: translateX(4px);
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-sky);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-sky);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.cert-logo {
    height: 45px;
    width: auto;
    margin: 0.5rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.cert-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #e5e7eb 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--background-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.member-photo i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--neutral-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.member-social a:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* News Section */
.news {
    padding: 100px 0;
    background: var(--background-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--background-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.news-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.news-date {
    color: var(--neutral-light);
    font-weight: 500;
}

.news-category {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: var(--neutral-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover {
    color: var(--primary-green-dark);
    gap: 0.75rem;
}

.read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more:hover i {
    transform: translateX(2px);
}

.news-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    background: var(--neutral-snow);
    color: var(--primary-ocean);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-obsidian);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-ocean);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-purple);
    gap: 0.75rem;
}

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

/* Enhanced Payment Methods Section */
.payment-methods {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--neutral-snow);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: var(--shadow-md);
}

.payment-methods h4 {
    margin-bottom: 1.5rem;
    color: var(--neutral-obsidian);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    position: relative;
}

.payment-methods h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-option {
    background: var(--background-pure);
    border: 2px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.payment-option:hover {
    border-color: var(--primary-ocean);
    background: var(--background-pure);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.payment-option:hover::before {
    opacity: 0.05;
}

.payment-option.selected {
    border-color: var(--primary-ocean);
    background: var(--background-pure);
    color: var(--neutral-obsidian);
    box-shadow: var(--shadow-colored);
    transform: translateY(-2px);
}

.payment-option.selected::before {
    opacity: 0.08;
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary-ocean);
    filter: brightness(1.1);
    text-shadow: 0 2px 4px rgba(14, 165, 233, 0.3);
}

.payment-option span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-obsidian);
    letter-spacing: -0.01em;
}

.tax-info {
    background: linear-gradient(135deg, var(--neutral-snow) 0%, var(--background-pure) 100%);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.tax-info::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--primary-ocean);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.tax-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--neutral-obsidian);
    font-weight: 500;
    line-height: 1.6;
    padding-left: 0.5rem;
}

/* Newsletter Signup */
.newsletter-signup {
    background: var(--gradient-secondary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-colored);
}

.newsletter-signup h3 {
    margin-bottom: 0.5rem;
}

.newsletter-signup p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.newsletter-input-group button {
    background: #ed8936;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-input-group button:hover {
    background: #dd6b20;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f7fafc;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--neutral-obsidian);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--neutral-cloud);
    color: var(--primary-ocean);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--neutral-obsidian);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--neutral-cloud);
    border-top: 4px solid var(--primary-ocean);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-inner {
    animation: spin 2s linear infinite reverse;
}

.spinner-inner i {
    font-size: 2rem;
    color: var(--primary-ocean);
}

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

/* Enhanced Footer */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #a0aec0;
}

.cert-logo {
    height: 40px;
    width: auto;
    margin: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cert-logo:hover {
    filter: grayscale(0%);
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #f7fafc;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: var(--neutral-obsidian);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--neutral-slate);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--neutral-cloud);
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--primary-ocean);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.legal-content strong {
    color: var(--primary-ocean);
}

.contact-info {
    background: var(--neutral-snow);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-ocean);
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--primary-ocean);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .hamburger {
        display: flex;
        padding: 0.25rem;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: var(--neutral-obsidian);
        font-weight: 600;
    }
    
    .nav-link:hover {
        background: var(--neutral-snow);
        color: var(--primary-ocean);
        transform: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .donate-btn {
        margin: 1rem 2rem 0;
        display: block;
        text-align: center;
        width: calc(100% - 4rem);
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .language-toggle {
        display: none;
    }
    
    /* Donation Section Mobile Fixes */
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .donate-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .donate-form {
        padding: 2rem 1.5rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .amount-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .donation-impact {
        gap: 0.75rem;
    }
    
    .impact-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .amount {
        font-size: 1.25rem;
        min-width: auto;
    }
    
    /* Contact Section Mobile Fixes */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    /* Additional mobile specific styles */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 100px 20px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 1rem 0.75rem;
        min-width: 120px;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }

    .floating-element {
        width: 50px;
        height: 50px;
    }

    .floating-element i {
        font-size: 1.2rem;
    }

    .hero-main-icon {
        width: 100px;
        height: 100px;
    }

    .hero-main-icon i {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-stories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 10px;
    }

    .newsletter-input-group input {
        border-radius: 10px 10px 0 0;
    }

    .newsletter-input-group button {
        border-radius: 0 0 10px 10px;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .hamburger {
        padding: 0.25rem;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Extra small screen support section fixes */
    .donate {
        padding: 80px 0 60px;
    }
    
    .donate-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .donate-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .donate-form {
        padding: 1.5rem 1rem;
    }
    
    .donate-form h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .amount-btn {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .custom-amount input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .impact-item {
        padding: 0.625rem;
        font-size: 0.9rem;
    }
    
    .amount {
        font-size: 1.1rem;
    }
    
    .payment-methods {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .payment-methods h4 {
        font-size: 1.1rem;
    }
    
    .payment-option {
        padding: 1.25rem 0.75rem;
    }
    
    .payment-option i {
        font-size: 1.5rem;
    }
    
    .payment-option span {
        font-size: 0.9rem;
    }
    
    .tax-info {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--primary-ocean);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .floating-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20pt;
    }
}
