/* =========================================================
   GLOBAL RELIEF UNITY
   DONATE PAGE
========================================================= */


/* =========================================================
   PAGE WRAPPER
========================================================= */

.donate-page {
    width: 100%;
}

.donate-page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COMMON
========================================================= */

.donate-section-eyebrow {
    margin: 0 0 12px;
    color: #16733a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.donate-section-heading {
    margin: 0;
    color: #142019;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.donate-section-description {
    max-width: 720px;
    margin: 16px 0 0;
    color: #66736c;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   INTRO
========================================================= */

.donate-intro-section {
    padding: 78px 0 70px;
}

.donate-intro-content {
    max-width: 850px;
}

.donate-intro-content h1 {
    margin: 0 0 20px;
    color: #142019;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.8px;
}

.donate-intro-content > p:last-child {
    max-width: 780px;
    margin: 0;
    color: #5f6d65;
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   MAIN DONATION SECTION
========================================================= */

.donate-main-section {
    padding: 78px 0 84px;
    background: #f7faf8;
    border-top: 1px solid #e1e9e4;
    border-bottom: 1px solid #e1e9e4;
}

.donate-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.75fr);
    gap: 78px;
    align-items: start;
}


/* =========================================================
   DONATION INFORMATION
========================================================= */

.donate-info-column {
    padding-top: 18px;
}

.donate-info-column h2 {
    max-width: 580px;
    margin: 0 0 18px;
    color: #142019;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.donate-info-intro {
    max-width: 600px;
    margin: 0;
    color: #65726b;
    font-size: 16px;
    line-height: 1.75;
}


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

.donate-steps {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.donate-step {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dce6df;
}

.donate-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.donate-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #16733a;
    background: #e7f2eb;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.donate-step-content h3 {
    margin: 1px 0 7px;
    color: #142019;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.donate-step-content p {
    margin: 0;
    color: #69766f;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   INFO LINKS
========================================================= */

.donate-info-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.donate-info-links a {
    color: #16733a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.donate-info-links a:hover {
    color: #125e30;
    text-decoration: underline;
}


/* =========================================================
   DONATION FORM CARD
========================================================= */

.donate-form-column {
    position: sticky;
    top: 30px;
}

.donate-form-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid #dce6df;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(20, 32, 25, 0.07);
}

.donate-form-header {
    padding-bottom: 24px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5ece7;
}

.donate-form-label {
    margin: 0 0 9px;
    color: #16733a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.donate-form-header h2 {
    margin: 0 0 7px;
    color: #142019;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.donate-form-header > p:last-child {
    margin: 0;
    color: #7a867f;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.donate-form {
    display: grid;
    gap: 18px;
}

.donate-form-group {
    display: flex;
    flex-direction: column;
}

.donate-form-group label {
    margin-bottom: 8px;
    color: #25342c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.donate-form-group input,
.donate-form-group select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: #142019;
    background: #ffffff;
    border: 1px solid #d6e1da;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    box-sizing: border-box;
}

.donate-form-group input::placeholder {
    color: #9aa59f;
}

.donate-form-group input:hover,
.donate-form-group select:hover {
    border-color: #b9cbbf;
}

.donate-form-group input:focus,
.donate-form-group select:focus {
    border-color: #16733a;
    box-shadow: 0 0 0 3px rgba(22, 115, 58, 0.10);
}

.donate-form-group select {
    cursor: pointer;
}


/* =========================================================
   AMOUNT INPUT
========================================================= */

.donate-amount-input {
    display: flex;
    align-items: center;
    min-height: 48px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d6e1da;
    border-radius: 8px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.donate-amount-input:focus-within {
    border-color: #16733a;
    box-shadow: 0 0 0 3px rgba(22, 115, 58, 0.10);
}

.donate-amount-input span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    color: #526158;
    background: #f5f9f6;
    border-right: 1px solid #e1e9e4;
    font-size: 15px;
    font-weight: 700;
    align-self: stretch;
}

.donate-amount-input input {
    min-height: 46px;
    padding: 0 13px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.donate-amount-input input:focus {
    box-shadow: none;
}


/* =========================================================
   QUICK AMOUNTS
========================================================= */

.donate-quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: -3px;
}

.donate-quick-amount {
    min-height: 40px;
    padding: 0 8px;
    color: #16733a;
    background: #f5f9f6;
    border: 1px solid #dce7df;
    border-radius: 7px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.donate-quick-amount:hover {
    color: #ffffff;
    background: #16733a;
    border-color: #16733a;
}

.donate-quick-amount.active {
    color: #ffffff;
    background: #16733a;
    border-color: #16733a;
}


/* =========================================================
   SUBMIT
========================================================= */

.donate-submit-button {
    width: 100%;
    min-height: 50px;
    margin-top: 2px;
    padding: 0 20px;
    color: #ffffff;
    background: #16733a;
    border: 1px solid #16733a;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.donate-submit-button:hover {
    background: #125e30;
    border-color: #125e30;
    transform: translateY(-1px);
}

.donate-form-note {
    margin: -2px 0 0;
    color: #8a958f;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}


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

.donate-methods-section {
    padding: 82px 0;
}

.donate-section-heading-wrap {
    max-width: 800px;
    margin-bottom: 38px;
}

.donate-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.donate-method-card {
    min-height: 250px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e9e4;
    border-radius: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.donate-method-card:hover {
    transform: translateY(-3px);
    border-color: #cbdad1;
    box-shadow: 0 12px 30px rgba(20, 32, 25, 0.07);
}

.donate-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 23px;
    color: #16733a;
    background: #eaf4ed;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.3px;
}

.donate-method-card h3 {
    margin: 0 0 10px;
    color: #142019;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.donate-method-card p {
    margin: 0;
    color: #69766f;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIBLE GIVING
========================================================= */

.donate-responsible-section {
    padding: 82px 0;
    background: #f5f9f6;
    border-top: 1px solid #e1e9e4;
    border-bottom: 1px solid #e1e9e4;
}

.donate-responsible-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 75px;
    align-items: start;
}

.donate-responsible-content {
    max-width: 560px;
}

.donate-responsible-content h2 {
    margin: 0 0 18px;
    color: #142019;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.donate-responsible-content > p:last-child {
    margin: 0;
    color: #65726b;
    font-size: 16px;
    line-height: 1.75;
}

.donate-responsible-points {
    display: grid;
    gap: 22px;
}

.donate-responsible-point {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dce6df;
}

.donate-responsible-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.donate-responsible-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #16733a;
    background: #e7f2eb;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.donate-responsible-point h3 {
    margin: 1px 0 7px;
    color: #142019;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.donate-responsible-point p {
    margin: 0;
    color: #69766f;
    font-size: 14px;
    line-height: 1.7;
}


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

.donate-final-cta {
    padding: 82px 0;
}

.donate-final-cta-inner {
    padding: 54px 58px;
    background: #142019;
    border-radius: 22px;
    text-align: center;
}

.donate-final-cta-inner .donate-section-eyebrow {
    color: #8fd1a6;
}

.donate-final-cta-inner h2 {
    max-width: 760px;
    margin: 0 auto 14px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.donate-final-cta-inner > p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #c6d1ca;
    font-size: 15px;
    line-height: 1.7;
}

.donate-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
}

.donate-primary-button,
.donate-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 0 23px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.donate-primary-button {
    color: #ffffff;
    background: #16733a;
    border: 1px solid #16733a;
}

.donate-primary-button:hover {
    color: #ffffff;
    background: #125e30;
    border-color: #125e30;
    transform: translateY(-1px);
}

.donate-secondary-button {
    color: #ffffff;
    background: transparent;
    border: 1px solid #5d6d63;
}

.donate-secondary-button:hover {
    color: #ffffff;
    background: #1d2b23;
    border-color: #7b8a81;
    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .donate-page-container {
        width: min(100% - 32px, 760px);
    }

    .donate-intro-section {
        padding: 64px 0 60px;
    }

    .donate-intro-content h1 {
        font-size: 39px;
    }

    .donate-main-section {
        padding: 65px 0 70px;
    }

    .donate-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .donate-info-column {
        padding-top: 0;
    }

    .donate-form-column {
        position: static;
    }

    .donate-form-card {
        max-width: 650px;
    }

    .donate-methods-section,
    .donate-responsible-section {
        padding: 65px 0;
    }

    .donate-methods-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .donate-method-card {
        min-height: auto;
    }

    .donate-responsible-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .donate-responsible-content {
        max-width: 700px;
    }

    .donate-final-cta {
        padding: 65px 0;
    }

    .donate-final-cta-inner {
        padding: 46px 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .donate-page-container {
        width: calc(100% - 28px);
    }

    .donate-section-eyebrow {
        margin-bottom: 9px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .donate-section-heading {
        font-size: 29px;
    }

    .donate-section-description {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.7;
    }


    /* Intro */

    .donate-intro-section {
        padding: 48px 0 50px;
    }

    .donate-intro-content h1 {
        margin-bottom: 15px;
        font-size: 31px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .donate-intro-content > p:last-child {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Main */

    .donate-main-section {
        padding: 52px 0 58px;
    }

    .donate-main-grid {
        gap: 32px;
    }

    .donate-info-column h2 {
        margin-bottom: 15px;
        font-size: 29px;
    }

    .donate-info-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .donate-steps {
        gap: 18px;
        margin-top: 29px;
    }

    .donate-step {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 18px;
    }

    .donate-step-number {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .donate-step-content h3 {
        font-size: 17px;
    }

    .donate-step-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .donate-info-links {
        gap: 18px;
        margin-top: 27px;
    }

    .donate-info-links a {
        font-size: 13px;
    }


    /* Form */

    .donate-form-card {
        padding: 25px 21px;
        border-radius: 16px;
    }

    .donate-form-header {
        padding-bottom: 20px;
        margin-bottom: 21px;
    }

    .donate-form-header h2 {
        font-size: 24px;
    }

    .donate-form {
        gap: 16px;
    }

    .donate-form-group label {
        margin-bottom: 7px;
        font-size: 12px;
    }

    .donate-form-group input,
    .donate-form-group select {
        min-height: 46px;
        font-size: 13px;
    }

    .donate-amount-input {
        min-height: 46px;
    }

    .donate-amount-input input {
        min-height: 44px;
    }

    .donate-quick-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .donate-quick-amount {
        min-height: 39px;
    }

    .donate-submit-button {
        min-height: 48px;
    }


    /* Payment Methods */

    .donate-methods-section {
        padding: 52px 0;
    }

    .donate-section-heading-wrap {
        margin-bottom: 27px;
    }

    .donate-methods-grid {
        gap: 14px;
    }

    .donate-method-card {
        padding: 25px;
        border-radius: 15px;
    }

    .donate-method-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 19px;
    }

    .donate-method-card h3 {
        font-size: 19px;
    }

    .donate-method-card p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* Responsible Giving */

    .donate-responsible-section {
        padding: 52px 0;
    }

    .donate-responsible-grid {
        gap: 32px;
    }

    .donate-responsible-content h2 {
        font-size: 29px;
    }

    .donate-responsible-content > p:last-child {
        font-size: 14px;
        line-height: 1.7;
    }

    .donate-responsible-points {
        gap: 18px;
    }

    .donate-responsible-point {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 18px;
    }

    .donate-responsible-number {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .donate-responsible-point h3 {
        font-size: 17px;
    }

    .donate-responsible-point p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* Final CTA */

    .donate-final-cta {
        padding: 52px 0;
    }

    .donate-final-cta-inner {
        padding: 38px 23px;
        border-radius: 17px;
    }

    .donate-final-cta-inner h2 {
        font-size: 27px;
    }

    .donate-final-cta-inner > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .donate-final-actions {
        flex-direction: column;
        width: 100%;
    }

    .donate-primary-button,
    .donate-secondary-button {
        width: 100%;
        min-height: 46px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .donate-page-container {
        width: calc(100% - 22px);
    }

    .donate-intro-content h1 {
        font-size: 28px;
    }

    .donate-section-heading {
        font-size: 26px;
    }

    .donate-info-column h2,
    .donate-responsible-content h2 {
        font-size: 26px;
    }

    .donate-form-card {
        padding: 22px 18px;
    }

    .donate-form-header h2 {
        font-size: 22px;
    }

    .donate-method-card {
        padding: 22px;
    }

    .donate-final-cta-inner {
        padding: 34px 18px;
    }

    .donate-final-cta-inner h2 {
        font-size: 24px;
    }

}