/* === PROFESSIONAL WEBSITE TRANSFORMATION === */
/* Based on Airport Link Guesthouse design but with green theme */

/* === MOBILE OVERFLOW PREVENTION - HIGHEST PRIORITY === */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .navbar, .nav-container, .nav-menu, .nav-toggle {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero, .hero-content, .container, .video-background {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* === MOBILE MENU POSITIONING - CONSISTENT ACROSS ALL PAGES === */
    .nav-container {
        position: relative !important;
        padding: 0.75rem 1rem !important;
    }
    
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        padding: 0.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .nav-toggle .bar {
        width: 25px !important;
        height: 3px !important;
        background: var(--white) !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
        display: block !important;
    }
}

:root {
    --primary-green: #059669;
    --primary-green-dark: #047857;
    --primary-green-light: #10b981;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-medium: #f1f5f9;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --shadow-hover: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* === GLOBAL RESET & BASE STYLING === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* === NAVIGATION BAR === */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    min-height: 65px;
    box-shadow: var(--shadow-heavy);
    border-bottom: 3px solid var(--accent-gold);
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.nav-logo a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo .logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
    margin-bottom: 0.4rem;
}

.nav-logo h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.nav-logo span {
    font-size: 0.8rem;
    color: var(--accent-gold-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 700;
}

.donate-btn {
    background: var(--accent-gold);
    color: var(--text-dark) !important;
    font-weight: 700;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    max-width: 44px;
    max-height: 44px;
    overflow: hidden;
    box-sizing: border-box;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
        display: block;
}

body {
    padding-top: 65px;
}

/* === HERO SECTIONS === */
.hero, .impact-hero, .team-hero, .contact-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before, .impact-hero::before, .team-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content, .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === IMPACT HERO SECTION === */
.impact-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.impact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.impact-hero .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.impact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.impact-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-hero .hero-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.impact-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.impact-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
    line-height: 1.6;
}

.impact-hero .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.impact-hero .hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 3;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* === SECTION STYLING === */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === CARDS & GRIDS === */
.card, .transparency-card, .stat-card-large, .story-card, .testimonial-card, .goal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before, .transparency-card::before, .stat-card-large::before, .story-card::before, .testimonial-card::before, .goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.card:hover, .transparency-card:hover, .stat-card-large:hover, .story-card:hover, .testimonial-card:hover, .goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* === STATISTICS SECTION === */
.impact-stats-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card-large {
    text-align: center;
    background: var(--white);
    border: 2px solid var(--border-light);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: block;
}

.stat-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stat-progress {
    background: var(--bg-light);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

/* === TRANSPARENCY SECTION === */
.transparency-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.transparency-card {
    text-align: center;
}

.transparency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.transparency-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.transparency-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-green);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    color: var(--white);
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature:hover span {
    color: var(--white);
}

.transparency-commitment {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 2px solid var(--border-light);
}

.commitment-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.commitment-actions .btn {
    min-width: 180px;
}

/* === SUCCESS STORIES === */
.success-stories-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.story-category {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.story-location {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.story-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.story-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.25rem;
}

.story-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.story-quote {
    background: var(--primary-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
}

.story-quote i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.story-quote p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === FUTURE GOALS === */
.future-goals-section {
    background: var(--white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    text-align: center;
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.goal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.goal-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.goal-progress span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* === CTA SECTION === */
.impact-cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* === MODERN PROFESSIONAL FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, var(--bg-dark) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-link.email {
    background: linear-gradient(135deg, #ea4335, #d93025);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
}

.social-link.phone {
    background: linear-gradient(135deg, var(--primary-green), #2d5a27);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Section Headings */
.footer-heading {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-radius: 6px;
    position: relative;
}

.footer-links li a i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a,
.contact-details span {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--white);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 3rem 0 2rem;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.footer-legal a:hover {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.separator {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 65px);
        background: var(--primary-green);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: 0.3s ease-in-out;
        box-shadow: var(--shadow-heavy);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        overflow: hidden;
        box-sizing: border-box;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        text-decoration: none;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        transition: 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-gold-light);
    }
    
    .nav-menu .nav-link.donate-btn {
        background: var(--accent-gold);
        color: var(--white);
        margin-top: 1rem;
        border-radius: var(--border-radius);
        border: none;
    }
    
    .nav-menu .nav-link.donate-btn:hover {
        background: var(--accent-gold-light);
        color: var(--white);
    }

    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent;
        border: none;
        outline: none;
        min-height: 44px;
        min-width: 44px;
        max-width: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
        display: block;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .transparency-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions, .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Impact Hero Mobile Styles */
    .impact-hero {
        padding: 4rem 0 2rem;
        min-height: 80vh;
    }
    
    .impact-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .impact-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .impact-hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impact-hero .hero-stats-bar {
        position: relative;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .impact-hero .hero-title {
        font-size: 2rem;
    }
    
    .impact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-hero .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .navbar .nav-toggle {
        display: none;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out;
}

/* === LOADING STATE FOR STATISTICS === */
.stat-number[data-target]:not(.loaded),
.impact-number[data-target]:not(.loaded) {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.stat-number[data-target].loaded,
.impact-number[data-target].loaded {
    opacity: 1;
    animation: none;
}

/* === BREADCRUMB NAVIGATION === */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--text-light);
}

/* === HERO STATS BAR === */
.hero-stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* === IMPACT OVERVIEW SECTION === */
.impact-overview-section {
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.overview-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.overview-features .feature:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(10px);
}

.overview-features .feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.overview-features .feature:hover i {
    color: var(--white);
}

.overview-features .feature span {
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.overview-features .feature:hover span {
    color: var(--white);
}

.overview-visual {
    position: relative;
}

.overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.overlay-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.overlay-stat {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.overlay-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.overlay-stat .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* === IMPACT PROGRAMS SECTION === */
.impact-programs-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
}

.program-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-impact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.program-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.program-impact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.program-impact-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-impact-header p {
    color: var(--text-light);
    line-height: 1.6;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.metric .metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.25rem;
}

.metric .metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.program-progress {
    margin-top: 1.5rem;
}

.progress-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress-bar {
    background: var(--bg-light);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* === RESPONSIVE OVERVIEW GRID === */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-img {
        height: 300px;
    }
    
    .overlay-stats {
        bottom: 1rem;
        right: 1rem;
    }
    
    .overlay-stat {
        padding: 0.75rem;
    }
    
    .overlay-stat .stat-number {
        font-size: 1.2rem;
    }
    
    .overlay-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

/* === DONATE PAGE STYLING === */
.donate-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.donate-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.donate-page .hero-content {
    position: relative;
    z-index: 2;
}

.donate-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.donate-page .hero .section-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === QUICK DONATION SECTION === */
.quick-donation {
    background: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.quick-donation .section-header {
    margin-bottom: 4rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.amount-btn {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.amount-btn:hover::before {
    left: 100%;
}

.amount-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.amount-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.amount-btn.custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.amount-btn.custom i {
    font-size: 1rem;
}

.custom-amount-input {
    max-width: 300px;
    margin: 0 auto 3rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group .currency {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 2.5rem;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.donation-impact {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.impact-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.impact-preview i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.impact-preview span {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* === PAYMENT METHODS SECTION === */
.payment-methods {
    background: var(--bg-light);
    padding: 6rem 0;
}

.payment-methods .section-header {
    margin-bottom: 4rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.payment-card.primary::before {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #0070ba, #1546a0);
}

.payment-icon.mobile-money {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
}

.payment-icon.western-union {
    background: linear-gradient(135deg, #d71e28, #b71c1c);
}

.payment-icon.remittance {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.payment-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.payment-badge {
    margin-left: auto;
}

.payment-badge span {
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-features {
    margin-bottom: 2rem;
}

.payment-features ul {
    list-style: none;
    padding: 0;
}

.payment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.payment-features i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.payment-details {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-item .value {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
}

.payment-action {
    text-align: center;
}

.payment-action .btn {
    width: 100%;
    justify-content: center;
}

/* === IMPACT STORIES SECTION === */
.impact-stories {
    background: var(--white);
    padding: 6rem 0;
}

.impact-stories .section-header {
    margin-bottom: 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-impact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.impact-stat {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

/* === TRUST & SECURITY SECTION === */
.trust-security {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.trust-security .section-header {
    margin-bottom: 4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--white);
    padding: 6rem 0;
}

.faq-section .section-header {
    margin-bottom: 4rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === CONTACT SUPPORT SECTION === */
.contact-support {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.contact-support .section-header {
    margin-bottom: 3rem;
}

.contact-support h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-support .section-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-options .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-options .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* === NOTIFICATION STYLES === */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .donate-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .donate-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amount-btn {
        padding: 1.2rem 0.5rem;
        font-size: 1rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        padding: 2rem;
    }
    
    .payment-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .payment-badge {
        margin-left: 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .support-options .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .donation-amounts {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .trust-item {
        padding: 2rem 1.5rem;
    }
}



/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .gallery-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .gallery-navigation {
        top: 65px;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .gallery-filter {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .gallery-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .showcase-video {
        height: 200px;
    }
    
    .story-image {
        height: 200px;
    }
    
    .overlay-content {
        padding: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
    
    .story-impact {
        flex-direction: column;
        align-items: stretch;
    }
    
    .impact-stat {
        width: 100%;
        text-align: center;
    }
}

/* === CONTACT PAGE STYLING === */
.contact-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.contact-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-page .hero-content {
    position: relative;
    z-index: 2;
}

.contact-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-page .hero .section-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT INFO SECTION === */
.contact-info-section {
    background: var(--white);
    padding: 6rem 0;
}

.contact-info-section .section-header {
    margin-bottom: 4rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.contact-method .method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-link:hover {
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.method-features .feature {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.form-content .section-header {
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    display: inline-block;
    position: relative;
    background: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-green);
    font-weight: bold;
    font-size: 14px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.form-actions .btn {
    min-width: 150px;
}

/* === FORM SIDEBAR === */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-tips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tip i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.hours-info {
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.timezone-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--white);
    padding: 6rem 0;
}

.faq-section .section-header {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* === CONTACT PAGE RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .contact-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-content {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .help-tips {
        gap: 0.75rem;
    }
    
    .tip {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .form-content {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .method-features {
        flex-direction: column;
        align-items: center;
    }
    
    .method-features .feature {
        width: 100%;
        text-align: center;
    }
}

/* === ABOUT PAGE STYLING === */
.about-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.about-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-page .hero-content {
    position: relative;
    z-index: 2;
}

.about-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-page .hero .section-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === VIDEO BACKGROUND HERO === */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-width: 100vw;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    position: absolute;
    top: 0;
    left: 0;
}

/* Video overlay removed to show videos with natural colors */
.video-overlay {
    display: none;
}

.hero-video .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-actions .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* === MISSION SECTION === */
.mission-section {
    background: var(--white);
    padding: 6rem 0;
}

.mission-section .section-header {
    margin-bottom: 4rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* === STORY SECTION === */
.story-section {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.story-section .section-header {
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === IMPACT OVERVIEW SECTION === */
.impact-overview-section {
    background: var(--white);
    padding: 6rem 0;
}

.impact-overview-section .section-header {
    margin-bottom: 4rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.impact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === COMMUNITY STORIES SECTION === */
.community-stories-section {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.community-stories-section .section-header {
    margin-bottom: 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-category {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-stat {
    text-align: center;
    flex: 1;
}

.story-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.25rem;
}

.story-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.story-quote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-green);
    padding: 1rem;
    border-radius: 0 10px 10px 0;
}

.story-quote i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.story-quote p {
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .about-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-image img {
        height: 300px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .timeline-marker {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-video .hero-content {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .timeline-item {
        margin-left: 20px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* === TEAM PAGE STYLING === */
.team-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.team-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.team-page .hero-content {
    position: relative;
    z-index: 2;
}

.team-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-page .hero .section-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === LEADERSHIP TEAM SECTION === */
.leadership-team-section {
    background: var(--white);
    padding: 6rem 0;
}

.leadership-team-section .section-header {
    margin-bottom: 4rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.leader-image {
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-content {
    padding: 2rem;
}

.leader-role {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.leader-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.leader-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

/* === CHILDREN HELPED SECTION === */
.children-helped-section {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.children-helped-section .section-header {
    margin-bottom: 4rem;
}

.children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.child-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.child-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.child-image {
    height: 250px;
    overflow: hidden;
}

.child-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.child-card:hover .child-image img {
    transform: scale(1.05);
}

.child-content {
    padding: 2rem;
}

.child-title {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.child-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === TEAM VALUES SECTION === */
.team-values-section {
    background: var(--white);
    padding: 6rem 0;
}

.team-values-section .section-header {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === JOIN TEAM SECTION === */
.join-team-section {
    background: linear-gradient(135deg, var(--bg-light), #f1f5f9);
    padding: 6rem 0;
}

.join-team-section .section-header {
    margin-bottom: 4rem;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.join-option {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.join-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.join-option h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.join-option p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.join-option .btn {
    min-width: 150px;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .team-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .team-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .children-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .join-options {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .child-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .leader-content, .child-content {
        padding: 1.5rem;
    }
    
    .leader-role, .child-title {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .expertise-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .value-card, .join-option {
        padding: 2rem;
    }
}

/* === VIDEO SHOWCASE SECTION === */
.video-showcase-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.video-showcase-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.showcase-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: var(--bg-medium);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.showcase-video:hover {
    transform: scale(1.02);
}

/* Ensure video controls are visible and accessible */
.showcase-video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.7);
}

.showcase-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.video-caption {
    padding: 2rem;
    background: var(--white);
}

.video-caption h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-caption p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Video Play Button Overlay - Only show when video is not playing */
.video-item {
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 150, 105, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    pointer-events: none; /* Don't interfere with video controls */
}

.video-item:hover::before {
    opacity: 1;
}

.video-item::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--white);
    background: rgba(5, 150, 105, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: var(--shadow-heavy);
}

.video-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design for Video Showcase */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 4rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-video {
        height: 200px;
    }
    
    .video-caption {
        padding: 1.5rem;
    }
    
    .video-caption h3 {
        font-size: 1.2rem;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-showcase-section {
        padding: 3rem 0;
    }
    
    .video-grid {
        gap: 1.5rem;
    }
    
    .showcase-video {
        height: 180px;
    }
    
    .video-caption {
        padding: 1.25rem;
    }
    
    .video-item::after {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* === COMPREHENSIVE MOBILE-FIRST RESPONSIVE DESIGN === */
/* Mobile-first approach - start with mobile and scale up */

/* === MOBILE VIEWPORT FIXES === */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .navbar, .nav-container, .nav-menu {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero, .hero-content, .container {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
}

/* === MOBILE-FIRST BASE STYLES === */
.container {
    padding: 0 1rem; /* Smaller padding on mobile */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

/* === NAVIGATION RESPONSIVENESS === */
@media (max-width: 768px) {
    .navbar {
        min-height: 70px; /* Smaller navbar on mobile */
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem; /* Smaller logo text on mobile */
    }
    
    .nav-logo span {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-heavy);
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle {
        display: block !important;
        max-width: 44px !important;
        width: 44px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo span {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .navbar {
        min-height: 60px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    /* === SMALL MOBILE MENU POSITIONING === */
    .nav-toggle {
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
    }
}

/* === HERO SECTION RESPONSIVENESS === */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero .section-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .section-intro {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* === SECTION RESPONSIVENESS === */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .section-badge i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-intro {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* === MISSION SECTION RESPONSIVENESS === */
@media (max-width: 768px) {
    .mission-section {
        padding: 4rem 0;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-text h3 {
        font-size: 1.5rem;
    }
    
    .mission-text p {
        font-size: 0.95rem;
    }
    
    .mission-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 3rem 0;
    }
    
    .mission-text h3 {
        font-size: 1.3rem;
    }
    
    .mission-text p {
        font-size: 0.9rem;
    }
    
    .mission-image img {
        height: 200px;
    }
}

/* === IMPACT OVERVIEW RESPONSIVENESS === */
@media (max-width: 768px) {
    .impact-overview-section {
        padding: 4rem 0;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .impact-label {
        font-size: 0.9rem;
    }
    
    .impact-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .impact-overview-section {
        padding: 3rem 0;
    }
    
    .impact-card {
        padding: 1.5rem 1rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .impact-label {
        font-size: 0.8rem;
    }
}

/* === CORE PROGRAMS RESPONSIVENESS === */
@media (max-width: 768px) {
    .core-programs-section {
        padding: 4rem 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .program-image img {
        height: 200px;
    }
    
    .program-content h3 {
        font-size: 1.4rem;
    }
    
    .program-content p {
        font-size: 0.9rem;
    }
    
    .program-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .core-programs-section {
        padding: 3rem 0;
    }
    
    .program-image img {
        height: 180px;
    }
    
    .program-content h3 {
        font-size: 1.2rem;
    }
    
    .program-content p {
        font-size: 0.85rem;
    }
    
    .program-features li {
        font-size: 0.85rem;
    }
}

/* === SUCCESS STORIES RESPONSIVENESS === */
@media (max-width: 768px) {
    .success-stories-section {
        padding: 4rem 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .story-content h3 {
        font-size: 1.3rem;
    }
    
    .story-description {
        font-size: 0.9rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-quote p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .success-stories-section {
        padding: 3rem 0;
    }
    
    .story-image img {
        height: 180px;
    }
    
    .story-content h3 {
        font-size: 1.1rem;
    }
    
    .story-description {
        font-size: 0.85rem;
    }
}

/* === VIDEO SHOWCASE RESPONSIVENESS === */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 4rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-video {
        height: 200px;
    }
    
    .video-caption {
        padding: 1.5rem;
    }
    
    .video-caption h3 {
        font-size: 1.2rem;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-showcase-section {
        padding: 3rem 0;
    }
    
    .video-grid {
        gap: 1.5rem;
    }
    
    .showcase-video {
        height: 180px;
    }
    
    .video-caption {
        padding: 1.25rem;
    }
    
    .video-item::after {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* === WHY SUPPORT SECTION RESPONSIVENESS === */
@media (max-width: 768px) {
    .why-support-section {
        padding: 4rem 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-support-section {
        padding: 3rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
}

/* === DONATION METHODS RESPONSIVENESS === */
@media (max-width: 768px) {
    .donation-methods-section {
        padding: 4rem 0;
    }
    
    .donation-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donation-method-card {
        padding: 2rem 1.5rem;
    }
    
    .donation-method-card h3 {
        font-size: 1.3rem;
    }
    
    .donation-method-card p {
        font-size: 0.9rem;
    }
    
    .method-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .donation-methods-section {
        padding: 3rem 0;
    }
    
    .donation-method-card {
        padding: 1.5rem 1rem;
    }
    
    .donation-method-card h3 {
        font-size: 1.1rem;
    }
    
    .donation-method-card p {
        font-size: 0.85rem;
    }
    
    .method-details p {
        font-size: 0.85rem;
    }
}

/* === CTA SECTION RESPONSIVENESS === */
@media (max-width: 768px) {
    .impact-cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats-bar {
        margin-top: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .impact-cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
}

/* === FOOTER RESPONSIVENESS === */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}

/* === BUTTON RESPONSIVENESS === */
@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-outline {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* === UTILITY CLASSES FOR MOBILE === */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .mt-mobile-2 {
        margin-top: 2rem !important;
    }
    
    .mb-mobile-2 {
        margin-bottom: 2rem !important;
    }
    
    .p-mobile-1 {
        padding: 1rem !important;
    }
    
    .p-mobile-2 {
        padding: 2rem !important;
    }
}

/* === TOUCH-FRIENDLY INTERACTIONS === */
@media (max-width: 768px) {
    /* Ensure touch targets are at least 44px */
    .btn,
    .nav-link,
    .amount-btn,
    .gallery-filter,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Increase spacing for touch interactions */
    .nav-link,
    .gallery-filter {
        margin: 0.25rem 0;
    }
    
    /* Optimize hover states for touch devices */
    .video-item:hover,
    .story-card:hover,
    .program-card:hover,
    .impact-card:hover {
        transform: none;
    }
    
    /* Active states for touch devices */
    .video-item:active,
    .story-card:active,
    .program-card:active,
    .impact-card:active {
        transform: scale(0.98);
    }
}

/* === LANDSCAPE MOBILE OPTIMIZATION === */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 4rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: auto;
        max-width: none;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    /* === LANDSCAPE MOBILE MENU POSITIONING === */
    .nav-toggle {
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

/* === TABLET OPTIMIZATION === */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .donation-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* === LARGE SCREEN OPTIMIZATION === */
@media (min-width: 1025px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .donation-methods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .nav-toggle,
    .hero-actions,
    .btn,
    .video-item::after,
    .video-item::before {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .video-item,
    .story-card,
    .program-card,
    .impact-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* === CORE PROGRAMS SECTION === */
.core-programs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.core-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f8f9fa" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.program-card.reverse {
    flex-direction: column-reverse;
}

.program-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--gradient-primary);
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.program-features li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.program-features li i {
    color: var(--accent);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.program-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* === CORE PROGRAMS RESPONSIVENESS === */

/* === GALLERY PAGE STYLING === */
.gallery-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gallery-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gallery-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.gallery-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-page .hero .section-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.gallery-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.gallery-page .hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.gallery-page .hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-page .hero-stat .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Gallery Navigation */
.gallery-navigation {
    background: var(--white);
    padding: 2rem 0;
    position: sticky;
    top: 65px;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.gallery-filter:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.gallery-filter.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.gallery-filter i {
    font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    padding: 4rem 0;
    background: var(--bg-light);
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-tag {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Showcase Section */
.video-showcase {
    background: var(--white);
    padding: 6rem 0;
}

.video-showcase .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.showcase-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.video-caption {
    padding: 2rem;
    text-align: center;
}

.video-caption h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.video-caption p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Impact Stories Section */
.impact-stories {
    background: var(--bg-light);
    padding: 6rem 0;
}

.impact-stories .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-impact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.impact-stat {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-info {
    color: var(--white);
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Gallery Loading Animation */
.gallery-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery Masonry Layout (Optional) */
.gallery-masonry {
    column-count: 3;
    column-gap: 2rem;
    margin-top: 2rem;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}

/* Gallery Grid Animations */
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Filter Animations */
.gallery-filter {
    animation: slideInDown 0.5s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.gallery-filter:nth-child(1) { animation-delay: 0.1s; }
.gallery-filter:nth-child(2) { animation-delay: 0.2s; }
.gallery-filter:nth-child(3) { animation-delay: 0.3s; }
.gallery-filter:nth-child(4) { animation-delay: 0.4s; }
.gallery-filter:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === PROGRAMS PAGE STYLING === */
.programs-page .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.programs-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.programs-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.programs-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.programs-page .hero .section-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.programs-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.programs-page .hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.programs-page .hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.programs-page .hero-stat .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Programs Overview Section */
.programs-overview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.programs-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f8f9fa" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.programs-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
}

.overview-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Program Category Sections */
.program-category-section {
    padding: 6rem 0;
    background: var(--white);
}

.program-category-section:nth-child(even) {
    background: var(--bg-light);
}

.program-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-category-grid.reverse {
    direction: rtl;
}

.program-category-grid.reverse > * {
    direction: ltr;
}

.program-category-content {
    padding: 2rem 0;
}

.program-category-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.program-category-content h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-category-content .section-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Program Features */
.program-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Program Stats */
.program-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Program Category Images */
.program-category-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Impact Showcase Section */
.impact-showcase-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--white);
    position: relative;
}

.impact-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.impact-showcase-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.impact-showcase-section h2 {
    color: var(--white);
}

.impact-showcase-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.impact-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.impact-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.impact-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.impact-visual {
    position: relative;
}

.impact-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.impact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Get Involved Section */
.get-involved-section {
    padding: 6rem 0;
    background: var(--white);
}

.get-involved-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.involvement-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
}

.involvement-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.involvement-card .btn {
    width: 100%;
    justify-content: center;
}

/* Programs Page Responsive Design */
@media (max-width: 768px) {
    .programs-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-page .hero .section-intro {
        font-size: 1.1rem;
    }
    
    .programs-page .hero-stats {
        gap: 1.5rem;
    }
    
    .programs-page .hero-stat {
        padding: 1rem 1.5rem;
    }
    
    .programs-page .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .programs-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-category-grid.reverse {
        direction: ltr;
    }
    
    .program-category-content h2 {
        font-size: 2rem;
    }
    
    .program-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .impact-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .programs-page .hero h1 {
        font-size: 2rem;
    }
    
    .programs-page .hero .section-intro {
        font-size: 1rem;
    }
    
    .programs-page .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .programs-page .hero-stat {
        width: 100%;
        max-width: 250px;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .involvement-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Programs Page Animations */
.program-category-section {
    animation: fadeInUp 0.8s ease-out;
}

.overview-card {
    animation: fadeInUp 0.6s ease-out;
}

.overview-card:nth-child(1) { animation-delay: 0.1s; }
.overview-card:nth-child(2) { animation-delay: 0.2s; }
.overview-card:nth-child(3) { animation-delay: 0.3s; }
.overview-card:nth-child(4) { animation-delay: 0.4s; }

.feature-item {
    animation: slideInLeft 0.5s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.impact-hero .hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 3;
}

/* === IMPACT HERO RESPONSIVE === */
@media (max-width: 768px) {
    .impact-hero {
        padding: 4rem 0 2rem;
        min-height: 80vh;
    }
    
    .impact-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .impact-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .impact-hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impact-hero .hero-stats-bar {
        position: relative;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .impact-hero .hero-title {
        font-size: 2rem;
    }
    
    .impact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .impact-hero .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Additional Responsive Breakpoints */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-badge,
    .section-badge,
    .btn {
        border-width: 1px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .hero-actions,
    .cta-actions,
    .footer {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Light Theme - Always Active */
:root {
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --section-bg: #ffffff;
    --card-bg: #ffffff;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
}

.card,
.impact-card,
.program-card,
.story-card,
.value-card {
    background: var(--white);
    border-color: var(--border-light);
}

/* Ensure all sections have light backgrounds */
.mission-section,
.impact-overview-section,
.core-programs-section,
.success-stories-section,
.video-showcase-section,
.why-support-section,
.donation-methods-section,
.impact-cta-section {
    background: var(--section-bg);
    color: var(--text-dark);
}

/* Ensure all cards have light backgrounds */
.impact-card,
.program-card,
.story-card,
.value-card,
.donation-method-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

/* Ensure proper text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

p, span, li {
    color: var(--text-dark);
}

/* Footer light background */
.footer {
    background: var(--bg-medium);
    color: var(--text-dark);
}

.footer-section {
    background: transparent;
}

/* === PROFESSIONAL DONATION SECTION === */
.donation-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="donation-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23donation-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.donation-section .container {
    position: relative;
    z-index: 2;
}

.donation-section .section-header.text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.donation-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Donation Highlight Stats */
.donation-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.donation-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="highlight-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23highlight-pattern)"/></svg>');
}

.donation-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.impact-stat {
    text-align: center;
    color: var(--white);
}

.impact-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-stat .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Donation Methods Grid */
.donation-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.donation-method-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donation-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.donation-method-card:hover::before {
    transform: scaleX(1);
}

.donation-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.donation-method-card.featured {
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.donation-method-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Method Header */
.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0;
}

.method-icon.paypal {
    background: linear-gradient(135deg, #0070ba 0%, #1546a0 100%);
}

.method-icon.mobile-money {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.method-icon.western-union {
    background: linear-gradient(135deg, #00a0e9 0%, #0077c0 100%);
}

.method-icon.remittance {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.method-badge {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Method Content */
.donation-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.donation-method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Method Features */
.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Method Details */
.method-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.detail-item i {
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Method Instructions */
.method-instructions {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 1.5rem;
}

.method-instructions p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.method-instructions i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Buttons */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Donation CTA */
.donation-cta {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.donation-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.donation-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-section {
        padding: 4rem 0;
    }
    
    .donation-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .donation-highlight {
        padding: 2rem 1rem;
    }
    
    .donation-impact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .donation-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-method-card {
        padding: 1.5rem;
    }
    
    .method-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .method-features {
        justify-content: center;
    }
}

/* Performance Optimizations */
.hero-video video {
    will-change: transform;
}

.impact-card,
.program-card,
.story-card,
.value-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* Enhanced Touch Targets for Mobile */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-toggle {
        padding: 0.75rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-toggle .bar {
        width: 28px;
        height: 4px;
        background: var(--white);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    /* Ensure mobile menu is properly styled */
    .nav-menu {
        background: var(--primary-green);
        box-shadow: var(--shadow-heavy);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
        text-transform: none;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Make sure nav-toggle is always visible on mobile */
    .navbar .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure mobile menu is completely hidden by default */
.nav-menu:not(.active) {
    transform: translateX(-100%);
    left: -100%;
    opacity: 0;
    visibility: hidden;
}

/* Additional mobile menu fixes */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        right: auto !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: var(--primary-green) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 2rem !important;
        transition: 0.3s ease-in-out !important;
        box-shadow: var(--shadow-heavy) !important;
        z-index: 1000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-100%) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-menu.active {
        left: 0 !important;
        right: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Ensure no conflicting positioning */
.nav-menu:not(.active) {
    left: -100% !important;
    right: auto !important;
    transform: translateX(-100%) !important;
}

/* Reset any conflicting mobile menu styles */
@media (max-width: 768px) {
    .nav-menu {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
        box-sizing: border-box !important;
    }
    
    .nav-menu * {
        box-sizing: border-box !important;
    }
}

            /* Force mobile menu positioning - highest priority */
            @media (max-width: 768px) {
                .navbar .nav-menu {
                    position: fixed !important;
                    top: 65px !important;
                    left: -100% !important;
                    right: auto !important;
                    width: 100vw !important;
                    max-width: 100vw !important;
                    height: calc(100vh - 65px) !important;
                    background: var(--primary-green) !important;
                    z-index: 9999 !important;
                    transform: translateX(-100%) !important;
                    transition: transform 0.3s ease-in-out !important;
                    overflow: hidden !important;
                    box-sizing: border-box !important;
                }
    
                .navbar .nav-menu.active {
                    left: 0 !important;
                    right: auto !important;
                    transform: translateX(0) !important;
                }
            }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        padding-top: 1rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 1.5rem;
        margin: 0.25rem 0;
    }
}

/* Ultra-Wide Screen Support */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .impact-grid,
    .stories-grid,
    .values-grid {
        gap: 3rem;
    }
}

/* === FINAL MOBILE OVERFLOW PREVENTION === */
@media (max-width: 768px) {
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    html, body, .navbar, .nav-container, .nav-menu, .hero, .hero-content, .container {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .nav-toggle {
        max-width: 44px !important;
        width: 44px !important;
        overflow: hidden !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .video-background, .video-background video {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Ensure mobile menu is properly constrained */
    .nav-menu {
        left: -100vw !important;
        width: 100vw !important;
        max-width: 100vw !important;
        right: 0 !important;
        overflow: hidden !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    
    /* Force all elements to respect viewport width */
    .navbar, .nav-container, .nav-toggle, .nav-menu, .hero, .hero-content, .container, .video-background {
        max-width: 100vw !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Prevent any horizontal scrolling */
    body {
        position: relative !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
}

/* === ENHANCED COUNTING ANIMATION STYLES === */
.stat-number, .impact-number {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.stat-number:hover, .impact-number:hover {
    transform: scale(1.05);
    color: var(--accent-gold);
}

/* Animation for counting numbers */
@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-number.animating, .impact-number.animating {
    animation: countPulse 0.3s ease;
}

/* Enhanced hero stats styling */
.hero-stats .hero-stat {
    transition: all 0.3s ease;
}

.hero-stats .hero-stat:hover {
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* === UNIVERSAL MOBILE MENU POSITIONING - ENSURES CONSISTENCY ACROSS ALL PAGES === */
@media (max-width: 768px) {
    /* Force consistent mobile menu positioning on all pages */
    .navbar .nav-container {
        position: relative !important;
    }
    
    .navbar .nav-toggle {
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        z-index: 1001 !important;
    }
    
    /* Ensure nav-container provides positioning context */
    .navbar .nav-container {
        position: relative !important;
        overflow: visible !important;
    }
}
