/* ===== style.css ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
}

:root {
    --tomato: #f45b4b;
    --lime: #b5d93b;
    --teal: #1b98a0;
    --light-teal: #e0f0f2;
    --orange: #f9a31c;
    --deep-teal: #0f6b73;
    --dark-cyan: #0e4b55;
    --light-bg: #f4f7fa;
    --white: #ffffff;
    --dark-text: #1f2937;
    --gray: #55657b;
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background: var(--white); color: var(--dark-text); line-height: 1.5; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: var(--tomato);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.2); background: var(--tomato); padding: 5px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-image { height: 60px; width: auto; border-radius: 8px; border: 2px solid rgba(255,255,255,0.3); transition: transform 0.3s ease; }
.logo-image:hover { transform: scale(1.05); border-color: var(--lime); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-csck { font-weight: 800; font-size: 1.8rem; color: var(--white); letter-spacing: -0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.logo-full { font-weight: 500; font-size: 1rem; color: var(--white); opacity: 0.9; }

.nav-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.dropdown { position: relative; display: inline-block; }
.nav-link {
    text-decoration: none; color: var(--white); font-weight: 600; font-size: 0.98rem;
    padding: 10px 15px; border-radius: 30px; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 5px; position: relative; overflow: hidden;
    background: transparent;
}
.nav-link::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--teal); transition: left 0.3s ease; z-index: -1; border-radius: 30px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::before { left: 0; }
.nav-link.active { background: var(--teal); color: var(--white); font-weight: 700; }

.dropdown-arrow { font-size: 0.8rem; transition: transform 0.3s ease; color: var(--lime); }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); color: var(--white); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--teal); border-radius: 20px; padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1); z-index: 1000;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(5px); }

.dropdown-item {
    display: block; padding: 12px 20px; color: var(--white); text-decoration: none;
    font-size: 0.95rem; font-weight: 500; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.dropdown-item::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--orange); transition: left 0.3s ease; z-index: -1;
}
.dropdown-item:hover { color: var(--white); padding-left: 30px; }
.dropdown-item:hover::before { left: 0; }
.dropdown-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }

.donate-btn-nav {
    background: var(--teal) !important; color: var(--white) !important;
    padding: 10px 28px !important; border-radius: 60px !important;
    font-weight: 700 !important; box-shadow: 0 8px 18px -8px rgba(0,0,0,0.3) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}
.donate-btn-nav:hover { background: var(--orange) !important; transform: translateY(-2px) scale(1.05); }

.menu-toggle { display: none; background: transparent; border: 2px solid rgba(255,255,255,0.3); font-size: 28px; padding: 8px 20px; border-radius: 50px; color: var(--white); cursor: pointer; }
.menu-toggle:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

@media (max-width: 768px) {
    .nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 5px; padding: 20px 0; max-height: 80vh; overflow-y: auto; background: var(--tomato); }
    .nav-links.show { display: flex; animation: slideDown 0.3s ease; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    .menu-toggle { display: block; }
    .dropdown { width: 100%; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; margin-left: 20px; margin-top: 5px; width: calc(100% - 20px); box-shadow: none; background: var(--teal); }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-toggle { width: 100%; justify-content: space-between; }
    .nav-link { width: 100%; justify-content: center; }
    .logo-image { height: 50px; }
    .logo-csck { font-size: 1.4rem; }
    .logo-full { font-size: 0.8rem; }
}

/* ===== HERO SECTION ===== */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1594708767771-a7502209ff51?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    isolation: isolate;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 91, 75, 0.85) 0%, rgba(27, 152, 160, 0.85) 100%);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px;
}
.about-hero-badge {
    background: var(--lime);
    color: #1e4a52;
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.about-hero h1 .highlight {
    color: var(--lime);
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 0 12px;
    border-radius: 12px;
}
.about-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.6;
}
.creative-learn-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 36px 12px 24px;
    background: transparent;
    border: 2px solid white;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.creative-learn-more .circle {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.creative-learn-more .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: transparent;
    border-top: 2px solid var(--tomato);
    border-right: 2px solid var(--tomato);
    transform: translate(-50%, -50%) rotate(45deg);
}
.creative-learn-more .button-text { position: relative; z-index: 2; }
.creative-learn-more::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: white; transition: left 0.3s ease; z-index: 1;
}
.creative-learn-more:hover { color: var(--tomato); border-color: white; }
.creative-learn-more:hover::before { left: 0; }
.creative-learn-more:hover .circle { background: var(--tomato); transform: scale(1.2); }
.creative-learn-more:hover .icon { border-top-color: white; border-right-color: white; }

/* ===== ABOUT PAGE ===== */
.about-page { background: var(--white); }
.about-section { background: var(--tomato); color: white; padding: 100px 0; }
.about-title { color: white !important; font-size: 3rem !important; margin-bottom: 30px !important; -background-clip: unset !important; background: none !important; color: white !important; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.7; color: white; }

.about-content { position: relative; }
.about-preview { margin-bottom: 15px; font-size: 1.1rem; line-height: 1.7; color: white; }
.about-full-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; color: white; }
.about-full-content.show { max-height: 1000px; transition: max-height 0.5s ease-in; }
.about-full-content p { margin-bottom: 15px; font-size: 1.1rem; line-height: 1.7; color: white; }

.read-more-btn {
    background: transparent; border: 2px solid white; color: white;
    padding: 10px 25px; border-radius: 50px; font-size: 1rem; font-weight: 600;
    cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    margin-top: 15px; transition: all 0.3s ease;
}
.read-more-btn:hover { background: white; color: var(--tomato); transform: translateY(-2px); }
.read-more-btn i { transition: transform 0.3s ease; }
.read-more-btn.active i { transform: rotate(180deg); }

.about-collage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; aspect-ratio: 1/1; }
.collage-item {
    background-size: cover; background-position: center; border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.4); transition: transform 0.3s ease;
    border: 3px solid rgba(255,255,255,0.3);
}
.collage-item:hover { transform: scale(1.02); }

/* ===== VISION & MISSION ===== */
.vision-mission { padding: 100px 0; background: var(--light-bg); }
.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.vm-card { padding: 50px 40px; border-radius: 40px; text-align: center; transition: all 0.3s ease; box-shadow: var(--shadow-lg); }
.vm-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3); }
.vision-card { background: var(--lime); }
.mission-card { background: var(--orange); }
.vm-icon { font-size: 4rem; margin-bottom: 25px; color: white; text-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.vm-card h3 { font-size: 2.2rem; margin-bottom: 20px; color: white; font-weight: 700; }
.vm-card p { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.95); }

/* ===== CORE VALUES ===== */
.core-values { padding: 100px 0; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
.value-card {
    padding: 40px 30px; border-radius: 30px; text-align: center; color: white;
    box-shadow: var(--shadow-lg); transition: all 0.3s ease; min-height: 280px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 30px 50px -15px rgba(0,0,0,0.3); }
.value-icon { font-size: 3.5rem; margin-bottom: 20px; color: white; }
.value-card h4 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; color: white; }
.value-card p { font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.95); max-width: 250px; }

/* ===== OUR TEAM ===== */
.our-team { padding: 100px 0; background: linear-gradient(145deg, #f8fafc, #ffffff); position: relative; overflow: hidden; }
.our-team::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: var(--tomato); opacity: 0.03; border-radius: 50%; pointer-events: none; }
.our-team::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 300px; height: 300px; background: var(--teal); opacity: 0.03; border-radius: 50%; pointer-events: none; }
.our-team .section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.our-team .section-subtitle { display: inline-block; background: rgba(244, 91, 75, 0.1); color: var(--tomato); font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; padding: 8px 20px; border-radius: 50px; margin-bottom: 15px; text-transform: uppercase; }
.our-team .section-title { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--dark-text); }
.our-team .title-highlight { color: var(--tomato); position: relative; display: inline-block; }
.our-team .title-highlight::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background: var(--lime); opacity: 0.3; z-index: -1; }
.our-team .section-description { font-size: 1.1rem; color: var(--gray); line-height: 1.7; }

.team-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.team-filter .filter-btn { background: transparent; border: 2px solid var(--teal); color: var(--teal); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.team-filter .filter-btn:hover, .team-filter .filter-btn.active { background: var(--teal); color: white; transform: translateY(-3px); box-shadow: 0 10px 20px -5px rgba(27, 152, 160, 0.3); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 60px; }
.team-card { perspective: 1500px; height: 450px; cursor: pointer; }
.card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.team-card:hover .card-inner { transform: rotateY(180deg); }
.card-front, .card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 35px -10px rgba(0,0,0,0.15); }
.card-front { background: white; display: flex; flex-direction: column; }
.card-back { background: linear-gradient(145deg, var(--teal), var(--deep-teal)); color: white; transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; padding: 30px; }

.member-image { position: relative; height: 250px; overflow: hidden; }
.member-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .member-image img { transform: scale(1.05); }
.image-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(244, 91, 75, 0.9), transparent); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; }
.team-card:hover .image-overlay { opacity: 1; }
.social-links-team { display: flex; gap: 12px; }
.social-links-team a { width: 40px; height: 40px; background: white; color: var(--tomato); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; transform: translateY(20px); opacity: 0; }
.team-card:hover .social-links-team a { transform: translateY(0); opacity: 1; }
.social-links-team a:nth-child(1) { transition-delay: 0.1s; }
.social-links-team a:nth-child(2) { transition-delay: 0.2s; }
.social-links-team a:nth-child(3) { transition-delay: 0.3s; }
.social-links-team a:hover { background: var(--orange); color: white; transform: translateY(-3px) !important; }

.member-info { padding: 20px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.member-name { font-size: 1.4rem; font-weight: 700; color: var(--dark-text); margin-bottom: 5px; }
.member-position { color: var(--teal); font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }
.member-badge { display: inline-block; background: var(--lime); color: var(--deep-teal); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; align-self: center; }
.member-bio-preview { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }

.back-content { text-align: center; }
.back-content h4 { font-size: 1.5rem; margin-bottom: 5px; color: white; }
.back-position { color: var(--lime); font-weight: 600; font-size: 1rem; margin-bottom: 20px; }
.back-bio { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; opacity: 0.9; }
.back-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 25px; font-size: 0.9rem; }
.back-details span { display: flex; align-items: center; justify-content: center; gap: 8px; }
.back-details i { color: var(--lime); }
.back-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.back-cta:hover { background: var(--tomato); transform: translateY(-3px); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.2); }

.team-cta { background: linear-gradient(135deg, var(--tomato), #f4796b); border-radius: 60px; padding: 50px; text-align: center; color: white; box-shadow: 0 20px 40px -10px rgba(244, 91, 75, 0.3); }
.team-cta h3 { font-size: 2.2rem; margin-bottom: 15px; }
.team-cta p { font-size: 1.2rem; margin-bottom: 25px; opacity: 0.9; }
.team-join-btn { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--tomato); padding: 16px 40px; border-radius: 60px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid transparent; }
.team-join-btn:hover { background: transparent; color: white; border-color: white; transform: translateY(-3px); box-shadow: 0 15px 30px -5px rgba(0,0,0,0.2); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.team-card { animation: fadeIn 0.5s ease; }

@media (max-width: 992px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .our-team { padding: 70px 0; }
    .our-team .section-title { font-size: 2.2rem; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .team-card { height: 420px; }
    .team-filter { flex-direction: column; align-items: stretch; padding: 0 20px; }
    .team-filter .filter-btn { width: 100%; text-align: center; }
    .team-cta { padding: 40px 20px; border-radius: 40px; }
    .team-cta h3 { font-size: 1.8rem; }
    .team-cta p { font-size: 1rem; }
    .team-join-btn { padding: 14px 30px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .our-team .section-title { font-size: 1.8rem; }
    .team-card { height: 400px; }
    .member-name { font-size: 1.2rem; }
    .back-content h4 { font-size: 1.3rem; }
    .back-bio { font-size: 0.85rem; }
}

/* ===== CTA SECTION ===== */
.cta-section { background: var(--lime); padding: 80px 0; text-align: center; }
.cta-content h2 { font-size: 2.8rem; color: var(--deep-teal); margin-bottom: 15px; font-weight: 700; }
.cta-content p { font-size: 1.5rem; color: var(--dark-text); margin-bottom: 40px; font-weight: 500; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-btn { background: var(--orange); color: white; padding: 16px 40px; font-size: 1.2rem; border-radius: 60px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; animation: pulse 2s infinite; }
.cta-btn-secondary { background: var(--teal); color: white; padding: 16px 40px; font-size: 1.2rem; border-radius: 60px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; border: 2px solid rgba(255,255,255,0.3); }
.cta-btn-secondary:hover { background: var(--deep-teal); transform: scale(1.05); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(249, 163, 28, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(249, 163, 28, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 163, 28, 0); } }

/* ===== PROGRAMS PAGE ===== */
.programs-page { background: var(--light-teal); padding: 40px 0; }
.program-detail-section { padding: 60px 0; border-bottom: 1px solid rgba(27,152,160,0.2); }
.program-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.program-detail-grid.reverse { direction: rtl; }
.program-detail-grid.reverse .program-detail-content { direction: ltr; }
.program-detail-image { height: 400px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); }
.program-detail-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-detail-image:hover img { transform: scale(1.05); }
.program-detail-title { font-size: 2.5rem; margin-bottom: 20px; display: flex; align-items: center; }
.program-detail-preview p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 15px; }
.program-detail-full { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.program-detail-full.show { max-height: 2000px; transition: max-height 0.5s ease-in; }
.program-detail-full p, .program-detail-full ul { margin-bottom: 15px; font-size: 1rem; line-height: 1.6; }
.program-read-more { background: transparent; border: 2px solid var(--teal); color: var(--teal); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin: 15px 0; transition: all 0.3s ease; }
.program-read-more:hover { background: var(--teal); color: white; }
.program-cta-btn { display: inline-block; padding: 12px 30px; border-radius: 50px; color: white; text-decoration: none; font-weight: 600; margin-left: 15px; transition: all 0.3s ease; }
.program-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.impact-stat-small { background: rgba(255,255,255,0.2); padding: 10px 15px; border-radius: 50px; display: inline-block; margin: 10px 0; }

/* ===== IMPACT ===== */
.impact { padding: 80px 0; background: linear-gradient(145deg, var(--deep-teal), #0a4a52); color: white; }
.section-title { font-size: 2.6rem; font-weight: 700; margin-bottom: 18px; text-align: center; }
.counter-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; background: rgba(255,255,255,0.1); padding: 60px 30px; border-radius: 70px; backdrop-filter: blur(5px); }
.counter-box { flex: 1 1 180px; text-align: center; transition: transform 0.3s ease; }
.counter-box:hover { transform: translateY(-10px); }
.counter-icon { font-size: 2.4rem; color: var(--orange); margin-bottom: 10px; }
.counter-num { font-size: 4rem; font-weight: 800; color: var(--lime); line-height: 1; }
.counter-label { color: white; font-weight: 700; font-size: 1.2rem; }

/* ===== PARTNERS ===== */
.partners { padding: 70px 0; background: white; }
.partner-category { margin-top: 50px; }
.featured-border { border: 2px solid var(--teal); border-radius: 50px; padding: 40px; margin-bottom: 40px; background: linear-gradient(145deg, #eef2f6, white); }
.category-title { font-size: 1.8rem; color: var(--deep-teal); border-left: 8px solid var(--orange); padding-left: 20px; margin-bottom: 30px; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.partner-card { position: relative; background: white; border-radius: 28px; padding: 25px 16px; text-align: center; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: 0.25s; border: 1px solid #e0e0e0; }
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.partner-logo { width: 100px; height: 100px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; }
.partner-logo img { max-width: 100%; max-height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--lime); }
.partner-name { font-weight: 700; color: var(--dark-text); margin-bottom: 5px; font-size: 1.1rem; }
.partner-type { font-size: 0.8rem; color: var(--teal); margin-bottom: 10px; background: rgba(27,152,160,0.1); padding: 4px 10px; border-radius: 50px; display: inline-block; }
.partner-description-preview { font-size: 0.9rem; color: var(--gray); padding: 0 10px; margin-bottom: 10px; line-height: 1.5; }
.partner-description-full { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--light-bg); border-radius: 20px; padding: 0 15px; margin: 10px 0; text-align: left; }
.partner-description-full.show { max-height: 300px; padding: 15px; transition: max-height 0.3s ease-in; }
.partner-description-full p { font-size: 0.9rem; color: var(--dark-text); margin-bottom: 10px; line-height: 1.5; }
.partner-read-more { background: transparent; border: 1px solid var(--orange); color: var(--orange); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; cursor: pointer; margin: 10px 0; transition: all 0.3s ease; }
.partner-read-more:hover { background: var(--orange); color: white; }
.partner-website-btn { display: inline-block; margin-top: 10px; padding: 8px 20px; background: var(--teal); color: white; text-decoration: none; border-radius: 50px; font-size: 0.9rem; transition: all 0.3s ease; }
.partner-website-btn:hover { background: var(--deep-teal); transform: translateY(-2px); }

/* Partner CTA Button */
.partner-cta-container { margin: 60px 0 20px; display: flex; justify-content: center; }
.partner-cta-card { background: linear-gradient(145deg, var(--teal), var(--deep-teal)); border-radius: 60px; padding: 40px 60px; text-align: center; color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.2); position: relative; overflow: hidden; max-width: 700px; width: 100%; border: 2px solid rgba(255,255,255,0.1); }
.cta-icon-group { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.cta-icon-group i { font-size: 2.5rem; background: rgba(255,255,255,0.2); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.partner-cta-button { display: inline-flex; align-items: center; gap: 15px; background: var(--orange); color: white; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.2rem; position: relative; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.2); animation: cta-pulse 2s infinite; }
.partner-cta-button:hover { transform: translateY(-3px); background: #e48c14; }
@keyframes cta-pulse { 0% { box-shadow: 0 0 0 0 rgba(249, 163, 28, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(249, 163, 28, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 163, 28, 0); } }

/* ===== GALLERY ===== */
.gallery { padding: 70px 0; background: linear-gradient(145deg, var(--light-teal), #d0eef2); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; justify-content: center; }
.filter-btn { background: white; border: 1px solid #ccc; padding: 10px 24px; border-radius: 60px; cursor: pointer; transition: 0.2s; font-weight: 500; }
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-item { height: 250px; border-radius: 28px; background-size: cover; background-position: center; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item::after { content: attr(data-caption); position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; padding: 40px 15px 15px; font-size: 0.9rem; transform: translateY(100%); transition: transform 0.3s ease; text-align: center; font-weight: 500; }
.gallery-item:hover::after { transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80%; border-radius: 20px; border: 3px solid white; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.close-lightbox { position: absolute; top: 30px; right: 50px; color: white; font-size: 3rem; cursor: pointer; transition: transform 0.3s ease; }
.close-lightbox:hover { transform: scale(1.2); color: var(--orange); }

/* ===== EVENTS SECTION ===== */
.events-section { padding: 70px 0; background: linear-gradient(145deg, var(--light-bg), white); }
.event-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 40px; }
.event-filter-btn { background: white; border: 1px solid var(--teal); color: var(--teal); padding: 8px 20px; border-radius: 50px; cursor: pointer; font-weight: 500; transition: all 0.3s ease; }
.event-filter-btn.active, .event-filter-btn:hover { background: var(--teal); color: white; }

.hero-countdown { background: linear-gradient(145deg, var(--deep-teal), #0a4a52); border-radius: 60px; padding: 40px; text-align: center; color: white; margin-bottom: 50px; box-shadow: var(--shadow-lg); }
.hero-countdown h3 { font-size: 2rem; margin-bottom: 20px; color: var(--lime); }
.countdown-timer { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.countdown-unit { background: rgba(255,255,255,0.15); padding: 20px; border-radius: 20px; min-width: 120px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); }
.countdown-unit .days, .countdown-unit .hours, .countdown-unit .minutes, .countdown-unit .seconds { font-size: 3rem; font-weight: 800; color: var(--lime); display: block; line-height: 1; }
.countdown-unit .unit-label { font-size: 1rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.event-status { margin-top: 20px; font-size: 1.2rem; font-weight: 600; padding: 10px 20px; background: rgba(255,255,255,0.15); border-radius: 50px; display: inline-block; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; }
.event-card { background: white; border-radius: 40px; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); border: 2px solid var(--teal); }
.event-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.event-card img { width: 100%; height: 200px; object-fit: cover; }
.event-details { padding: 25px; }
.event-details h3 { color: var(--tomato); font-size: 1.5rem; margin-bottom: 15px; }
.event-meta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; color: var(--gray); font-size: 0.95rem; }
.event-meta i { color: var(--orange); width: 20px; }
.event-description { color: var(--dark-text); margin-bottom: 20px; line-height: 1.6; }
.event-countdown-box { background: var(--light-teal); padding: 15px; border-radius: 30px; text-align: center; margin: 15px 0; }
.event-countdown-box .countdown-label { font-size: 0.9rem; color: var(--teal); margin-bottom: 5px; }
.event-countdown-box .countdown-display { font-size: 1.5rem; font-weight: 700; color: var(--deep-teal); }
.progress-container { margin: 15px 0; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--teal); margin-bottom: 5px; }
.progress-bar-bg { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.progress-fill-event { height: 100%; background: var(--lime); border-radius: 4px; transition: width 0.3s ease; }
.event-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.register-btn { background: var(--orange); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; flex: 1; text-align: center; transition: all 0.3s ease; }
.register-btn:hover { background: var(--tomato); transform: translateY(-2px); }
.add-calendar-btn { background: var(--teal); color: white; padding: 10px 15px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; position: relative; }
.add-calendar-btn:hover { background: var(--deep-teal); transform: translateY(-2px); }
.calendar-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 10px; z-index: 100; min-width: 150px; }
.add-calendar-btn:hover .calendar-dropdown { display: block; }
.calendar-dropdown a { display: block; padding: 8px 15px; color: var(--dark-text); text-decoration: none; border-radius: 10px; transition: background 0.3s ease; }
.calendar-dropdown a:hover { background: var(--light-teal); color: var(--teal); }

/* ===== PAST EVENTS GALLERY ===== */
.past-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; }
.past-event-item { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e0e0e0; }
.past-event-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.past-event-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.past-event-item:hover img { transform: scale(1.05); }
.past-event-item p { padding: 15px; font-size: 0.95rem; color: var(--dark-text); line-height: 1.5; margin: 0; background: white; }

/* ===== BLOG PAGE ===== */
.blog-page { background: linear-gradient(145deg, var(--light-bg), white); }
.blog-banner { background: linear-gradient(135deg, var(--deep-teal), var(--teal)); color: white; padding: 80px 0; text-align: center; margin-bottom: 50px; }
.blog-banner h1 { font-size: 3.5rem; margin-bottom: 15px; }
.blog-banner p { font-size: 1.3rem; opacity: 0.9; }

/* Testimonials Slider */
.testimonials-section { padding: 50px 0; }
.testimonials-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 30px; padding: 20px 0 40px; scrollbar-width: none; -ms-overflow-style: none; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-slide { min-width: 100%; scroll-snap-align: start; }
.testimonial-card { background: linear-gradient(145deg, var(--teal), var(--deep-teal)); border-radius: 60px; padding: 50px; color: white; text-align: center; position: relative; box-shadow: var(--shadow-lg); border: 3px solid var(--lime); }
.testimonial-quote-icon { position: absolute; top: 20px; left: 30px; font-size: 4rem; color: var(--lime); opacity: 0.3; }
.testimonial-card p { font-size: 1.3rem; line-height: 1.8; margin: 30px 0 20px; font-style: italic; }
.testimonial-card h4 { color: var(--orange); font-size: 1.5rem; margin-bottom: 5px; }
.testimonial-role { color: var(--lime); font-size: 1rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.slider-prev, .slider-next { background: var(--teal); color: white; width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer; transition: all 0.3s ease; }
.slider-prev:hover, .slider-next:hover { background: var(--orange); transform: scale(1.1); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s ease; }
.slider-dot.active { background: var(--teal); transform: scale(1.3); }

/* News & Updates */
.news-updates { padding: 50px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.blog-card { background: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; border: 2px solid transparent; }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.blog-img { height: 200px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 25px; }
.category-tag { background: var(--lime); color: var(--deep-teal); padding: 4px 12px; border-radius: 40px; font-size: 0.8rem; display: inline-block; margin-bottom: 10px; font-weight: 600; }
.blog-card h3 { color: var(--tomato); margin-bottom: 10px; font-size: 1.3rem; }
.blog-excerpt { color: var(--gray); margin-bottom: 15px; line-height: 1.6; }
.blog-meta { font-size: 0.85rem; color: var(--teal); margin-bottom: 15px; }
.blog-meta i { margin-right: 5px; }

/* Creative Read More Button */
.creative-read-more { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: transparent; border: 2px solid var(--teal); color: var(--teal); text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
.creative-read-more::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--teal); transition: left 0.3s ease; z-index: 0; }
.creative-read-more:hover { color: white; }
.creative-read-more:hover::before { left: 0; }
.creative-read-more i, .creative-read-more span { position: relative; z-index: 2; }
.creative-read-more:hover i { animation: arrowMove 0.5s ease infinite; }
@keyframes arrowMove { 0% { transform: translateX(0); } 50% { transform: translateX(5px); } 100% { transform: translateX(0); } }

.load-more-container { text-align: center; margin-top: 40px; }
.load-more-btn { background: var(--orange); color: white; border: none; padding: 15px 40px; border-radius: 60px; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.load-more-btn:hover { background: var(--tomato); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.load-more-btn i { transition: transform 0.5s ease; }
.load-more-btn.loading i { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== DONATE SECTION (UPDATED) ===== */
.donate-section { background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); padding: 80px 0; position: relative; overflow: hidden; }
.donate-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244, 91, 75, 0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.donate-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(27, 152, 160, 0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.donate-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }

.donate-impact { padding: 30px; background: linear-gradient(145deg, var(--white), #fefefe); border-radius: 40px; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1); }
.impact-badge { display: inline-block; background: rgba(244, 91, 75, 0.1); color: var(--tomato); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 25px; }
.donate-impact h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--dark-text); }
.donate-impact .highlight-text { color: var(--tomato); position: relative; display: inline-block; }
.donate-impact .highlight-text::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background: var(--lime); opacity: 0.3; z-index: -1; }
.impact-description { color: var(--gray); font-size: 1.1rem; line-height: 1.6; margin-bottom: 35px; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 35px; padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.impact-stat { text-align: center; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--teal); margin-bottom: 5px; }
.stat-label { font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.testimonial-mini { background: var(--light-bg); padding: 20px; border-radius: 20px; border-left: 4px solid var(--orange); }
.testimonial-mini i { color: var(--orange); font-size: 1.2rem; opacity: 0.6; margin-bottom: 10px; display: block; }
.testimonial-mini p { font-style: italic; color: var(--dark-text); margin-bottom: 10px; line-height: 1.5; }
.testimonial-mini span { font-size: 0.85rem; color: var(--teal); font-weight: 600; }

.donation-card { background: white; border-radius: 40px; padding: 35px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
.donation-card:hover { transform: translateY(-5px); }
.card-header { text-align: center; margin-bottom: 30px; }
.card-header h3 { font-size: 1.8rem; color: var(--teal); margin-bottom: 8px; }
.card-header p { color: var(--gray); font-size: 0.95rem; }

.donor-info { margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--dark-text); margin-bottom: 8px; }
.form-field label i { color: var(--teal); width: 20px; }
.form-field input, .form-field textarea { padding: 12px 15px; border: 1px solid #e0e0e0; border-radius: 12px; font-size: 0.95rem; transition: all 0.3s ease; font-family: inherit; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,152,160,0.1); }
.form-field textarea { resize: vertical; min-height: 80px; }

.amount-section { margin-bottom: 30px; }
.amount-section label { font-size: 0.85rem; font-weight: 600; color: var(--dark-text); margin-bottom: 12px; display: block; }
.amount-section label i { color: var(--orange); margin-right: 8px; }
.amount-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 15px; }
.amount-option { background: var(--light-bg); border: 1px solid #e0e0e0; padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; color: var(--dark-text); }
.amount-option:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }
.amount-option.active { background: var(--tomato); border-color: var(--tomato); color: white; box-shadow: 0 4px 12px rgba(244, 91, 75, 0.3); }
.custom-amount-btn { background: transparent; border: 1px dashed var(--teal); color: var(--teal); }
.custom-amount-field { margin-top: 12px; }
.custom-amount-field input { width: 100%; padding: 12px 15px; border: 1px solid var(--teal); border-radius: 12px; font-size: 1rem; }

.payment-methods-section { margin-bottom: 30px; }
.payment-methods-section label { font-size: 0.85rem; font-weight: 600; color: var(--dark-text); margin-bottom: 12px; display: block; }
.payment-methods-section label i { color: var(--orange); margin-right: 8px; }
.payment-tabs { display: flex; gap: 12px; margin-bottom: 20px; }
.payment-tab { flex: 1; padding: 12px; background: var(--light-bg); border: 1px solid #e0e0e0; border-radius: 12px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--dark-text); }
.payment-tab i { font-size: 1.1rem; }
.payment-tab.active { background: var(--teal); border-color: var(--teal); color: white; }
.payment-tab:hover:not(.active) { background: #e8f0f2; }

.payment-details { background: var(--light-bg); border-radius: 20px; padding: 20px; margin-top: 5px; }
.bank-info, .paybill-info { background: white; border-radius: 16px; padding: 20px; }
.bank-logo, .paybill-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #e0e0e0; }
.bank-logo i, .paybill-logo i { font-size: 2rem; color: var(--teal); }
.bank-logo span, .paybill-logo span { font-size: 1.2rem; font-weight: 700; color: var(--dark-text); }

.account-details, .paybill-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.account-box, .paybill-box { background: #f9f9f9; padding: 15px; border-radius: 12px; text-align: center; }
.account-label, .paybill-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 8px; }
.account-number, .paybill-number { font-size: 1.3rem; font-weight: 800; color: var(--teal); display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.copy-btn { background: transparent; border: none; cursor: pointer; color: var(--teal); font-size: 1rem; transition: all 0.2s; }
.copy-btn:hover { color: var(--tomato); transform: scale(1.1); }
.account-name, .business-name { font-size: 0.8rem; color: var(--gray); }
.instruction { font-size: 0.75rem; color: var(--orange); display: block; margin-top: 8px; }

.bank-instructions, .mpesa-steps { background: #fff9e6; padding: 15px; border-radius: 12px; display: flex; gap: 12px; align-items: flex-start; }
.bank-instructions i, .mpesa-steps i { color: var(--orange); font-size: 1.2rem; margin-top: 2px; }
.bank-instructions p, .mpesa-steps p { font-size: 0.85rem; color: var(--gray); margin: 0; }
.mpesa-steps { flex-direction: column; background: #f0f7f9; }
.mpesa-steps h4 { font-size: 0.9rem; color: var(--teal); margin-bottom: 10px; }
.mpesa-steps ol { margin-left: 20px; color: var(--dark-text); font-size: 0.85rem; line-height: 1.6; }
.mpesa-steps strong { color: var(--orange); }

.donation-footer { margin-top: 25px; }
.progress-container { background: var(--light-bg); border-radius: 16px; padding: 15px; margin-bottom: 20px; }
.progress-header { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 10px; color: var(--dark-text); }
.goal-amount { font-weight: 700; color: var(--teal); }
.progress-bar { height: 8px; background: #e0e0e0; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--tomato)); border-radius: 4px; transition: width 0.5s ease; }
.progress-message { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray); }
.progress-message i { color: var(--lime); }

.donate-now-btn { width: 100%; background: linear-gradient(135deg, var(--tomato), #f4796b); border: none; padding: 16px; border-radius: 50px; color: white; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.3s ease; margin-bottom: 15px; }
.donate-now-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(244, 91, 75, 0.4); gap: 18px; }
.donate-now-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.secure-badge { text-align: center; font-size: 0.8rem; color: var(--gray); }
.secure-badge i { color: var(--lime); margin-right: 5px; }

/* Payment Modal Styles */
#paymentModal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 10000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
#paymentModal[style*="visibility: visible"] { opacity: 1; visibility: visible; }
#paymentModal .modal-content { background: white; max-width: 500px; width: 90%; border-radius: 30px; padding: 30px; position: relative; max-height: 80vh; overflow-y: auto; transform: scale(0.9); transition: transform 0.3s ease; }
#paymentModal[style*="visibility: visible"] .modal-content { transform: scale(1); }
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: var(--light-bg); border-radius: 3px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
.modal-content::-webkit-scrollbar-thumb:hover { background: var(--tomato); }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: linear-gradient(145deg, var(--light-bg), white); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: white; border-radius: 50px; padding: 48px; box-shadow: var(--shadow-lg); border-left: 10px solid var(--tomato); border-right: 10px solid var(--teal); }
.contact-detail { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-detail i { width: 25px; }
.contact-detail a { text-decoration: none; color: var(--dark-text); }
.contact-detail a:hover { color: var(--orange); }
.social-links { display: flex; gap: 15px; margin: 25px 0; flex-wrap: wrap; }
.social-links a { background: var(--light-bg); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.5rem; transition: 0.2s; border: 1px solid #ddd; }
.social-links a:hover { background: var(--teal); color: white; transform: translateY(-5px); }
.contact-form { display: grid; gap: 20px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px 20px; border: 1px solid #dde5ed; border-radius: 50px; font-size: 1rem; background: #fcfcfc; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,152,160,0.2); outline: none; }
.form-group textarea { border-radius: 30px; resize: vertical; }
.btn-submit { background: var(--teal); color: white; border: none; padding: 16px 30px; border-radius: 60px; font-weight: 600; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--deep-teal); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.success-message { color: var(--lime); font-weight: 600; text-align: center; padding: 10px; background: rgba(181,217,59,0.1); border-radius: 50px; }
.map-embed { border-radius: 30px; overflow: hidden; margin-top: 20px; border: 3px solid var(--teal); }

/* ===== FOOTER ===== */
.footer { background: var(--deep-teal); color: rgba(255,255,255,0.8); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; align-items: start; }
.footer h5 { color: var(--lime); font-size: 1.2rem; margin-bottom: 15px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.2s; }
.footer a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 15px; font-size: 1.3rem; margin-top: 15px; flex-wrap: wrap; }
.footer-social a { color: white; opacity: 0.8; }
.footer-social a:hover { opacity: 1; color: var(--orange); }
.newsletter-input { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.newsletter-input input { flex: 1; padding: 12px; border-radius: 50px; border: none; min-width: 200px; }
.newsletter-input button { background: var(--orange); border: none; padding: 12px 24px; border-radius: 50px; color: white; font-weight: 600; cursor: pointer; transition: 0.3s; }
.newsletter-input button:hover { background: var(--tomato); transform: translateY(-2px); }
.copyright { text-align: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.9; display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; }

.creative-back-to-top { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--orange); color: white; border-radius: 50%; transition: all 0.3s ease; position: relative; margin-left: 10px; }
.creative-back-to-top:hover { background: var(--lime); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.creative-back-to-top i { font-size: 1.2rem; animation: bounceUp 1s ease infinite; }
@keyframes bounceUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.back-to-tooltip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: var(--dark-text); color: white; padding: 5px 10px; border-radius: 20px; font-size: 0.7rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; margin-bottom: 5px; }
.creative-back-to-top:hover .back-to-tooltip { opacity: 1; }

/* ===== STICKY DONATE BUTTON ===== */
.sticky-donate { position: fixed; bottom: 30px; right: 30px; z-index: 999; background: var(--orange); color: white; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 25px rgba(249,163,28,0.5); cursor: pointer; transition: 0.2s; border: 3px solid white; animation: gentle-pulse 2s infinite; }
.sticky-donate:hover { transform: scale(1.1); background: var(--tomato); }
.sticky-tooltip { position: absolute; right: 80px; background: var(--deep-teal); color: white; padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; white-space: nowrap; opacity: 0; transition: opacity 0.3s; pointer-events: none; border: 1px solid rgba(255,255,255,0.2); }
.sticky-donate:hover .sticky-tooltip { opacity: 1; }
@keyframes gentle-pulse { 0% { box-shadow: 0 0 0 0 rgba(249,163,28,0.5); } 70% { box-shadow: 0 0 0 15px rgba(249,163,28,0); } 100% { box-shadow: 0 0 0 0 rgba(249,163,28,0); } }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) { .donate-wrapper { grid-template-columns: 1fr; gap: 40px; } .impact-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero p { font-size: 1.1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .program-detail-grid { grid-template-columns: 1fr; }
    .program-detail-grid.reverse { direction: ltr; }
    .donate-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .sticky-donate { width: 60px; height: 60px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .countdown-unit { min-width: 80px; padding: 15px; }
    .countdown-unit .days, .countdown-unit .hours, .countdown-unit .minutes, .countdown-unit .seconds { font-size: 2rem; }
    .testimonial-card { padding: 30px; }
    .testimonial-card p { font-size: 1.1rem; }
    .blog-banner h1 { font-size: 2.5rem; }
    .blog-banner p { font-size: 1.1rem; }
    .event-actions { flex-direction: column; }
    .add-calendar-btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; gap: 15px; }
    .account-details, .paybill-details { grid-template-columns: 1fr; }
    .amount-buttons { justify-content: center; }
    .donate-impact h2 { font-size: 2rem; }
    .donation-card { padding: 25px; }
    .payment-tabs { flex-direction: column; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .about-hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .counter-num { font-size: 2.5rem; }
    .partner-cta-card { padding: 30px 20px; }
    .cta-icon-group i { width: 50px; height: 50px; font-size: 1.8rem; }
    .event-filters { flex-direction: column; }
    .event-filter-btn { width: 100%; }
    .countdown-timer { gap: 10px; }
    .countdown-unit { min-width: 60px; padding: 10px; }
    .countdown-unit .days, .countdown-unit .hours, .countdown-unit .minutes, .countdown-unit .seconds { font-size: 1.5rem; }
    .impact-stats { grid-template-columns: 1fr; gap: 15px; }
    .donate-impact { padding: 20px; }
    .donation-card { padding: 20px; }
    .amount-option { padding: 8px 16px; font-size: 0.85rem; }
    .account-number, .paybill-number { font-size: 1rem; flex-wrap: wrap; }
}
/* ===== REDESIGNED DONATE SECTION ===== */
.donate-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 91, 75, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.donate-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 152, 160, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.donate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.donate-impact {
    padding: 30px;
    background: linear-gradient(145deg, var(--white), #fefefe);
    border-radius: 40px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.impact-badge {
    display: inline-block;
    background: rgba(244, 91, 75, 0.1);
    color: var(--tomato);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.donate-impact h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.donate-impact .highlight-text {
    color: var(--tomato);
    position: relative;
    display: inline-block;
}

.donate-impact .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--lime);
    opacity: 0.3;
    z-index: -1;
}

.impact-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.testimonial-mini {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 20px;
    border-left: 4px solid var(--orange);
}

.testimonial-mini i {
    color: var(--orange);
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}

.testimonial-mini p {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-mini span {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
}

.donation-card {
    background: white;
    border-radius: 40px;
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.donor-info {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-field label i {
    color: var(--teal);
    width: 20px;
}

.form-field input,
.form-field textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(27,152,160,0.1);
}

.amount-section {
    margin-bottom: 30px;
}

.amount-section label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    display: block;
}

.amount-section label i {
    color: var(--orange);
    margin-right: 8px;
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.amount-option {
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.amount-option:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.amount-option.active {
    background: var(--tomato);
    border-color: var(--tomato);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 91, 75, 0.3);
}

.custom-amount-btn {
    background: transparent;
    border: 1px dashed var(--teal);
    color: var(--teal);
}

.custom-amount-field {
    margin-top: 12px;
}

.custom-amount-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--teal);
    border-radius: 12px;
    font-size: 1rem;
}

.payment-methods-section {
    margin-bottom: 30px;
}

.payment-methods-section label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    display: block;
}

.payment-methods-section label i {
    color: var(--orange);
    margin-right: 8px;
}

.payment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-tab {
    flex: 1;
    padding: 12px;
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark-text);
}

.payment-tab i {
    font-size: 1.1rem;
}

.payment-tab.active {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.payment-details {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 20px;
    margin-top: 5px;
}

.bank-info, .till-info {
    background: white;
    border-radius: 16px;
    padding: 20px;
}

.bank-logo, .till-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.bank-logo i, .till-logo i {
    font-size: 2rem;
    color: var(--teal);
}

.account-details, .till-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.account-box, .till-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.account-label, .till-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    display: block;
    margin-bottom: 8px;
}

.account-number, .till-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--teal);
    font-size: 1rem;
    transition: all 0.2s;
}

.copy-btn:hover {
    color: var(--tomato);
    transform: scale(1.1);
}

.bank-instructions, .mpesa-steps {
    background: #fff9e6;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bank-instructions i, .mpesa-steps i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-top: 2px;
}

.mpesa-steps {
    flex-direction: column;
    background: #f0f7f9;
}

.mpesa-steps h4 {
    font-size: 0.9rem;
    color: var(--teal);
    margin-bottom: 10px;
}

.mpesa-steps ol {
    margin-left: 20px;
    color: var(--dark-text);
    font-size: 0.85rem;
    line-height: 1.6;
}

.donation-footer {
    margin-top: 25px;
}

.progress-container {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.goal-amount {
    font-weight: 700;
    color: var(--teal);
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--tomato));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}

.donate-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--tomato), #f4796b);
    border: none;
    padding: 16px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.donate-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(244, 91, 75, 0.4);
    gap: 18px;
}

.secure-badge {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
}

.secure-badge i {
    color: var(--lime);
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .donate-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .account-details, .till-details {
        grid-template-columns: 1fr;
    }
    .payment-tabs {
        flex-direction: column;
    }
    .donate-impact h2 {
        font-size: 2rem;
    }
    .donation-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}