/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-bg: #f8f9fa;
    --cream-bg: #fff8f0;
    --dark-bg: #1a1a2e;
    --text-dark: #2b2d42;
    --text-light: #fff;
    --text-muted: #6c757d;
    --gold: #ffd166;
    --success: #06d6a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 15px 25px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.logo-img.shrink {
    height: 65px;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.nav-link span {
    position: relative;
    display: inline-block;
}

.nav-link span::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.nav-link:hover span::before,
.nav-link.active span::before {
    transform: translateX(-50%) scale(1);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Hero Section - YMCA Style */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.7) 0%, rgba(69, 123, 157, 0.5) 50%, rgba(230, 57, 70, 0.7) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 60px;
    color: white;
}

.hero-welcome {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 65px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light {
    color: white;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header.light .section-label {
    color: var(--gold);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header.light h2 {
    color: white;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: var(--light-bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.program-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.program-link:hover {
    gap: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header .section-label {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text .section-label {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.founder-intro {
    display: block;
}

.founder-text p:first-child {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.9;
}

.founder-text p:last-child {
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 25px;
    background: var(--cream-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    line-height: 1.8;
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 20px;
    background: var(--cream-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.founder-quote span {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.about-values {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-item span {
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -10px;
}

/* Approach Section - Redesigned */
.approach {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold), var(--primary-color));
}

.approach-header {
    margin-bottom: 60px;
    text-align: center;
}

.approach-intro {
    max-width: 700px;
    margin: 0 auto;
}

.approach-intro .section-label {
    text-align: center;
}

.approach-intro h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.approach-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.learners-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.learner-category {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.learner-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.learner-category:hover::before {
    transform: scaleX(1);
}

.learner-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.learner-category h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.learner-list {
    list-style: none;
}

.learner-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.learner-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.learner-list li:last-child {
    border-bottom: none;
}

.approach-cta {
    text-align: center;
    padding: 50px;
    background: var(--secondary-color);
    border-radius: 20px;
    color: white;
}

.approach-cta p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
}

.approach-cta .btn-primary {
    background: white;
    color: var(--secondary-color);
}

.approach-cta .btn-primary:hover {
    background: var(--gold);
    color: var(--secondary-color);
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a6f 100%);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.impact-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

.impact-stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.impact-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.insight-card i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Section */
.skills {
    padding: 100px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.skill-icon i {
    font-size: 2rem;
    color: white;
}

.skill-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.skill-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Founder Section */
.founder {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #fef6f0 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.founder-image-wrapper {
    position: sticky;
    top: 120px;
    text-align: center;
}

.founder-logo-large {
    width: 350px;
    height: auto;
    margin-bottom: 20px;
}

.founder-bio .section-label {
    text-align: left;
}

.founder-bio h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px !important;
}

.founder-bio p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-mission {
    background: var(--secondary-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.founder-mission h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-mission h4 i {
    color: var(--gold);
}

.founder-mission p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.founder-philosophy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.philosophy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.philosophy-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.philosophy-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--secondary-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-width: 85%;
}

.story-video img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-dark);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.story-text {
    color: white;
}

.story-text .section-label {
    color: var(--gold);
    text-align: left;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-text p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Rules Section */
.rules {
    padding: 100px 0;
    background: var(--light-bg);
}

.rules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.rule-item {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.rule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rule-item i {
    color: var(--primary-color);
}

.quote-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Involved Section */
.involved {
    padding: 100px 0;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.involved-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s;
}

.involved-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.involved-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.involved-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.involved-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* Merch Section */
.merch {
    padding: 100px 0;
    background: var(--cream-bg);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.merch-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.merch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.merch-image {
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.merch-card:hover .merch-image img {
    transform: scale(1.05);
}

.merch-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.merch-card .price {
    padding: 0 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-buy {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: var(--primary-color);
}

/* Support Section */
.support {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-text {
    color: white;
}

.support-text .section-label {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.support-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.support-text p {
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.8;
}

.program-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.donate-box {
    background: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.donate-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.btn-donate {
    display: inline-block;
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-donate:hover {
    background: var(--primary-color);
}

/* Volunteer Form Modal */
.volunteer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
}

.volunteer-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.volunteer-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.volunteer-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
    z-index: 10;
}

.volunteer-modal-close:hover {
    color: var(--primary-color);
}

.volunteer-modal-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.volunteer-modal-header h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.volunteer-modal-header .section-desc {
    color: var(--text-muted);
}

.volunteer-modal .form-container {
    padding: 20px 40px 40px;
    box-shadow: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    .volunteer-modal {
        padding: 20px 10px;
    }
    
    .volunteer-modal-header {
        padding: 30px 20px 15px;
    }
    
    .volunteer-modal .form-container {
        padding: 15px 20px 30px;
    }
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-muted);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding-top: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.footer-brand-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-cta p {
    opacity: 0.8;
}

.btn-footer {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-footer:hover {
    background: var(--primary-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 5px;
    color: var(--gold);
    opacity: 1 !important;
    font-weight: 500;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-grid,
    .skills-grid,
    .involved-grid,
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learners-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-insights {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-grid,
    .skills-grid,
    .involved-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .learners-showcase {
        grid-template-columns: 1fr;
    }
    
    .learner-category {
        padding: 30px 25px;
    }
    
    .approach-intro h2 {
        font-size: 2.2rem;
    }
    
    .approach-cta p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .story-content,
    .support-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image-wrapper {
        position: static;
    }
    
    .founder-logo-large {
        width: 200px;
    }
    
    .founder-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stat h3 {
        font-size: 2.5rem;
    }
    
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}
