/* ========================================
   NGO FOUNDATION — FRONTEND STYLESHEET
   public/frontend/css/style.css
======================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary:       #16a34a;
    --primary-dark:  #166534;
    --primary-light: #4ade80;
    --primary-glow:  rgba(22, 163, 74, 0.25);
    --accent:        #f59e0b;
    --accent-dark:   #d97706;
    --bg-dark:       #0a0f0d;
    --bg-section:    #f0fdf4;
    --bg-alt:        #f8fafc;
    --text-dark:     #0f172a;
    --text-muted:    #64748b;
    --white:         #ffffff;
    --border:        rgba(22, 163, 74, 0.2);
    --border-light:  #e2e8f0;
    --card-shadow:   0 20px 60px -10px rgba(0,0,0,0.12);
    --radius-sm:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ========== TOPBAR ========== */
.topbar-strip {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    height: 40px;
    background: linear-gradient(90deg, #166534 0%, #16a34a 50%, #15803d 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    overflow: hidden;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; white-space: nowrap; }
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.85; }
.topbar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.25); }
.topbar-ticker { flex: 1; overflow: hidden; margin: 0 2rem; mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.ticker-track { display: flex; gap: 3rem; animation: tickerScroll 28s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; font-size: 0.78rem; color: rgba(255,255,255,0.9); }
.ticker-dot { width: 5px; height: 5px; background: #a7f3d0; border-radius: 50%; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.topbar-social { width: 26px; height: 26px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.7rem; font-weight: 700; transition: all 0.2s; }
.topbar-social:hover { background: rgba(255,255,255,0.25); color: #fff; transform: translateY(-1px); }
.topbar-admin-link { display: flex; align-items: center; gap: 0.35rem; color: #a7f3d0; text-decoration: none; font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.7rem; border: 1px solid rgba(167,243,208,0.4); border-radius: 6px; transition: all 0.2s; margin-left: 0.5rem; }
.topbar-admin-link:hover { background: rgba(167,243,208,0.15); color: #fff; }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 40px; left: 0; right: 0; z-index: 1000; padding: 0 5%; height: 70px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,15,13,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: all 0.35s ease; }
.navbar.scrolled { top: 0; background: rgba(10,15,13,0.97); box-shadow: 0 6px 30px rgba(0,0,0,0.5); height: 64px; }
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 48px; width: auto; background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo img { height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.nav-logo svg { width: 28px; height: 28px; fill: #fff; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 0.45rem 0.85rem; border-radius: 10px; transition: all 0.2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--primary) !important; color: #fff !important; font-weight: 600 !important; padding: 0.5rem 1.1rem !important; border-radius: 10px !important; box-shadow: 0 4px 15px var(--primary-glow); transition: all 0.25s ease !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 8px 25px var(--primary-glow) !important; }

/* Dropdown Menu */
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.3rem; }
.dropdown-arrow { transition: transform 0.25s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: rgba(10,15,13,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.5rem; list-style: none; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; box-shadow: 0 15px 40px rgba(0,0,0,0.4); z-index: 1001; margin-top: 0.5rem; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li a { display: block; padding: 0.6rem 1rem; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.nav-dropdown-menu li a:hover { color: #fff; background: rgba(22,163,74,0.15); padding-left: 1.25rem; }

/* ========== SECTION COMMONS ========== */
section { padding: 90px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(22,163,74,0.1); color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 50px; border: 1px solid var(--border); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 560px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; border-radius: 14px; box-shadow: 0 10px 30px rgba(22,163,74,0.4); transition: all 0.3s ease; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(22,163,74,0.5); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.75rem; background: transparent; color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.95rem; border-radius: 12px; border: 2px solid var(--primary); transition: all 0.25s ease; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ========== 1. HERO (FULL-WIDTH IMAGE SLIDER) ========== */
.hero {
    position: relative;
    margin-top: 110px; /* Space for Topbar (40px) + Navbar (70px) */
    height: calc(100vh - 110px);
    min-height: 550px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: #05120a;
}

/* Background Image Slides */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease, visibility 1.2s;
    transform: scale(1.03);
}
.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #05120a 0%, rgba(5,18,10,0.1) 20%, transparent 40%);
    pointer-events: none;
}

/* Center Content Overlay */
.hero-overlay-content {
    position: relative;
    z-index: 10;
    max-width: 960px;
    margin: 0 auto;
    padding: 160px 5% 100px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22,163,74,0.22);
    border: 1px solid rgba(74,222,128,0.4);
    color: var(--primary-light);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7);
    animation: fadeInUp 0.9s ease 0.1s both;
}
.hero h1 span {
    color: var(--primary-light);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 760px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.3s both;
}

/* Floating Impact Pills Bar */
.hero-impact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}
.hero-impact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-impact-item strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-light);
}
.hero-impact-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Side Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}
.hero-arrow.prev { left: 2rem; }
.hero-arrow.next { right: 2rem; }

/* Bottom Dots Navigation */
.hero-bottom-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 20;
    align-items: center;
}
.hero-dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
    padding: 0;
}
.hero-dot-btn.active {
    width: 32px;
    background: var(--primary-light);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
}

@media (max-width: 768px) {
    .hero-arrow { display: none; }
    .hero-impact-bar { gap: 1rem; padding: 0.75rem 1.25rem; border-radius: 20px; }
    .hero-impact-divider { display: none; }
}



/* ========== 2. ABOUT ========== */
.about { background: var(--bg-section); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { position: relative; }
.about-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    background: #0d2818;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: 0 20px 50px -15px rgba(22, 163, 74, 0.25);
    position: relative;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-main:hover img {
    transform: scale(1.04);
}
.about-floating-card { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: 16px; padding: 1.25rem 1.5rem; box-shadow: var(--card-shadow); display: flex; align-items: center; gap: 0.75rem; z-index: 5; }
.about-floating-card .icon { width: 44px; height: 44px; background: linear-gradient(135deg, #16a34a, #4ade80); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.about-floating-card .info strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--text-dark); }
.about-floating-card .info span { font-size: 0.8rem; color: var(--text-muted); }
.about-points { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.about-points li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.975rem; color: var(--text-muted); line-height: 1.6; }
.about-points li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(22,163,74,0.12); color: var(--primary); border-radius: 50%; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ========== 3. DONATION MODULE ========== */
.donation { background: #fff; }
.donation-inner { max-width: 1100px; margin: 0 auto; }
.donation-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: start; }
.donation-info { padding-top: 0.5rem; }
.donation-info .section-title { margin-bottom: 0.75rem; }
.donation-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.donation-impact { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.d-impact-box { background: var(--bg-section); border-radius: var(--radius-sm); padding: 1.25rem; border-left: 3px solid var(--primary); }
.d-impact-box .amount { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.d-impact-box .desc { font-size: 0.825rem; color: var(--text-muted); margin-top: 0.2rem; }
.donation-form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--card-shadow); }
.donation-form-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-dark); }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.amount-btn { padding: 0.75rem; border: 2px solid var(--border-light); border-radius: 10px; background: #fff; color: var(--text-dark); font-size: 1rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.2s; text-align: center; }
.amount-btn:hover, .amount-btn.active { border-color: var(--primary); background: rgba(22,163,74,0.06); color: var(--primary); }
.custom-amount { width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--border-light); border-radius: 10px; font-size: 1rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); outline: none; transition: border-color 0.25s; margin-bottom: 1.25rem; }
.custom-amount:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(22,163,74,0.1); }
.donation-type { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.dtype-btn { flex: 1; padding: 0.65rem; border: 2px solid var(--border-light); border-radius: 10px; background: #fff; font-size: 0.9rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.2s; }
.dtype-btn.active { border-color: var(--primary); background: rgba(22,163,74,0.08); color: var(--primary); }
.btn-donate { width: 100%; padding: 1rem; background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; border: none; border-radius: 14px; font-size: 1.05rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; box-shadow: 0 8px 25px rgba(22,163,74,0.35); transition: all 0.3s; }
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(22,163,74,0.45); }
.secure-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.35rem; }

/* ========== 4. TEAM ========== */
.team { background: var(--bg-section); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.35s ease; text-align: center; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow); border-color: transparent; }
.team-avatar { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, #16a34a22, #4ade8022); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.team-card:hover .team-avatar img { transform: scale(1.06); }
.team-avatar-initials { font-size: 3rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; }
.team-avatar-overlay { position: absolute; inset: 0; background: rgba(22,163,74,0.88); display: flex; align-items: center; justify-content: center; gap: 0.75rem; opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(2px); }
.team-card:hover .team-avatar-overlay { opacity: 1; }
.team-social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 700; transition: background 0.2s; }
.team-social-link:hover { background: rgba(255,255,255,0.35); }
.team-info { padding: 1.25rem; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.team-role { font-size: 0.825rem; color: var(--primary); font-weight: 600; margin-bottom: 0.6rem; }
.team-bio { font-size: 0.825rem; color: var(--text-muted); line-height: 1.6; }

/* ========== 5. EVENTS ========== */
.events { background: #fff; }
.events-inner { max-width: 1200px; margin: 0 auto; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.event-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow); border-color: transparent; }
.event-banner { height: 180px; width: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; background: linear-gradient(135deg, #16a34a15, #4ade8020); }
.event-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.event-card:hover .event-banner img { transform: scale(1.08); }
.event-date-badge { position: absolute; top: 12px; left: 12px; background: rgba(22, 163, 74, 0.95); backdrop-filter: blur(4px); color: #fff; border-radius: 10px; padding: 0.35rem 0.75rem; text-align: center; line-height: 1.2; box-shadow: 0 4px 12px rgba(0,0,0,0.25); z-index: 2; border: 1px solid rgba(255,255,255,0.2); }
.event-date-badge .day { font-size: 1.35rem; font-weight: 800; display: block; }
.event-date-badge .month { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.event-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-type { display: inline-block; align-self: flex-start; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); background: rgba(22,163,74,0.08); border-radius: 6px; padding: 0.2rem 0.6rem; margin-bottom: 0.6rem; }
.event-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.4; }
.event-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.event-meta svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }
.event-register { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--primary); font-weight: 600; font-size: 0.875rem; text-decoration: none; margin-top: auto; padding-top: 1rem; transition: gap 0.2s; }
.event-register:hover { gap: 0.55rem; }

/* ========== 6. NEWS & UPDATES ========== */
.news { background: var(--bg-section); }
.news-inner { max-width: 1200px; margin: 0 auto; }
.news-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start; }

/* Featured Card */
.news-card.featured-main { background: #fff; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.3s; display: flex; flex-direction: column; height: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.news-card.featured-main:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(22,163,74,0.1); border-color: transparent; }
.news-img-wrap { position: relative; width: 100%; height: 320px; overflow: hidden; }
.news-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.news-card.featured-main:hover .news-img { transform: scale(1.05); }
.news-cat-badge { position: absolute; top: 20px; left: 20px; background: var(--primary); color: #fff; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 2; }
.news-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.news-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); line-height: 1.4; margin-bottom: 1rem; transition: color 0.2s; }
.news-card.featured-main:hover .news-title { color: var(--primary); }
.news-excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.news-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.news-author { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.news-author-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #16a34a, #4ade80); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem; font-weight: 700; }
.news-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* List Items */
.news-list { display: flex; flex-direction: column; gap: 1.25rem; }
.news-list-item { display: flex; gap: 1.25rem; background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; border: 1px solid var(--border-light); transition: all 0.3s; align-items: center; }
.news-list-item:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(22,163,74,0.08); border-color: var(--border); }
.news-list-img { width: 130px; height: 110px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2rem; background-size: cover; background-position: center; flex-shrink: 0; }
.news-list-content { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.news-list-content .news-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.4rem; }
.news-list-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 0.6rem; transition: color 0.2s; }
.news-list-item:hover .news-list-title { color: var(--primary); }
.news-list-content .news-date { font-size: 0.8rem; color: var(--text-muted); }


/* ========== 7. PHOTO GALLERY ========== */
.gallery { background: #fff; }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { padding: 0.5rem 1.25rem; border: 2px solid var(--border-light); border-radius: 50px; background: #fff; font-size: 0.875rem; font-weight: 600; font-family: 'Outfit', sans-serif; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:first-child, .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-section), #e2f5ea); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; transition: transform 0.4s ease; }
.gallery-item:first-child .gallery-thumb, .gallery-item:nth-child(5) .gallery-thumb { font-size: 4.5rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(22,163,74,0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; color: #fff; font-size: 0.9rem; font-weight: 600; gap: 0.5rem; }
.gallery-overlay svg { width: 28px; height: 28px; }
.gallery-item:hover .gallery-thumb { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========== 8. VIDEO GALLERY ========== */
.videos { background: var(--bg-section); }
.videos-inner { max-width: 1200px; margin: 0 auto; }
.videos-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.5rem; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border-light); transition: all 0.3s; cursor: pointer; }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: transparent; }
.video-thumb { position: relative; width: 100%; height: 190px; background: linear-gradient(135deg, #0a0f0d, #1a2e1e); display: flex; align-items: center; justify-content: center; }
.video-card.featured .video-thumb { height: 280px; }
.video-emoji { font-size: 3rem; }
.video-card.featured .video-emoji { font-size: 4.5rem; }
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-circle { width: 56px; height: 56px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.video-card:hover .play-circle { background: var(--primary); transform: scale(1.1); }
.play-circle svg { width: 22px; height: 22px; fill: var(--primary); margin-left: 3px; }
.video-card:hover .play-circle svg { fill: #fff; }
.video-duration { position: absolute; bottom: 8px; right: 10px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 5px; }
.video-info { padding: 1.25rem; }
.video-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.4rem; display: block; }
.video-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 0.4rem; }
.video-views { font-size: 0.78rem; color: var(--text-muted); }

/* ========== 9. TESTIMONIALS ========== */
.testimonials { background: #fff; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--border); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.quote-icon { font-size: 2.5rem; color: var(--primary); opacity: 0.3; margin-bottom: 1rem; line-height: 1; font-family: serif; }
.testimonial-text { font-size: 0.975rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, #16a34a, #4ade80); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ========== 10. CONTACT ========== */
.contact { background: var(--bg-section); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card { background: #fff; border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; border: 1px solid var(--border-light); transition: all 0.25s; }
.contact-card:hover { border-color: var(--border); box-shadow: 0 8px 25px rgba(22,163,74,0.08); transform: translateX(4px); }
.contact-card .icon { width: 44px; height: 44px; background: rgba(22,163,74,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-card .text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.contact-card .text span { font-size: 0.875rem; color: var(--text-muted); }
.contact-map { width: 100%; height: 140px; background: linear-gradient(135deg, #e2f5ea, #d1fae5); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border: 1px solid var(--border); margin-top: 1rem; }
.contact-form-card { background: #fff; border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--card-shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem 1rem; background: var(--bg-section); border: 1.5px solid var(--border-light); border-radius: 12px; font-size: 0.95rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); outline: none; transition: border-color 0.25s, box-shadow 0.25s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(22,163,74,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 0.95rem; background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; border: none; border-radius: 14px; font-size: 1rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; box-shadow: 0 8px 25px rgba(22,163,74,0.35); transition: all 0.3s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(22,163,74,0.45); }

/* ========== 11. NEWSLETTER ========== */
.newsletter { background: #fff; padding: 70px 5%; }
.newsletter-inner { max-width: 1200px; margin: 0 auto; background: linear-gradient(135deg, #0a0f0d 0%, #0d1f0e 100%); border-radius: var(--radius-xl); padding: 4rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; overflow: hidden; }
.newsletter-inner::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.newsletter-text { position: relative; z-index: 1; }
.newsletter-text .section-tag { background: rgba(74,222,128,0.1); color: var(--primary-light); border-color: rgba(74,222,128,0.3); }
.newsletter-text .section-title { color: #fff; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; }
.newsletter-form { position: relative; z-index: 1; }
.newsletter-form-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; backdrop-filter: blur(10px); }
.newsletter-form-wrap h4 { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 1.5rem; }
.nl-input-row { display: flex; flex-direction: column; gap: 0.75rem; }
.nl-input { width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 12px; color: #fff; font-size: 0.95rem; font-family: 'Outfit', sans-serif; outline: none; transition: all 0.25s; }
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-input:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(74,222,128,0.15); }
.nl-submit { width: 100%; padding: 0.95rem; background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 25px rgba(22,163,74,0.35); }
.nl-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(22,163,74,0.45); }
.nl-privacy { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 0.75rem; }

/* ========== FOOTER ========== */
.footer { background: #050a06; color: rgba(255,255,255,0.6); padding: 60px 5% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.8rem; transition: all 0.2s; }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .about-grid, .contact-inner, .donation-layout, .newsletter-inner { grid-template-columns: 1fr; }
    .about-img { display: none; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .events-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .news-layout { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:first-child, .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .newsletter-inner { padding: 3rem 2.5rem; }
}
@media (max-width: 640px) {
    .hero { margin-top: 110px; height: 55vh; min-height: 300px; }
    .hero-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
    .hero-arrow.prev { left: 0.75rem; }
    .hero-arrow.next { right: 0.75rem; }
    .hero-bottom-dots { bottom: 1rem; }
    .team-grid, .events-grid, .testimonials-grid, .news-layout, .videos-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .nav-links { display: none; }
    .topbar-ticker, .topbar-left { display: none; }
    .newsletter-inner { padding: 2.5rem 1.5rem; }
    .amount-grid { grid-template-columns: 1fr 1fr; }
    .donation-impact { grid-template-columns: 1fr; }
}
/* ========== ABOUT PAGE DEDICATED STYLES ========== */
.page-banner {
    position: relative;
    margin-top: 110px;
    padding: 90px 5% 80px;
    background: radial-gradient(circle at 80% 20%, rgba(22,163,74,0.22) 0%, #05120a 70%),
                linear-gradient(180deg, #05120a 0%, #081a0e 100%);
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(74,222,128,0.15);
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(74,222,128,0.18) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--primary-light); text-decoration: none; font-weight: 500; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb span { color: rgba(255,255,255,0.4); }
.page-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.page-banner-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Mission Vision Values Cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.mvv-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #4ade80);
    opacity: 0;
    transition: opacity 0.3s;
}
.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22,163,74,0.12);
    border-color: rgba(74,222,128,0.4);
}
.mvv-card:hover::before { opacity: 1; }
.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(22,163,74,0.12), rgba(74,222,128,0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.mvv-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}
.mvv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Timeline / Milestones */
.timeline-wrap {
    position: relative;
    max-width: 860px;
    margin: 3.5rem auto 0;
    padding-left: 2rem;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 3px;
    background: linear-gradient(180deg, #16a34a, #4ade80, rgba(22,163,74,0.2));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #16a34a;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.3);
}
.timeline-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.timeline-year {
    display: inline-block;
    background: rgba(22,163,74,0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}
.timeline-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.timeline-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Certifications & Trust Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.cert-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(22,163,74,0.1);
}
.cert-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.cert-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.cert-code { font-size: 0.8rem; font-weight: 600; color: var(--primary); background: rgba(22,163,74,0.08); padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Call to Action Bar */
.cta-box {
    background: linear-gradient(135deg, #166534 0%, #16a34a 50%, #15803d 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(22,163,74,0.35);
    position: relative;
    overflow: hidden;
}
.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-box p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: #166534;
    padding: 0.9rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-3px);
    background: #f0fdf4;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.btn-trans-border {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 0.9rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}
.btn-trans-border:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .mvv-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cert-grid { grid-template-columns: 1fr; }
    .page-banner { padding: 70px 5% 50px; }
    .cta-box { padding: 3rem 1.5rem; }
}

/* ========== DONATION PAYMENT TABS & OPTIONS ========== */
.donation-method-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(22, 163, 74, 0.08);
    padding: 0.4rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.pay-tab-btn {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border: none;
    background: transparent;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.pay-tab-btn.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pay-pane { display: none; }
.pay-pane.active { display: block; animation: fadeInPay 0.3s ease; }

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

.upi-scan-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px dashed rgba(22, 163, 74, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
}
.upi-qr-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 0.85rem;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.upi-qr-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.upi-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(22, 163, 74, 0.25);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.btn-copy-chip {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy-chip:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.bank-details-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.88rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-label { color: var(--text-muted); font-weight: 500; }
.bank-val { font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 0.4rem; }

.d-impact-box {
    cursor: pointer;
    transition: all 0.25s ease;
}
.d-impact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.15);
    border-left-color: var(--primary-light);
    background: #f0fdf4;
}

.toast-copy {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideUpToast 0.3s ease;
}
@keyframes slideUpToast {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

