/* ============================================================
   DONATE PAGE
============================================================ */

/* HERO */
.donate-hero {
    background: #f5f7f6;
    padding: 80px 20px;
    text-align: center;
}

.donate-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.donate-hero p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #555;
}


/* ============================================================
   DONATION OPTIONS
============================================================ */

.donate-options {
    padding: 60px 20px;
    text-align: center;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.donation-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 8px;
    background: #fff;
    transition: 0.3s;
}

.donation-card:hover {
    transform: translateY(-5px);
    border-color: #156951;
}

.donation-card.featured {
    border: 2px solid #156951;
}

.donation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.donation-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #666;
}

.donate-btn {
    background: #156951;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #0f4d3c;
}


/* ============================================================
   CUSTOM AMOUNT
============================================================ */

.donate-custom {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.custom-donation-form {
    margin-top: 20px;
}

.input-group {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.input-group span {
    padding: 10px;
    background: #eee;
}

.input-group input {
    border: none;
    padding: 10px;
    width: 120px;
    outline: none;
}


/* ============================================================
   IMPACT
============================================================ */

.donate-impact {
    padding: 60px 20px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.impact-box {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.impact-box i {
    font-size: 22px;
    color: #156951;
    margin-bottom: 10px;
}


/* ============================================================
   PAYMENT
============================================================ */

.donate-payment {
    padding: 60px 20px;
    text-align: center;
    background: #f5f7f6;
}

.payment-icons i {
    font-size: 28px;
    margin: 10px;
    color: #444;
}


/* ============================================================
   TRUST
============================================================ */

.donate-trust {
    padding: 60px 20px;
    text-align: center;
}


/* ============================================================
   CTA
============================================================ */

.donate-cta {
    padding: 70px 20px;
    text-align: center;
    background: #156951;
    color: #fff;
}

.donate-cta .btn-primary {
    margin-top: 15px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {
    .donation-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .donation-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   DONATION STATUS (SUCCESS / CANCEL)
============================================================ */

.donate-status {
    padding: 80px 20px;
    text-align: center;
}

.status-box {
    max-width: 600px;
    margin: 0 auto;
}

.status-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.donate-status.cancel .status-icon {
    color: #c1121f;
}

.status-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CAUSES SECTION (DISTINCT STYLE)
============================================================ */

.causes-section {
    padding: 80px 20px;
    background: #f4f7f6; /* subtle soft background */
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.cause-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border-left: 4px solid #156951; /* green accent */
    transition: all 0.3s ease;
    position: relative;
}

.cause-card i {
    font-size: 26px;
    margin-bottom: 15px;
    color: #156951;
}

.cause-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.cause-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Hover (more premium feel) */
.cause-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


/* ============================================================
   IMPACT BREAKDOWN (DISTINCT STYLE)
============================================================ */

.causes-impact {
    padding: 80px 20px;
    background: #ffffff;
}

.causes-impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.causes-impact .impact-box {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background: #f9fbfa;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.causes-impact .impact-box h3 {
    font-size: 2rem;
    color: #156951;
    margin-bottom: 8px;
}

.causes-impact .impact-box p {
    font-size: 0.9rem;
    color: #666;
}

/* subtle hover */
.causes-impact .impact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .causes-grid,
    .causes-impact .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .causes-grid,
    .causes-impact .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CAMPAIGN OVERVIEW
============================================================ */

.campaign-overview {
    padding: 80px 20px;
    background: #ffffff;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.campaign-card {
    background: #f8f9fb;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.campaign-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.campaign-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.campaign-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

/* subtle hover */
.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


/* ============================================================
   CAMPAIGN IMPACT
============================================================ */

.campaign-impact {
    padding: 80px 20px;
    background: #f4f6f8;
}

.campaign-impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.campaign-impact .impact-box {
    text-align: center;
    padding: 25px;
}

.campaign-impact .impact-box i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #c1121f; /* keep campaign tied to action/red */
}

.campaign-impact .impact-box h3 {
    margin-bottom: 8px;
}

.campaign-impact .impact-box p {
    font-size: 0.9rem;
    color: #555;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .campaign-grid,
    .campaign-impact .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .campaign-grid,
    .campaign-impact .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* Campaign image */
.campaign-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Progress info */
.campaign-progress {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #666;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #c1121f;
    border-radius: 4px;
}



/* ============================================================
   DONATION FORM (STRUCTURE)
============================================================ */

.donation-form-section {
    padding: 60px 20px;
}

.donation-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}


/* ============================================================
   STEPS
============================================================ */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}


/* ============================================================
   AMOUNT GRID
============================================================ */

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #c1121f;
}

.amount-btn.active {
    background: #c1121f;
    color: #fff;
    border-color: #c1121f;
}


/* ============================================================
   CUSTOM INPUT
============================================================ */

.custom-amount {
    margin-bottom: 20px;
}

.custom-amount label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.input-group span {
    padding: 10px 12px;
    background: #f4f4f4;
    font-weight: 600;
}

.input-group input {
    border: none;
    padding: 10px;
    width: 100%;
    outline: none;
}


/* ============================================================
   BUTTONS
============================================================ */

.next-step,
.back-step {
    margin-top: 10px;
}

.back-step {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    margin-top: 15px;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}


/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 1024px) {

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-box {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .donation-form-section {
        padding: 40px 15px;
    }

    .donation-box {
        padding: 20px;
    }

    .amount-grid {
        grid-template-columns: 1fr;
    }

    .amount-btn {
        width: 100%;
    }

    .payment-options {
        flex-direction: column;
    }

    .payment-options button {
        width: 100%;
    }
}