/* Root Variables */
:root {
    --primary-color: #D4510F;
    --primary-dark: #A63F0C;
    --primary-light: #E87244;
    --secondary-color: #2C5F8D;
    --secondary-dark: #1E4164;
    --accent-color: #F7B32B;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #2D6A4F;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.0625rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

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

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-nav.active {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-link {
    background: none;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 81, 15, 0.85) 0%, rgba(44, 95, 141, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0.5rem auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(-45deg) translateY(0); }
    40% { transform: rotate(-45deg) translateY(10px); }
    60% { transform: rotate(-45deg) translateY(5px); }
}

/* Mission Statement */
.mission-statement {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.mission-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Section Styles */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Preview */
.about-preview {
    padding: 6rem 0;
}

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

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
}

.about-description {
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Programs Section */
.programs-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
}

.program-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-description {
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
}

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

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Who We Help */
.who-we-help {
    padding: 6rem 0;
}

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

.help-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.help-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.help-card p {
    color: var(--text-light);
    margin: 0;
}

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

.cta-title {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
}

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

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-charity-info {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-charity-info p {
    margin-bottom: 0.5rem;
    color: inherit;
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1.25rem;
}

.contact-list strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-list p {
    margin: 0.25rem 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a {
    color: var(--primary-light);
}

.contact-list a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
    color: inherit;
}

.footer-bottom-content a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-content a:hover {
    color: var(--primary-light);
}

.footer-locations {
    font-style: italic;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

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

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-text p {
    margin-bottom: 1.25rem;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.mv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.approach-card {
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.approach-card:hover::before {
    height: 100%;
}

.approach-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.approach-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Leadership Section */
.leadership-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.leadership-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.leadership-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

.leadership-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

/* Locations Section */
.locations-section {
    padding: 6rem 0;
}

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

.location-card {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.location-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Program Detail Section */
.program-detail-section {
    padding: 6rem 0;
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.program-detail-image {
    position: sticky;
    top: 100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.program-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-subtitle {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.program-highlights {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.program-highlights h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-highlights ul {
    list-style: none;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Program Components */
.program-components {
    padding: 6rem 0;
    background: var(--bg-light);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.component-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.component-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.component-card p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.component-card ul {
    list-style: none;
}

.component-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.component-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Mentoring Section */
.mentoring-section {
    padding: 6rem 0;
}

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

.mentoring-features {
    margin-top: 2rem;
}

.mentoring-feature {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.mentoring-feature strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.mentoring-feature p {
    margin: 0;
    color: var(--text-medium);
}

.mentoring-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mentoring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Journey Timeline */
.journey-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.journey-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.journey-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.journey-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary-color);
    position: relative;
    z-index: 1;
}

.journey-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.journey-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.journey-content p {
    margin: 0;
    color: var(--text-medium);
}

/* Eligibility Section */
.eligibility-section {
    padding: 6rem 0;
}

.eligibility-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.eligibility-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

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

.eligibility-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.eligibility-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.eligibility-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.eligibility-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.eligibility-requirements {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.eligibility-requirements h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.eligibility-requirements ul {
    list-style: none;
}

.eligibility-requirements li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.eligibility-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Impact Stats Section */
.impact-stats-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.stat-card-large {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* Impact Areas */
.impact-areas {
    padding: 6rem 0;
}

.impact-grid {
    display: grid;
    gap: 3rem;
}

.impact-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: var(--transition);
}

.impact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.impact-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.impact-card:nth-child(even) .impact-card-image {
    order: 2;
}

.impact-card-image {
    height: 350px;
    overflow: hidden;
}

.impact-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.impact-card:hover .impact-card-image img {
    transform: scale(1.1);
}

.impact-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-card-content p {
    margin-bottom: 2rem;
}

.impact-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.metric span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.story-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.story-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 2rem;
}

.story-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Outcomes Section */
.outcomes-section {
    padding: 6rem 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.outcome-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.outcome-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.outcome-percentage {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.outcome-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outcome-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* Long-term Impact */
.longterm-impact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.impact-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-medium);
}

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

.longterm-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.longterm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.longterm-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.longterm-card p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Report Section */
.report-section {
    padding: 6rem 0;
}

.report-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 16px;
}

.report-content h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.report-content p {
    margin-bottom: 1.5rem;
}

.report-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.report-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.report-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Main Section */
.contact-main-section {
    padding: 6rem 0;
}

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

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

/* Forms */
.contact-form,
.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-success,
.donation-success {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--success-color);
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.form-success h3,
.donation-success h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.form-success p,
.donation-success p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.success-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.charity-info-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
}

.contact-info-card h3,
.charity-info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-detail-content p {
    margin: 0.25rem 0;
    color: var(--text-medium);
}

.contact-detail-content a {
    color: var(--primary-color);
}

.contact-detail-content a:hover {
    color: var(--primary-dark);
}

.detail-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.charity-info-card {
    background: var(--secondary-color);
    color: white;
}

.charity-info-card h4 {
    color: white;
}

.charity-info-card p {
    color: rgba(255, 255, 255, 0.9);
}

.charity-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.quick-action-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.quick-action-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.quick-action-card p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-item a:hover {
    color: var(--primary-dark);
}

/* Donation Sections */
.donate-header {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--secondary-color) 100%);
}

.donate-impact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.impact-message {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.impact-message h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.impact-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.donation-section {
    padding: 6rem 0;
}

.donation-methods {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.donation-card {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.donation-card.featured {
    background: white;
    box-shadow: var(--shadow-md);
}

.donation-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.donation-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.donation-card > p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.donation-impact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.donation-impact-note p {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.monthly-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Donate Form Section */
.donate-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.donate-form-section .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.donate-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-option:hover,
.checkbox-option:hover {
    background: var(--border-color);
}

.radio-option input,
.checkbox-option input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.amount-input-group {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-medium);
}

.amount-input-group input {
    padding-left: 2.5rem;
}

.form-actions {
    text-align: center;
}

.secure-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.donation-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card p {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.contact-card {
    background: var(--primary-color);
    color: white;
}

.contact-card h4 {
    color: white;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-card a {
    color: white;
    text-decoration: underline;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Other Ways Section */
.other-ways-section {
    padding: 6rem 0;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.way-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.way-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

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

.way-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.way-card p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* Donor Impact Section */
.donor-impact-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: white;
}

.donor-impact-section .section-title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

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

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

.donor-stat .stat-number {
    font-size: 4rem;
    color: var(--accent-color);
}

.donor-stat .stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-grid,
    .content-grid,
    .program-detail-grid,
    .mentoring-grid,
    .contact-layout,
    .donation-methods,
    .donate-form-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-card {
        grid-template-columns: 1fr !important;
    }
    
    .impact-card:nth-child(even) .impact-card-image {
        order: 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}