/* Spenden-spezifische Styles - Premium Edition mit erweiterten Animationen */

/* ===========================
   GLOBALE ANIMATIONEN
   =========================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulseBig {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 123, 188, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(11, 123, 188, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmerFast {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(11, 123, 188, 0.3), 0 0 40px rgba(11, 123, 188, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(11, 123, 188, 0.6), 0 0 80px rgba(11, 123, 188, 0.4);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.8), 0 0 20px rgba(96, 165, 250, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(96, 165, 250, 1), 0 0 40px rgba(96, 165, 250, 0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounceEmoji {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.2);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40%, 60%, 80% {
        transform: scale(1.1);
    }
    50%, 70% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===========================
   PARTICLE SYSTEM
   =========================== */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(11, 123, 188, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -1000px);
        opacity: 0;
    }
}

/* ===========================
   DONATION HERO SECTION
   =========================== */

.donation-hero {
    position: relative;
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 50%, #1e40af 100%);
    min-height: 78vh;
    color: white;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    padding-top: 3rem;
}

/* Sanfter Wellenübergang */
.hero-wave-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.hero-wave-transition svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: morphing 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
    color: #ffffff;
}

.badge-text {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Title with Word Animation */
.donation-hero .hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
    display: none;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    margin: 0 0.3rem;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.3s; }
.title-word:nth-child(3) { animation-delay: 0.5s; }

.donation-hero .hero-subtitle {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.hero-subtitle-big {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
    font-weight: 500 !important;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    animation: glow 2s ease-in-out infinite;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
    margin: 0 auto 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   DONATION GOAL SECTION
   =========================== */

.donation-goal-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.goal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.goal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 123, 188, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B7BBC, #2563eb, #8b5cf6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.goal-card:hover .card-shine {
    opacity: 1;
}

.goal-card.floating {
    animation: float 6s ease-in-out infinite;
}

.goal-card.floating[data-float-speed="2"] {
    animation-duration: 5s;
}

.goal-card.floating[data-float-speed="2.5"] {
    animation-duration: 5.5s;
}

.goal-card.floating[data-float-speed="3"] {
    animation-duration: 6s;
}

.goal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(11, 123, 188, 0.2);
    border-color: #0B7BBC;
}

.goal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: transform 0.4s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(5deg);
}

.goal-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.goal-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.goal-card:hover h3 {
    color: #0B7BBC;
}

.goal-card p {
    color: #475569;
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.05rem;
}

/* ===========================
   DONATION STATISTICS
   =========================== */

.donation-stats-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(11, 123, 188, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.donation-progress {
    max-width: 900px;
    margin: 3rem auto 0;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-animated:nth-child(1) { animation-delay: 0.1s; }
.stat-animated:nth-child(2) { animation-delay: 0.3s; }
.stat-animated:nth-child(3) { animation-delay: 0.5s; }

.stat-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 123, 188, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover .stat-glow {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 123, 188, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Progress Bar */
.progress-bar-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 50px;
    background: #e5e7eb;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0B7BBC 0%, #2563eb 50%, #8b5cf6 100%);
    background-size: 200% 100%;
    border-radius: 25px;
    transition: width 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5rem;
    animation: gradientShift 3s ease infinite;
}

.progress-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

.progress-percentage {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===========================
   FOCUS AREAS SECTION
   =========================== */

.focus-areas-section {
    padding: 100px 0;
    background: white;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.focus-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 123, 188, 0.05), rgba(37, 99, 235, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.focus-item:hover::before {
    opacity: 1;
}

.focus-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(11, 123, 188, 0.15);
    border-color: #0B7BBC;
}

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B7BBC;
    transition: transform 0.4s ease;
}

.focus-item:hover .focus-icon {
    transform: scale(1.2) rotate(10deg);
    color: #2563eb;
}

.focus-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.focus-item p {
    color: #64748b;
    font-size: 0.875rem;
}

/* ===========================
   IMPACT SECTION
   =========================== */

.impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.impact-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.impact-section .section-header h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.impact-section .section-header p {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.impact-item {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.impact-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(11, 123, 188, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-item:hover .impact-glow {
    opacity: 1;
}

.impact-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 25px 60px rgba(11, 123, 188, 0.4);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.impact-label {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.impact-icon {
    margin-bottom: 1.5rem;
    color: #60a5fa;
    filter: drop-shadow(0 4px 12px rgba(96, 165, 250, 0.4));
}

/* ===========================
   DONATION FORM SECTION
   =========================== */

.donation-form-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.form-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(11, 123, 188, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.donation-form-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    overflow: hidden;
}

.form-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: formShine 10s infinite;
}

@keyframes formShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.form-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.form-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.form-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    padding: 20px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.125rem;
}

/* Donation Amounts */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    position: relative;
    padding: 1.75rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.amount-value {
    position: relative;
    z-index: 2;
    display: block;
}

.amount-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(11, 123, 188, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.amount-btn:hover .amount-ripple {
    opacity: 1;
    transform: scale(1);
}

.amount-btn:hover {
    border-color: #0B7BBC;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 123, 188, 0.2);
}

.amount-btn.selected {
    border-color: #0B7BBC;
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(11, 123, 188, 0.4);
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Custom Amount */
.custom-amount {
    margin-bottom: 3rem;
}

.custom-amount label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.custom-amount label svg {
    color: #0B7BBC;
}

.input-wrapper {
    position: relative;
}

.custom-amount input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.custom-amount input:focus {
    outline: none;
    border-color: #0B7BBC;
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 123, 188, 0.1);
}

.input-focus-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus + .input-focus-border {
    border-color: #0B7BBC;
    animation: pulse 1s ease-in-out infinite;
}

/* Donation Method */
.donation-method {
    text-align: center;
}

.donation-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    border-color: #0B7BBC;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.payment-badge svg {
    color: #0B7BBC;
}

/* PayPal Button Container */
#paypal-button-container {
    margin-top: 2rem;
    min-height: 55px;
}

#paypal-button-container .paypal-button {
    border-radius: 12px !important;
}

/* Loading state for PayPal */
.paypal-loading {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.paypal-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #0B7BBC;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    margin-left: 0.5rem;
}

/* ===========================
   THANK YOU EXPLOSION ANIMATION
   =========================== */

.thank-you-explosion {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    animation: fadeInBg 0.5s forwards;
    pointer-events: none;
}

@keyframes fadeInBg {
    to {
        background: rgba(0, 0, 0, 0.85);
    }
}

.thank-you-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0) rotate(-180deg);
    animation: explosionEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
    max-width: 600px;
    width: 90%;
}

@keyframes explosionEntry {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
    fill: #0B7BBC;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40%, 60%, 80% {
        transform: scale(1.1);
    }
    50%, 70% {
        transform: scale(1.05);
    }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0B7BBC, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(11, 123, 188, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(11, 123, 188, 0.6));
    }
}

.thank-you-message {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thank-you-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B7BBC;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #0B7BBC;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Fireworks effect */
.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: fireworkExplode 1s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.thank-you-close {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.thank-you-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 123, 188, 0.4);
}

/* ===========================
    position: relative;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    overflow: hidden;
    border: none;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    transition: transform 0.3s ease;
}

.donation-btn:hover .btn-bg {
    transform: scale(1.05);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-magnetic {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-magnetic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(11, 123, 188, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .donation-hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .title-word {
        margin: 0 0.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .goal-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .amount-btn {
        padding: 1.5rem 0.75rem;
        font-size: 1.25rem;
    }

    .donation-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }

    .orb {
        filter: blur(60px);
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible {
    outline: 3px solid #0B7BBC;
    outline-offset: 2px;
}


/* Donation Hero Section */
.donation-hero {
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 100%);
    min-height: 60vh;
    color: white;
}

.donation-hero .hero-title {
    color: white;
    opacity: 1;
    visibility: visible;
    display: none;
}

.donation-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Donation Goal Section */
.donation-goal-section {
    padding: 80px 0;
    background: white;
}

.goal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.goal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0B7BBC;
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.goal-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.goal-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Donation Statistics */
.donation-stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.donation-progress {
    max-width: 900px;
    margin: 3rem auto 0;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.progress-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.progress-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B7BBC;
    margin-bottom: 0.5rem;
}

.progress-stats .stat-label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.progress-bar-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    width: 100%;
    height: 40px;
    background: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0B7BBC 0%, #2563eb 100%);
    border-radius: 20px;
    transition: width 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 1rem;
}

/* Focus Areas Section */
.focus-areas-section {
    padding: 80px 0;
    background: white;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.focus-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.focus-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B7BBC;
}

.focus-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.focus-item p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.impact-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.impact-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    letter-spacing: 1.5px;
}

.impact-section .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.impact-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.impact-item {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.impact-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-item:hover .impact-glow {
    opacity: 1;
}

.impact-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 25px 60px rgba(96, 165, 250, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.impact-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Donation Form Section */
.donation-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.donation-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.125rem;
}

/* Donation Amounts */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #0B7BBC;
    background: #f0f9ff;
    color: #0B7BBC;
    transform: translateY(-2px);
}

.amount-btn.selected {
    border-color: #0B7BBC;
    background: linear-gradient(135deg, #0B7BBC 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(11, 123, 188, 0.3);
}

/* Custom Amount */
.custom-amount {
    margin-bottom: 3rem;
}

.custom-amount label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.custom-amount input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: #0B7BBC;
    box-shadow: 0 0 0 3px rgba(11, 123, 188, 0.1);
}

/* Donation Method */
.donation-method {
    text-align: center;
}

.donation-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-info {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.donation-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-icon {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-hero {
        min-height: 50vh;
        padding: 80px 0 40px;
    }

    .goal-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .amount-btn {
        padding: 1.25rem 0.75rem;
        font-size: 1.125rem;
    }

    .donation-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }

    .progress-stats .stat-number {
        font-size: 2rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }
}
