:root {
    --emerald: #10b981;
    --navy-dark: #0f172a;
    --text-slate: #64748b;
    --blue-gradient: #3b82f6;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy-dark);
    margin: 0;
    line-height: 1.6;
    background-color: #ffffff;
}

.fnd-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Navigation */
.fnd-nav { padding: 30px 0; background: #fff; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.fnd-logo { font-weight: 800; font-size: 22px; text-decoration: none; color: #0f172a; letter-spacing: -0.02em; }
.fnd-logo span { color: var(--emerald); font-weight: 400; }
.fnd-links { display: flex; align-items: center; gap: 40px; }
.fnd-links a { text-decoration: none; font-weight: 700; color: #0f172a; font-size: 15px; }
.fnd-btn-nav { background: #0f172a; color: #fff !important; padding: 12px 24px; border-radius: 10px; }

/* Hero Section - Matching Screenshot EXACTLY */
.fnd-hero { padding: 80px 0 60px; }
.social-trust-badge { background: #f0fdf4; color: #10b981; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 700; display: inline-block; margin-bottom: 24px; }

.fnd-hero h1 { 
    font-size: 92px; 
    font-weight: 800; 
    line-height: 0.9; 
    letter-spacing: -0.05em; 
    margin-bottom: 28px; 
    color: #0f172a;
}

.accent-text { 
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.fnd-hero p { font-size: 19px; color: var(--text-slate); max-width: 580px; margin-bottom: 40px; font-weight: 500; }

.hero-actions { display: flex; align-items: center; gap: 32px; margin-bottom: 24px; }
.fnd-btn-dark { background: #0f172a; color: #fff; padding: 18px 36px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 16px; }
.fnd-btn-link { text-decoration: none; color: #0f172a; font-weight: 700; font-size: 16px; }
.trust-subtext { color: #94a3b8; font-size: 15px; font-weight: 500; }

/* Stats Card - Dark Blue rounded box */
.stats-dark-card { 
    background: #0f172a; 
    border-radius: 48px; 
    padding: 100px 40px; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    color: #fff; 
    margin-top: 60px;
    text-align: center;
}

.stat-num { display: block; font-size: 72px; font-weight: 800; color: #10b981; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 12px; font-weight: 700; opacity: 0.6; letter-spacing: 0.1em; }

/* Project Rows */
.fnd-row-alt { display: flex; align-items: center; gap: 100px; padding: 120px 0; }
.fnd-row-alt.reverse { flex-direction: row-reverse; }
.fnd-col-text { flex: 1; position: relative; }
.fnd-col-visual { flex: 1.2; }
.num-watermark { font-size: 120px; font-weight: 800; color: rgba(16, 185, 129, 0.2); position: absolute; top: -60px; left: -20px; z-index: -1; }
.frame { border-radius: 32px; overflow: hidden; box-shadow: 0 40px 80px rgba(15,23,42,0.1); }
.frame img { width: 100%; height: auto; display: block; }

/* Donation Details */
.donation-anchor-box { background: #f8fafc; padding: 100px 60px; border-radius: 48px; text-align: center; margin: 100px 0; border: 1px solid #e2e8f0; }
.bank-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.bank-card { background: #fff; padding: 40px; border-radius: 24px; text-align: left; border: 1px solid #f1f5f9; }
.bank-card strong { color: var(--emerald); display: block; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Footer */
/* .fnd-footer-premium { background: #0f172a; color: #94a3b8; padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 80px; padding-bottom: 80px; }
.fnd-logo-footer { color: #fff; font-size: 22px; font-weight: 800; text-decoration: none; display: block; margin-bottom: 24px; }
.fnd-logo-footer span { color: var(--emerald); }
.footer-col h4 { color: #fff; margin-bottom: 30px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; text-align: center; font-size: 14px; } */

/* Mobile Optimization */
@media (max-width: 992px) {
    .fnd-hero h1 { font-size: 64px; }
    .fnd-row-alt, .fnd-row-alt.reverse { flex-direction: column; gap: 40px; text-align: center; }
    .stats-dark-card { grid-template-columns: 1fr; gap: 60px; padding: 80px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .bank-details-grid { grid-template-columns: 1fr; }
}
/* ================================================================
   IMPACT PAGE EXCLUSIVE STYLES
   ================================================================ */

/* Hero Section */
.fnd-hero-v2 { padding: 100px 0 60px; text-align: center; }
.badge { background: #eefdf5; color: #10b981; padding: 8px 16px; border-radius: 20px; font-weight: 700; font-size: 13px; text-transform: uppercase; }
.fnd-hero-v2 h1 { font-size: 64px; font-weight: 800; margin: 25px 0; line-height: 1.1; color: #0f172a; }
.gradient-text { background: linear-gradient(90deg, #10b981, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 19px; color: #475569; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* Impact Grid System */
.impact-grid-v2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    margin-bottom: 100px; 
}

/* Card General Styling */
.impact-card-v2 { 
    background: #fff; 
    border-radius: 24px; 
    overflow: hidden; 
    border: 1px solid #f1f5f9; 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.impact-card-v2:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08); 
}

/* Featured Scholarship Card (Top Wide Card) */
.impact-card-v2.featured { 
    grid-column: span 2; 
    flex-direction: row; 
    background: #f8fafc;
}

.card-image { position: relative; height: 320px; width: 100%; overflow: hidden; }
.impact-card-v2.featured .card-image { flex: 1.3; height: 450px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.impact-card-v2:hover .card-image img { transform: scale(1.05); }

/* Tags & Badges */
.impact-tag { position: absolute; top: 20px; left: 20px; background: #10b981; color: #fff; padding: 6px 14px; border-radius: 8px; font-weight: 700; font-size: 12px; z-index: 2; }

/* Card Content Styling */
.card-body { padding: 40px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.impact-meta { font-weight: 800; color: #10b981; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; display: block; }
.impact-card-v2 h3 { font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 15px; line-height: 1.2; }
.impact-card-v2 p { color: #475569; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }

.impact-metric-pill { background: #fff; border: 1px solid #e2e8f0; padding: 10px 18px; border-radius: 12px; font-weight: 700; font-size: 13px; display: inline-block; width: fit-content; color: #0f172a; }
.impact-location { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; border-top: 1px solid #f1f5f9; padding-top: 20px; display: block; margin-top: auto; }

/* Dark Fee Support Box (Last Card) */
.fee-highlight-box { 
    background: #0f172a !important; 
    color: #fff; 
    border: none;
    text-align: center;
}

.fee-highlight-box .impact-meta { color: #34d399; }
.fee-highlight-box h3 { color: #fff !important; }
.fee-highlight-box p { color: #94a3b8 !important; }

.impact-stats-mini { display: flex; justify-content: center; margin-top: 25px; }
.mini-stat { display: flex; flex-direction: column; align-items: center; }
.stat-val { font-size: 36px; font-weight: 800; color: #10b981; }
.stat-desc { font-size: 12px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

/* Geographic Footprint Grid */
.section-title { text-align: center; margin-bottom: 60px; }
.divider { width: 60px; height: 4px; background: #10b981; margin: 20px auto; border-radius: 10px; }
.stats-grid-v3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px; }
.stat-card-v3 { background: #f8fafc; padding: 45px 35px; border-radius: 24px; border-bottom: 5px solid #10b981; transition: 0.3s; }
.stat-card-v3:hover { background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.stat-card-v3 h4 { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 15px; }
.stat-card-v3 p { font-size: 15px; color: #64748b; line-height: 1.6; }

/* PREMIUM FOOTER - COMPLETE EXTRACTED STYLES */
/* All classes and dependencies used in your footer HTML */

:root {
    --primary: #2563eb;
    --navy: #0f172a;
    --slate: #64748b;
    --wa-green: #25D366;
    --fb-blue: #1877F2;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* MAIN FOOTER */
.ft-footer-premium { 
    background: var(--navy); 
    color: #94a3b8; 
    padding: 80px 0 0; 
    width: 100%; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px; 
    padding-bottom: 60px; 
}

.footer-brand h4,
.footer-contact h4,
.footer-address h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-logo { 
    color: #ffffff; 
    font-size: 26px; 
    font-weight: 800; 
    text-decoration: none; 
    display: block; 
    margin-bottom: 20px; 
}

.footer-logo span { 
    color: #14b8a6; 
}

.footer-brand p {
    margin-bottom: 25px;
    color: #94a3b8;
}

.footer-contact p,
.footer-address p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom { 
    background: #0a101e; 
    padding: 30px 0; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

/* SOCIAL LINKS */
.social-links { 
    display: flex; 
    gap: 15px; 
    margin-top: 25px;
    position: relative;
}

.social-icon { 
    width: 45px; 
    height: 45px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #ffffff; 
    text-decoration: none; 
    transition: 0.3s; 
    cursor: pointer;
}

.social-icon.fb { 
    background-color: var(--fb-blue); 
}

.social-icon.ig { 
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%); 
}

.social-icon.wa { 
    background-color: var(--wa-green); 
}

/* WHATSAPP MINI MENU */
.wa-mini-menu {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: slideUpMenu 0.3s ease-out;
}

.wa-mini-menu.show {
    display: block;
}

.wa-menu-header {
    background: #075e54;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-menu-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
    color: #111;
}

.wa-menu-item:last-child {
    border-bottom: none;
}

.wa-menu-item:hover {
    background: #f8fafc;
}

.wa-menu-item strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 2px;
}

.wa-menu-item span {
    color: var(--wa-green);
    font-size: 12px;
    font-weight: 600;
}

/* ANIMATIONS */
@keyframes slideUpMenu {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}


/*
 <footer class="fnd-footer">
        <div class="fnd-container footer-grid">
            <div class="footer-brand">
                <a href="#" class="fnd-logo">FINOPLE <span>FOUNDATION</span></a>
*/
/* Responsive Media Queries */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
    .impact-grid-v2, .stats-grid-v3 { grid-template-columns: 1fr; }
    .impact-card-v2.featured { flex-direction: column; }
    .impact-card-v2.featured .card-image { height: 350px; }
    .fnd-hero-v2 h1 { font-size: 46px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}


/* =========================
   FOUNDATION BURGER MENU
   ========================= */

.fnd-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.fnd-burger span {
    width: 26px;
    height: 2px;
    background: #0f172a;
    display: block;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .fnd-burger {
        display: flex;
    }

    .fnd-links {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #ffffff;

        flex-direction: column;
        align-items: center;
        gap: 28px;

        padding: 30px 0;
        display: none;

        box-shadow: 0 20px 40px rgba(15,23,42,0.1);
        z-index: 1000;
    }

    .fnd-links.show {
        display: flex;
    }
}

/* DESKTOP SAFETY */
@media (min-width: 769px) {
    .fnd-links {
        display: flex !important;
    }
}


@media (max-width: 768px) {

    /* HERO */
    .fnd-hero-v2 h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 16px;
    }

    /* IMPACT GRID */
    .impact-grid-v2 {
        grid-template-columns: 1fr;
    }

    .impact-card-v2.featured {
        flex-direction: column;
    }

    .impact-card-v2.featured .card-image {
        height: 260px;
    }

    .card-body {
        padding: 28px 24px;
    }

    /* STATS */
    .stats-grid-v3 {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}


/* =====================================================
   MOBILE FIX — IMPACT PAGE CARD ALIGNMENT
   ===================================================== */
@media (max-width: 768px) {

    /* CONTAINER PADDING FIX */
    .fnd-container {
        padding: 0 18px;
    }

    /* FORCE SINGLE COLUMN STACK */
    .impact-grid-v2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    /* NORMALIZE ALL CARDS */
    .impact-card-v2,
    .impact-card-v2.featured {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        transform: none !important;
    }

    /* REMOVE DESKTOP HOVER EFFECT ON MOBILE */
    .impact-card-v2:hover {
        transform: none;
        box-shadow: none;
    }

    /* FIX IMAGE HEIGHTS (CONSISTENT) */
    .impact-card-v2 .card-image,
    .impact-card-v2.featured .card-image {
        height: 220px;
    }

    .impact-card-v2 .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CARD CONTENT SPACING */
    .impact-card-v2 .card-body {
        padding: 22px 20px;
        text-align: left;
    }

    .impact-card-v2 h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .impact-card-v2 p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    /* TAGS / META FIX */
    .impact-location {
        margin-top: 16px;
        padding-top: 14px;
    }

    .impact-metric-pill {
        margin-top: 12px;
    }

    /* STATS SECTION */
    .stats-grid-v3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FOOTER SAFETY */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }
}
