/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variables - Nickelodeon/Bronze Copper Orange Theme */
:root {
    --primary-orange: #FF6B35; /* Nickelodeon Orange */
    --secondary-orange: #E55A2B; /* Darker Orange */
    --copper: #CD7F32; /* Copper */
    --bronze: #CD853F; /* Bronze */
    --warm-orange: #FF8C42; /* Warm Orange */
    --existing-blue: #1e293b; /* Keep existing blue */
    --light-orange: #FFE4C4; /* Light Orange */
    --dark-orange: #B8460A; /* Dark Orange */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-orange);
}

.nav-cta {
    background: var(--existing-blue) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #334155 !important;
}

.nav-donate {
    background: var(--primary-orange) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-donate:hover {
    background: var(--secondary-orange) !important;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-background video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
}

.hero-text {
    margin-bottom: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--warm-orange);
    position: relative;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
    font-size: 1.125rem;
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
    font-weight: 600;
}

.btn-donate {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 1.125rem;
}

.btn-donate:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-donate-large {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-donate-large:hover {
    background: var(--secondary-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-orange) 100%);
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-header h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mission-tagline {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 600;
}

.separator {
    color: var(--warm-orange);
    opacity: 0.7;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.statement-content h3 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.statement-content p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    flex-direction: column;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.mission-cta {
    text-align: center;
    background: var(--existing-blue);
    padding: 4rem;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    z-index: 0;
}

.cta-text {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 1024px) {
    .mission-header h2 {
        font-size: 2.5rem;
    }
    
    .mission-tagline {
        font-size: 1.25rem;
        flex-wrap: wrap;
    }
    
    .statement-content h3 {
        font-size: 1.75rem;
    }
    
    .statement-content p {
        font-size: 1.125rem;
    }
    
    .value-content h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .mission-statement {
        padding: 2rem;
    }
    
    .value-item {
        padding: 2rem;
    }
    
    .mission-cta {
        padding: 3rem 2rem;
    }
    
    .cta-text h3 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #2d3748 100%);
    color: white;
}

.vision-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vision-statement {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.phase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.phase-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.phase-number {
    background: var(--primary-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.phase-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.phase-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Phase 1 Stats */
.phase-stats {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.phase-stats h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.outcomes-list {
    text-align: center;
}

.outcomes-list h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.outcomes-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.outcomes-list li {
    color: #64748b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vision-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.vision-stats h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Infographics Section */
.infographics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, #fdf8f6 100%);
}

.infographics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infographic-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.infographic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.infographic-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.infographic-icon i {
    font-size: 3rem;
    color: var(--primary-orange);
}

.infographic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.infographic-content h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.infographic-content p {
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--warm-orange));
    border-radius: 6px;
    width: 0;
    transition: width 2s ease;
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 1rem auto;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress path:first-child {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
}

.circular-progress path:last-child {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 3;
    stroke-dasharray: 100;
    stroke-dashoffset: 25;
    transition: stroke-dashoffset 2s ease;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Employment Stats */
.employment-stats {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    flex: 1;
    align-items: center;
}

.stat-circle {
    text-align: center;
}

.stat-circle .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-circle .stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Impact Numbers */
.impact-numbers {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    flex: 1;
    align-items: center;
}

.impact-item {
    text-align: center;
}

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Ticket System */
.ticket-system {
    padding: 80px 0;
    background: white;
}

.ticket-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.ticket-form {
    background: var(--light-orange);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn-primary {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: #fdf8f6;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-author {
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary {
    background: white;
    color: var(--primary-orange);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #1e293b;
    font-weight: 600;
}

.contact-info {
    opacity: 0.8;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Donation Section */
.donation {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
    pointer-events: none;
}

.donation-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.donation-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.donation-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.donation-stat {
    text-align: center;
}

.donation-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 0.5rem;
}

.donation-stat .stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.donation-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.donation-info {
    font-size: 1rem;
    color: #cbd5e1;
}

.donation-info i {
    color: #B8860B;
    margin-right: 0.5rem;
}

.btn-donate-footer {
    background: var(--primary-orange);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
}

.btn-donate-footer:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.footer-donation-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form select option {
    background: #1e293b;
    color: white;
}

.contact-form .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.contact-message.success {
    background: #10B981;
    color: white;
}

.contact-message.error {
    background: #EF4444;
    color: white;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal .contact-form,
.modal .referral-form {
    padding: 2rem;
    max-width: none;
    margin: 0;
}

.modal .contact-form label,
.modal .referral-form label {
    color: #333;
    font-weight: 500;
}

.modal .contact-form input,
.modal .contact-form select,
.modal .contact-form textarea,
.modal .referral-form input,
.modal .referral-form select,
.modal .referral-form textarea {
    background: white;
    color: #333;
    border: 2px solid #e2e8f0;
}

.modal .contact-form input:focus,
.modal .contact-form select:focus,
.modal .contact-form textarea:focus,
.modal .referral-form input:focus,
.modal .referral-form select:focus,
.modal .referral-form textarea:focus {
    border-color: var(--primary-orange);
    background: white;
}

.modal .contact-form input::placeholder,
.modal .contact-form textarea::placeholder,
.modal .referral-form input::placeholder,
.modal .referral-form textarea::placeholder {
    color: #64748b;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.referral-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.referral-message.success {
    background: #10B981;
    color: white;
}

.referral-message.error {
    background: #EF4444;
    color: white;
}

/* Referral Section */
.referrals {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.referral-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.referral-cta p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal .contact-form,
    .modal .referral-form {
        padding: 1.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Divider Section */
.divider-section {
    padding: 60px 0;
    background: #1B3B4B;
    position: relative;
    overflow: hidden;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.divider-logo {
    flex-shrink: 0;
}

.divider-circle {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
    transition: transform 0.3s ease;
}

.divider-circle:hover {
    transform: scale(1.05);
}

.divider-text {
    flex-grow: 1;
    max-width: 800px;
}

.divider-text h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-family: 'Times New Roman', serif;
}

@media (max-width: 1024px) {
    .divider-content {
        gap: 3rem;
    }
    
    .divider-circle {
        width: 120px;
        height: 120px;
    }
    
    .divider-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .divider-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .divider-text h3 {
        font-size: 1.75rem;
    }
    
    .divider-circle {
        width: 100px;
        height: 100px;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--warm-orange);
}

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

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

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

.footer-section a:hover {
    color: var(--warm-orange);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .vision-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phase-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phase-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .infographics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ticket-form {
        padding: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        align-items: center;
        padding: 0 2rem;
        padding-top: 20vh;
        gap: 2rem;
    }
    
    .nav-menu.active li {
        margin: 0;
    }
    
    .nav-menu.active a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active a:hover {
        background: var(--primary-orange);
        color: white;
    }
    
    .nav-menu.active .nav-cta {
        background: var(--primary-orange);
        color: white;
        padding: 1rem 2rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .password-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .password-header h2 {
        font-size: 1.5rem;
    }
} 

/* Program Pillars */
.pillars {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-orange) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pillar-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-visual {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    width: 100%;
}

.visual-indicator {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.visual-indicator i {
    font-size: 1.25rem;
    color: var(--warm-orange);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pillar-card:hover .visual-indicator i {
    opacity: 1;
    transform: scale(1.1);
}

/* Core Message */
.core-message {
    padding: 100px 0;
    background: var(--existing-blue);
    color: white;
    text-align: center;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
}

.message-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message-body p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.message-visual {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.visual-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.visual-element i {
    font-size: 2.5rem;
    color: var(--warm-orange);
}

.visual-element span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Funder Invitation */
.funder-invitation {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, white 100%);
    text-align: center;
}

.invitation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.invitation-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.invitation-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.invitation-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.metric-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
}

.metric-item:hover .metric-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}

.invitation-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Fix for secondary button visibility in funder invitation section */
.invitation-cta .btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.invitation-cta .btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pillars-grid {
        gap: 1.5rem;
    }
    
    .message-header h2 {
        font-size: 2.25rem;
    }
    
    .message-body p {
        font-size: 1.25rem;
    }
    
    .invitation-metrics {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .message-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .invitation-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .invitation-text h2 {
        font-size: 2rem;
    }
    
    .invitation-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .invitation-cta .btn-primary,
    .invitation-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
} 