/* CSS Custom Properties - Brand Colors */
:root {
    --electric-pickle-green: #98F576;
    --community-blue: #2B3A67;
    --sunshine-yellow: #FFD15C;
    --rally-coral: #FF6B5A;
    --court-white: #F8F9FA;
    --graphite: #343A40;
    --light-grey: #E9ECEF;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--graphite);
    background-color: var(--court-white);
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--court-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    position: relative;
    width: 200px;
    height: 100px;
    margin-bottom: 2rem;
}

.pickleball {
    width: 20px;
    height: 20px;
    background: var(--electric-pickle-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: dink 1.5s ease-in-out infinite;
}

.net {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--community-blue);
    transform: translate(-50%, -50%);
}

@keyframes dink {
    0%, 100% { left: 0; }
    50% { left: calc(100% - 20px); }
}

.loading-screen p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--community-blue);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--community-blue);
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: var(--graphite);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--electric-pickle-green);
    background: rgba(152, 245, 118, 0.1);
}

.nav-cta {
    background: var(--rally-coral);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #e55a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 90, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--community-blue);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video video,
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 58, 103, 0.7) 0%, rgba(152, 245, 118, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--rally-coral);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 90, 0.3);
}

.btn-primary:hover {
    background: #e55a4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--community-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--community-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--graphite);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background: white;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-wrapper {
    position: relative;
    background: var(--court-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.usa-map-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-grey);
    padding: 0.5rem;
    border-radius: 10px;
}

.state-box {
    aspect-ratio: 1;
    background: var(--light-grey);
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--graphite);
    position: relative;
    min-height: 30px;
}

.state-box:hover {
    background: var(--electric-pickle-green);
    color: white;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(152, 245, 118, 0.4);
}

.state-box.active {
    background: var(--electric-pickle-green);
    color: white;
}

.state-box.inactive {
    background: var(--light-grey);
    color: var(--graphite);
}

.state-box.inactive:hover {
    background: var(--rally-coral);
    color: white;
}

.state-name {
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.1;
}

.state-programs {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--sunshine-yellow);
    color: var(--community-blue);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}

.map-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--graphite);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.active {
    background: var(--electric-pickle-green);
}

.legend-color.inactive {
    background: var(--light-grey);
}

.state-details {
    background: var(--court-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.state-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--community-blue);
    margin-bottom: 1rem;
}

.state-info p {
    color: var(--graphite);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.state-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--electric-pickle-green);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--court-white);
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-pickle-green), var(--sunshine-yellow));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--community-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--graphite);
    line-height: 1.6;
}

/* Philanthropy Section */
.philanthropy-section {
    padding: var(--section-padding);
    background: white;
}

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

.philanthropy-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--community-blue);
    margin-bottom: 1.5rem;
}

.philanthropy-text p {
    color: var(--graphite);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.philanthropy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--court-white);
}

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

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--community-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-grey);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-pickle-green);
    box-shadow: 0 0 0 3px rgba(152, 245, 118, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--community-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--graphite);
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--electric-pickle-green);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--community-blue);
}

/* Register Section */
.register-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--community-blue) 0%, var(--electric-pickle-green) 100%);
    color: white;
    text-align: center;
}

.register-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.register-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.register-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.register-section .btn-primary {
    background: white;
    color: var(--community-blue);
}

.register-section .btn-primary:hover {
    background: var(--court-white);
    transform: translateY(-3px);
}

.register-section .btn-secondary {
    border-color: white;
    color: white;
}

.register-section .btn-secondary:hover {
    background: white;
    color: var(--community-blue);
}

/* Footer */
.footer {
    background: var(--graphite);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-pickle-green);
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--electric-pickle-green);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--electric-pickle-green);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--graphite);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--rally-coral);
}

/* Program Pins */
.program-pins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-pin {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--electric-pickle-green);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.program-pin .pin-content h4 {
    font-family: var(--font-heading);
    color: var(--community-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.program-pin .pin-content p {
    color: var(--graphite);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.student-count {
    background: var(--sunshine-yellow);
    color: var(--community-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Success Stories Section */
.success-stories-section {
    padding: var(--section-padding);
    background: var(--court-white);
}

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

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-family: var(--font-heading);
    color: var(--community-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-quote {
    font-style: italic;
    color: var(--graphite);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats .stat {
    background: var(--sunshine-yellow);
    color: var(--community-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Impact Statistics Section */
.impact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--community-blue) 0%, var(--electric-pickle-green) 100%);
    color: white;
}

.impact-section .section-header h2 {
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--sunshine-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Programs Overview Section */
.programs-overview-section {
    padding: var(--section-padding);
    background: white;
}

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

.program-card {
    background: var(--court-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-pickle-green), var(--rally-coral));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--community-blue);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--graphite);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card .btn-secondary {
    background: var(--community-blue);
    color: white;
    border: 2px solid var(--community-blue);
}

.program-card .btn-secondary:hover {
    background: var(--electric-pickle-green);
    border-color: var(--electric-pickle-green);
    color: white;
}

.program-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--graphite);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-pickle-green);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--court-white);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--electric-pickle-green);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--graphite);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--community-blue);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--graphite);
    font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philanthropy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .usa-map-grid {
        max-width: 100%;
        padding: 0.25rem;
        gap: 0.5px;
    }
    
    .state-box {
        min-height: 25px;
        font-size: 0.5rem;
        border-radius: 2px;
    }
    
    .state-name {
        font-size: 0.5rem;
    }
    
    .state-programs {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .register-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .value-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}
