/* Dr. Amy Acton Campaign Website - Enhanced Visual Design */

:root {
    /* Enhanced Color System - More vibrant and engaging */
    --primary-blue: #1E3A8A;
    --electric-blue: #2563EB;
    --bright-blue: #3B82F6;
    --sky-blue: #0EA5E9;
    --cyan: #06B6D4;
    --teal: #14B8A6;
    --emerald: #10B981;
    --amber: #F59E0B;
    --orange: #F97316;
    --red: #EF4444;
    --rose: #E11D48;
    --purple: #8B5CF6;
    --indigo: #6366F1;
    
    /* Warm accent colors */
    --warm-orange: #EA580C;
    --warm-yellow: #FCD34D;
    --warm-red: #DC2626;
    --warm-pink: #EC4899;
    
    /* Enhanced neutrals with more personality */
    --white: #FFFFFF;
    --cream: #FEFDF8;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Dynamic gradients with more personality */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 30%, #06B6D4 60%, #10B981 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EA580C 30%, #E11D48 70%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A8A 25%, #3B82F6 50%, #06B6D4 75%, #10B981 100%);
    --gradient-warm: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #EA580C 100%);
    --gradient-cool: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #8B5CF6 100%);
    --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #EA580C 25%, #E11D48 50%, #8B5CF6 75%, #3B82F6 100%);
    
    /* Glass and depth effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
    --glass-dark: rgba(15, 23, 42, 0.8);
    
    /* Typography with more character */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Enhanced spacing system */
    --container-max-width: 1200px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;
    --grid-gap: 2rem;
    
    /* Improved animation system */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Enhanced shadow system */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 25px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.2);
    --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.25);
    --shadow-colored: 0 8px 32px rgba(59, 130, 246, 0.2);
    --shadow-warm: 0 8px 32px rgba(245, 158, 11, 0.2);
    --shadow-cool: 0 8px 32px rgba(6, 182, 212, 0.2);
}

/* Enhanced base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add dynamic background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Enhanced Navigation with more personality */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-blue);
    transition: transform var(--transition-normal);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-symbol {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-colored);
}

.logo-symbol::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;
}

.brand-logo:hover .logo-symbol::before {
    left: 100%;
}

.logo-svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

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

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-blue);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sky-blue);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: 12px;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cool);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-donate {
    background: var(--gradient-warm);
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-warm);
}

.nav-donate::before {
    background: var(--gradient-sunset);
}

.nav-donate:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Hero Section with more visual impact */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    animation: badgeFloat 6s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCD34D 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.title-highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    animation: underlineGrow 2s ease-out 1s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.2);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

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

.stat-item {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.4),
        0 0 0 20px rgba(255, 255, 255, 0.05),
        0 0 100px rgba(59, 130, 246, 0.3);
    position: relative;
    transition: all var(--transition-slow);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(59, 130, 246, 0.3),
        transparent,
        rgba(16, 185, 129, 0.3),
        transparent,
        rgba(245, 158, 11, 0.3),
        transparent
    );
    animation: imageGlow 10s linear infinite;
    z-index: -1;
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.5),
        0 0 0 30px rgba(255, 255, 255, 0.1),
        0 0 150px rgba(59, 130, 246, 0.4);
}

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

.hero-image-container:hover .hero-image {
    transform: scale(1.1);
}

/* Page Hero with enhanced styling */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: pageHeroBackground 15s ease-in-out infinite;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCD34D 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.page-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    min-width: 160px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-warm);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--white);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    min-width: 200px;
}

/* Enhanced Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

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

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-600);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Card System */
.why-amy-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
}

.why-amy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

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

.why-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

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

.why-card:hover::after {
    opacity: 0.03;
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Enhanced Issues Section */
.issues-preview {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.issues-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.issues-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.issues-text > p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.issues-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all var(--transition-normal);
}

.issue-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.issue-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.issue-content h4 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.issue-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1.125rem;
}

.issues-image {
    text-align: center;
    position: relative;
}

.issues-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
}

.issues-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

/* Enhanced Story Section */
.story-preview {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gradient-primary);
    transition: all var(--transition-normal);
}

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

.highlight h4 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1.125rem;
}

.story-quote {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(59, 130, 246, 0.1);
    font-weight: 700;
    line-height: 1;
}

.story-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.story-quote cite {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Enhanced CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: ctaBackground 25s ease-in-out infinite;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCD34D 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.cta-content p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: inline-block;
}

/* Enhanced Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 1.125rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Animation Keyframes */
@keyframes heroBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes pageHeroBackground {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(20px); }
    75% { transform: translateX(-20px) translateY(-5px); }
}

@keyframes ctaBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(120deg); }
    66% { transform: scale(0.9) rotate(240deg); }
}

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

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes underlineGrow {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .issues-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 3rem 0;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-2xl);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--gray-700);
        margin: 3px 0;
        transition: all var(--transition-normal);
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        border-radius: 0;
        font-size: 1.125rem;
    }
    
    .nav-donate {
        margin: 2rem 2rem 0;
        border-radius: 12px;
        border-bottom: none;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-description {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .issue-item {
        padding: 1.5rem;
    }
    
    .story-quote {
        padding: 2rem;
    }
}

/* Focus and Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000080;
        --gray-700: #000000;
        --gray-600: #333333;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-link:hover,
    .why-card:hover,
    .issue-item:hover,
    .highlight:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}