/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-teal: #06b6d4;
    --accent-yellow: #fbbf24;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.2);
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.responsive-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Advanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-medium);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.navbar.scrolled .logo-title {
    color: white;
}

.navbar.scrolled .logo-subtitle {
    color: var(--primary-blue);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.logo-icon:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-icon .fa-award {
    color: white;
    font-size: 28px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon:hover .fa-award {
    transform: rotate(15deg) scale(1.1);
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon .fa-users {
    top: 6px;
    right: 6px;
}

.logo-icon .fa-heart {
    bottom: 6px;
    left: 6px;
}

.logo-icon:hover .fa-users {
    transform: translate(6px, -6px) scale(1.2);
    color: var(--accent-yellow);
}

.logo-icon:hover .fa-heart {
    transform: translate(-6px, 6px) scale(1.2);
    color: var(--accent-red);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .bar {
    background: white;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Advanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.section-badge.red {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
}

.section-badge.green {
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.section-badge.glass-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Hero Section */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-particles {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    width: 100%;
    padding: 40px 24px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 32px 0;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
    word-break: break-word;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-events {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes textGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(52, 211, 153, 0.8));
    }
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    z-index: 3;
    position: relative;
}

/* Interactive Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 48px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 3;
    position: relative;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    animation: statFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.6s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-icon {
    font-size: 28px;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: #fcd34d;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
    z-index: 3;
    position: relative;
}

/* Enhanced Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-blue) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--primary-teal) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    margin: 32px 0;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section Enhancements */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.impact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s ease;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-blue);
}

.impact-icon.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--accent-green);
}

.impact-icon.yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--accent-yellow);
}

.impact-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.impact-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    transition: all 0.4s ease;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

/* Enhanced Events Section */
.events-section {
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.events-section .section-title {
    color: white;
}

.events-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.event-card:hover::before {
    left: 100%;
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.orange-gradient {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.event-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.event-date {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-content {
    padding: 28px;
}

.event-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.event-location,
.event-participants {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Get Involved Section */
.get-involved-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 50%, var(--primary-teal) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.get-involved-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.get-involved-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-white {
    color: white;
}

.text-yellow {
    color: var(--accent-yellow);
}

.text-light {
    color: rgba(255, 255, 255, 0.9);
}

.volunteer-opportunities {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.volunteer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.volunteer-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.volunteer-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s ease;
}

.volunteer-item:hover .volunteer-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.volunteer-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.volunteer-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.get-involved-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.image-1 {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.image-2 {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 24px;
}

.stats-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    text-align: center;
}

.stats-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark-bg);
    line-height: 1;
}

.stats-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-blue);
}

.contact-icon.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--accent-green);
}

.contact-icon.yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--accent-yellow);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-teal);
}

.contact-hours {
    margin-top: 32px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hour-item span:last-child {
    color: var(--text-light);
}

/* Enhanced Forms */
.card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.card-content {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enhanced Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 32px;
    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(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-section ul li span {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-footer {
    margin-top: 20px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.contact-item-footer i {
    width: 16px;
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Floating Action Button Enhancement */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.fab-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-actions.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-action {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.fab-action span {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.fab-actions.active .fab-action span {
    opacity: 1;
    transform: translateX(0);
}

.fab-action i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.fab-action.donate i {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
}

.fab-action.call i {
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.fab-action.email i {
    background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
}

.fab-action.whatsapp i {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-action:hover i {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fab-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.fab-main:hover::before {
    transform: translateX(100%);
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.fab-main.active {
    transform: rotate(45deg) scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-light);
    font-size: 16px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Donate Page Styles */
.donate-page {
    background: linear-gradient(135deg, #dbeafe, #f0f9ff, #ecfdf5);
    min-height: 100vh;
}

.donate-header {
    background: white;
    box-shadow: var(--shadow-light);
    padding: 16px 0;
    margin-top: 0;
}

.header-content {
    display: flex;
    justify-content: flex-end;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
}

.back-link:hover {
    color: var(--primary-blue);
    background: #f8fafc;
    transform: translateX(-4px);
}

.donate-hero {
    text-align: center;
    padding: 60px 0;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.trust-item i {
    color: var(--accent-green);
    font-size: 14px;
}

.donate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.donation-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: var(--shadow-heavy);
}

.gradient-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    border-radius: 24px 24px 0 0;
}

.gradient-header h2 {
    color: white;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gradient-header p {
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-toggle {
    padding: 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 12px;
}

input[type="radio"]:checked + .btn-toggle {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
    transform: scale(1.02);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.btn-amount {
    padding: 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

input[type="radio"]:checked + .btn-amount {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.custom-amount {
    position: relative;
}

.custom-amount label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 13px;
}

.custom-amount input {
    width: 100%;
    padding: 16px 16px 16px 32px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-amount::before {
    content: 'R';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

input[type="radio"]:checked + .payment-method {
    border-color: var(--primary-blue);
    background: #f0f9ff;
    transform: scale(1.02);
}

.payment-method i:first-child {
    color: var(--text-light);
    font-size: 20px;
    width: 28px;
    text-align: center;
}

.method-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.method-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.payment-check {
    margin-left: auto;
    color: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 18px;
}

input[type="radio"]:checked + .payment-method .payment-check {
    opacity: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.impact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-card,
.why-donate-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: var(--shadow-light);
}

.current-donation {
    background: linear-gradient(135deg, #dbeafe, #ecfdf5);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.current-donation:hover {
    transform: scale(1.02);
}

.donation-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.donation-type-text {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
}

.impact-levels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-level {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: white;
}

.impact-level.active {
    border-color: var(--accent-green);
    background: #f0fdf4;
    transform: scale(1.02);
}

.impact-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.impact-icon.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--accent-green);
}

.impact-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-blue);
}

.impact-icon.purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: var(--accent-purple);
}

.impact-icon.red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: var(--accent-red);
}

.impact-content {
    flex: 1;
}

.impact-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 15px;
}

.impact-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.4;
}

.impact-amount {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
}

.impact-check {
    color: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 18px;
    margin-left: auto;
}

.impact-level.active .impact-check {
    opacity: 1;
}

.why-donate-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-donate-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-donate-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.why-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-blue);
}

.why-icon.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--accent-green);
}

.why-icon.yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--accent-yellow);
}

.why-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-size: 15px;
}

.why-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.success-stories {
    margin-top: 60px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.story-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.story-impact {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.story-content {
    padding: 24px;
}

.story-content h3 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
}

.story-date,
.story-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .about-content,
    .get-involved-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero {
        min-height: calc(80vh - var(--navbar-height));
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--navbar-height);
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: white;
        font-size: 18px;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .donation-type-buttons {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-input-group {
        flex-direction: column;
    }
    
    .hero {
        min-height: calc(70vh - var(--navbar-height));
    }
    
    .hero-content {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .impact-items,
    .volunteer-opportunities,
    .contact-items {
        gap: 20px;
    }

    .impact-item,
    .volunteer-item,
    .contact-item {
        padding: 20px;
    }

    .card-header,
    .card-content {
        padding: 20px;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }
    
    .hero {
        min-height: calc(60vh - var(--navbar-height));
    }
    
    .hero-content {
        padding: 16px 12px;
    }
    
    .fab-main {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .fab-action i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.pulse { animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 6px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Input States */
input[type="radio"] {
    display: none;
}

input[type="checkbox"] {
    accent-color: var(--primary-blue);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .fab-container,
    .back-to-top,
    .hero-particles {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    body {
        padding-top: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0000ff;
        --primary-teal: #008080;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles {
        display: none;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
