/* ============================================================
   GOD PAUL FOUNDATION
   DONATE PAGE
   ============================================================ */


/* ============================================================
   PAGE
   ============================================================ */

.donate-page {
    width: 100%;

    overflow: hidden;

    background:
        #edf6f0;
}


/* ============================================================
   HERO
   ============================================================ */

.donate-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #173e29;
}


.donate-hero-bg {
    position: absolute;

    inset: 0;

    z-index: 1;
}


.donate-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.donate-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(10, 44, 28, 0.95) 0%,
            rgba(22, 79, 50, 0.84) 45%,
            rgba(48, 102, 88, 0.51) 74%,
            rgba(0, 0, 0, 0.18) 100%
        );
}


.donate-hero-pattern {
    position: absolute;

    inset: 0;

    z-index: 3;

    opacity: 0.13;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size:
        62px 62px;
}


.donate-hero-container {
    position: relative;

    z-index: 5;
}


.donate-hero-content {
    max-width: 800px;

    padding:
        90px 0;
}


.donate-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color:
        #b9ebcf;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}


.donate-hero h1 {
    position: relative;

    margin:
        0 0 24px;

    padding-bottom: 17px;

    color:
        #ffffff;

    font-size:
        clamp(
            2.9rem,
            6vw,
            4.7rem
        );

    font-weight: 700;

    line-height: 1.06;
}


.donate-hero h1::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 90px;
    height: 5px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary-green),
            var(--primary-blue)
        );
}


.donate-hero-content > p {
    max-width: 700px;

    margin:
        0 0 29px;

    color:
        rgba(255,255,255,0.92);

    font-size: 1.02rem;

    line-height: 1.82;
}


/* ============================================================
   HERO POINTS
   ============================================================ */

.donate-hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.donate-hero-points > div {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border:
        1px solid
        rgba(255,255,255,0.20);

    border-radius: 30px;

    background:
        rgba(255,255,255,0.09);

    color:
        rgba(255,255,255,0.92);

    backdrop-filter:
        blur(8px);

    font-size: 0.78rem;
}


.donate-hero-points i {
    color:
        #95e2b5;
}


/* ============================================================
   SHARED LABEL
   ============================================================ */

.section-label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--primary-green);

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ============================================================
   DONATION SECTION
   ============================================================ */

.donation-section {
    padding:
        95px 0 110px;

    background:
        linear-gradient(
            135deg,
            #dcefe4 0%,
            #e8f5ed 45%,
            #e1f1f7 100%
        );
}


.donation-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);

    gap: 55px;

    align-items: start;
}


/* ============================================================
   INFO SIDE
   ============================================================ */

.donation-info h2 {
    margin:
        0 0 15px;

    color:
        #1e5538;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    line-height: 1.2;
}


.donation-intro {
    margin:
        0 0 32px;

    color:
        #536c5e;

    font-size: 0.95rem;

    line-height: 1.82;
}


/* ============================================================
   IMPACT LIST
   ============================================================ */

.impact-list {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


.impact-item {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 17px;

    padding:
        23px;

    border:
        1px solid
        rgba(60,179,113,0.14);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.57);

    box-shadow:
        0 11px 28px
        rgba(31,78,48,0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.impact-item:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(30,76,48,0.10);
}


.impact-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color:
        #ffffff;

    background:
        var(--primary-green);

    font-size: 1.15rem;
}


.impact-icon-blue {
    background:
        var(--dark-blue);
}


.impact-text {
    position: relative;
}


.impact-number {
    position: absolute;

    top: -5px;
    right: 0;

    color:
        rgba(46,139,87,0.10);

    font-family:
        'Poppins',
        sans-serif;

    font-size: 2.6rem;

    font-weight: 700;

    line-height: 1;
}


.impact-text h3 {
    position: relative;

    margin:
        0 0 7px;

    padding-right: 45px;

    color:
        #2a6747;

    font-size: 1rem;

    line-height: 1.4;
}


.impact-text p {
    margin: 0;

    color:
        #607267;

    font-size: 0.86rem;

    line-height: 1.72;
}


/* ============================================================
   TRUST BOX
   ============================================================ */

.donation-trust-box {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 13px;

    margin-top: 23px;

    padding:
        18px 20px;

    border:
        1px dashed
        rgba(60,179,113,0.34);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.38);
}


.donation-trust-box i {
    margin-top: 4px;

    color:
        var(--primary-green);
}


.donation-trust-box p {
    margin: 0;

    color:
        #567064;

    font-size: 0.82rem;

    line-height: 1.7;
}


/* ============================================================
   DONATION CARD
   ============================================================ */

.donation-card {
    position: sticky;

    top: 105px;

    padding:
        34px;

    border:
        1px solid
        rgba(60,179,113,0.15);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.76);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 25px 60px
        rgba(28,75,47,0.12);
}


.donation-card-header {
    margin-bottom: 29px;
}


.donation-card-header > span {
    display: block;

    margin-bottom: 7px;

    color:
        var(--primary-green);

    font-size: 0.69rem;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.donation-card-header h2 {
    margin:
        0 0 7px;

    color:
        #225d3e;

    font-size: 1.75rem;
}


.donation-card-header p {
    margin: 0;

    color:
        #687b70;

    font-size: 0.84rem;

    line-height: 1.65;
}


/* ============================================================
   FORM
   ============================================================ */

.form-group {
    margin-bottom: 25px;
}


.form-label {
    display: block;

    margin-bottom: 10px;

    color:
        #345d46;

    font-size: 0.83rem;

    font-weight: 700;
}


/* ============================================================
   FREQUENCY
   ============================================================ */

.freq-toggle {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 5px;

    padding:
        5px;

    border-radius: 12px;

    background:
        #e7f1eb;
}


.freq-btn {
    padding:
        12px;

    border: 0;

    border-radius: 9px;

    background:
        transparent;

    color:
        #5b6f63;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.freq-btn.active {
    color:
        #ffffff;

    background:
        var(--primary-green);

    box-shadow:
        0 8px 20px
        rgba(60,179,113,0.20);
}


/* ============================================================
   AMOUNTS
   ============================================================ */

.amount-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.amount-btn {
    min-height: 54px;

    border:
        1px solid
        #dce8e0;

    border-radius: 11px;

    background:
        #ffffff;

    color:
        #365b46;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.91rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.amount-btn:hover,
.amount-btn.active {

    border-color:
        var(--primary-green);

    color:
        #216b44;

    background:
        #e9f7ef;

    box-shadow:
        inset 0 0 0 1px
        rgba(60,179,113,0.18);
}


/* ============================================================
   CUSTOM AMOUNT
   ============================================================ */

.custom-amount-wrapper {
    position: relative;

    display: none;

    margin-top: 12px;
}


.custom-amount-wrapper.active {
    display: block;
}


.currency-symbol {
    position: absolute;

    left: 16px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        #2e7d52;

    font-weight: 700;
}


.custom-amount-input {
    padding-left:
        36px !important;
}


/* ============================================================
   INPUTS
   ============================================================ */

.form-input {
    width: 100%;

    min-height: 50px;

    padding:
        12px 14px;

    border:
        1px solid
        #d7e3db;

    border-radius: 11px;

    outline: none;

    background:
        #ffffff;

    color:
        #354d40;

    font-family:
        'Open Sans',
        sans-serif;

    font-size: 0.88rem;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.form-input:focus {
    border-color:
        var(--primary-green);

    box-shadow:
        0 0 0 3px
        rgba(60,179,113,0.10);
}


/* ============================================================
   PAYMENT OPTIONS
   ============================================================ */

.payment-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px;
}


.payment-option-btn {
    display: grid;

    grid-template-columns:
        auto 1fr;

    align-items: center;

    gap: 11px;

    min-height: 85px;

    padding:
        13px;

    border:
        1px solid
        #dbe6df;

    border-radius: 12px;

    background:
        #ffffff;

    color:
        #426051;

    text-align: left;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.payment-option-btn.active {
    border-color:
        var(--primary-green);

    background:
        #edf9f2;

    box-shadow:
        inset 0 0 0 1px
        rgba(60,179,113,0.13);
}


.payment-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color:
        #ffffff;

    background:
        var(--dark-green);
}


.payment-option-btn:nth-child(2)
.payment-icon {

    background:
        var(--dark-blue);
}


.payment-option-btn strong {
    display: block;

    margin-bottom: 2px;

    font-size: 0.79rem;
}


.payment-option-btn span {
    display: block;

    color:
        #77887f;

    font-size: 0.66rem;

    line-height: 1.4;
}


/* ============================================================
   DONOR FIELDS
   ============================================================ */

.donor-fields {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.input-group {
    position: relative;
}


.input-group i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        #76a287;

    font-size: 0.78rem;
}


.input-group .form-input {
    padding-left:
        39px;
}


/* ============================================================
   SUMMARY
   ============================================================ */

.donation-summary {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;

    margin-bottom: 20px;
}


.donation-summary > div {
    padding:
        14px 15px;

    border-radius: 11px;

    background:
        #eef6f1;
}


.donation-summary span {
    display: block;

    margin-bottom: 3px;

    color:
        #78897f;

    font-size: 0.66rem;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.donation-summary strong {
    display: block;

    color:
        #275d40;

    font-size: 0.87rem;
}


/* ============================================================
   SUBMIT BUTTON
   ============================================================ */

.submit-donate-btn {
    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        14px 18px;

    border: 0;

    border-radius: 12px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #3cb371
        );

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.92rem;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 13px 28px
        rgba(46,139,87,0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.submit-donate-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 36px
        rgba(46,139,87,0.28);
}


.submit-donate-btn
.fa-arrow-right {

    margin-left: auto;
}


/* ============================================================
   SECURITY NOTE
   ============================================================ */

.donation-security {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 12px;

    color:
        #7a8a81;

    font-size: 0.67rem;
}


.donation-security i {
    color:
        var(--primary-green);
}


/* ============================================================
   BOTTOM IMPACT STRIP
   ============================================================ */

.donate-impact-strip {
    padding:
        58px 0;

    background:
        linear-gradient(
            90deg,
            #cde7d7,
            #d5eaf1
        );
}


.donate-impact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.donate-impact-grid > div {
    min-height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        17px;

    border:
        1px solid
        rgba(255,255,255,0.55);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.52);

    color:
        #2b6243;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;
}


.donate-impact-grid i {
    color:
        var(--primary-green);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 992px) {

    .donation-wrapper {
        grid-template-columns: 1fr;
    }


    .donation-card {
        position: static;
    }


    .donate-impact-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .donate-hero {
        min-height: 450px;
    }


    .donate-hero-content {
        padding:
            70px 0;
    }


    .donate-hero h1 {
        font-size: 2.55rem;
    }


    .donation-section {
        padding:
            70px 0 85px;
    }


    .donation-card {
        padding:
            27px 22px;
    }


    .payment-options {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .donate-hero {
        min-height: 420px;
    }


    .donate-hero h1 {
        font-size: 2.15rem;
    }


    .donate-hero-points {
        align-items: flex-start;

        flex-direction: column;
    }


    .amount-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .donation-summary {
        grid-template-columns: 1fr;
    }


    .donate-impact-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .impact-item,
    .submit-donate-btn,
    .freq-btn,
    .amount-btn,
    .payment-option-btn {

        transition:
            none !important;
    }

}