/* ==================================================
   DONATION PAGE – BASE
================================================== */

.donation-page {
    font-family: Arial, Helvetica, sans-serif;
}

/* ==================================================
   HERO
================================================== */

.donation-hero {
    background: linear-gradient(135deg,#0f172a, #1e3a8a);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.donation-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

/* ==================================================
   COMMON SECTIONS
================================================== */

.donation-section {
    padding: 20px 0;
}

.light-bg {
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.section-title.white {
    color: #000000;
}

/* ==================================================
   GENERIC CARD
================================================== */

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

/* ================================
   FOUNDATION COMBINED CARD
================================ */

.foundation-details {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.foundation-combined-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.10);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
}

.foundation-title {
    font-size: 32px;
    margin-bottom: 18px;
    color: #0f172a;
}

.foundation-content p {
    margin-bottom: 16px;
    color: #374151;
    line-height: 1.8;
}

/* QR SIDE */

.foundation-qr {
    text-align: center;
    padding-left: 20px;
    border-left: 1px dashed #e5e7eb;
}

.foundation-qr h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #0f172a;
}

.foundation-qr img {
    max-width: 220px;
    width: 100%;
    margin: 10px auto 14px;
}

.qr-note {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {
    .foundation-combined-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .foundation-qr {
        border-left: none;
        border-top: 1px dashed #e5e7eb;
        padding-left: 0;
        padding-top: 24px;
        margin-top: 10px;
    }
}

/* ==================================================
   FOCUS AREAS (6 ITEMS – 3x2)
================================================== */

.focus-area h3 {
    font-size: 26px;
    margin-bottom: 24px;
    text-align: center;
}

.focus-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ==================================================
   COMMITMENT
================================================== */

.foundation-commitment {
    margin-top: 60px;
    background: #0f172a;
    color: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(15,23,42);
}

.foundation-commitment p {
    line-height: 1.8;
    margin-bottom: 14px;
}

.commitment-highlight {
    font-weight: 600;
    font-size: 16px;
    opacity: 0.95;
}

/* ==================================================
   WHY DONATE – 8 POINTS (4x2)
================================================== */

.donation-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.why-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 26px;
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.why-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.why-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ==================================================
   DONATION METHODS
================================================== */

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.method-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    text-align: center;
}

.method-card img {
    max-width: 180px;
    margin: 15px auto;
}

/* ==================================================
   CTA
================================================== */

.donation-cta {
    background: linear-gradient(135deg,#0f172a, #1e3a8a);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.donate-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* ==================================================
   IMPACT SLIDER (MULTI IMAGE)
================================================== */

.impact-section {
    padding: 20px 0;
    background: #f8fafc;
}

.impact-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.impact-track {
    display: flex;
    transition: transform 0.6s ease;
}

.impact-slide {
    flex: 0 0 33.3333%;
    padding: 12px;
}

.impact-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1024px) {
    .focus-grid-6,
    .why-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .focus-grid-6,
    .why-grid-8 {
        grid-template-columns: 1fr;
    }

    .impact-slide {
        flex: 0 0 100%;
    }

    .impact-slide img {
        height: 220px;
    }

    .foundation-card {
        padding: 26px;
    }

    .foundation-title {
        font-size: 26px;
    }
}
/* ================================
   CLEAN KEY FOCUS AREA – PREMIUM
================================ */

.focus-clean-section {
    padding: 20px 0;
    background: #f8fafc;
}

.focus-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.focus-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.focus-card .icon {
    font-size: 34px;
    margin-bottom: 12px;
    display: inline-block;
}

.focus-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #0f172a;
}

.focus-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* responsive */
@media (max-width: 1024px) {
    .focus-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .focus-grid-6 {
        grid-template-columns: 1fr;
    }
}

.foundation-commitment-wrapper {
    padding: 30px 0;
    background: #f8fafc;
}

.foundation-commitment-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg,#0f172a, #1e3a8a);
    color: #fff;
    padding: 50px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(0,0,0,.3);
}

