@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

.donate-hero {
    position: relative;
    padding: 105px 0 80px;
    background:
        linear-gradient(135deg, rgba(9, 90, 75, 0.93), rgba(0, 25, 97, 0.90)),
        url("../img/donate-banner.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.donate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.11), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 28%);
    pointer-events: none;
}

.donate-hero .container {
    position: relative;
    z-index: 2;
}

.donate-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.donate-hero__content h1 {
    color: #fff;
    font-size: 3.1rem;
    line-height: 1.08;
    margin-bottom: 16px;
}

.donate-hero__content p {
    color: rgba(255,255,255,0.88);
    max-width: 720px;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.8;
}

.donate-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.donate-hero__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.donate-stat {
    padding: 22px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.donate-stat__label {
    display: block;
    color: rgba(255,255,255,0.80);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 700;
}

.donate-stat__value {
    display: block;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Exo", sans-serif;
}

.donate-stat__value--text {
    font-size: 1.25rem;
    line-height: 1.35;
}

.donate-intro,
.donate-forms,
.donate-quote-section {
    background: #fff;
}

.donate-copy h2 {
    color: #183247;
    margin-bottom: 16px;
}

.donate-copy p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 14px;
}

.donate-copy p:last-child {
    margin-bottom: 0;
}

.donate-grid-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.donate-grid-panel__item {
    min-height: 118px;
    padding: 20px 18px;
    background: #f7f9fc;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donate-grid-panel__item i {
    font-size: 1.85rem;
    color: #095a4b;
}

.donate-grid-panel__item span {
    color: #183247;
    font-weight: 600;
    line-height: 1.5;
}

.donate-impact {
    background: #f7f9fc;
}

.donate-impact-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.05);
    padding: 24px 22px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-impact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 44, 88, 0.08);
}

.donate-impact-card__line {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #095a4b, #001961);
    margin-bottom: 16px;
}

.donate-impact-card h4 {
    color: #183247;
    margin-bottom: 12px;
}

.donate-impact-card p {
    color: #667085;
    line-height: 1.75;
    margin-bottom: 0;
}

.donate-form-card,
.donate-side-card {
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.05);
}

.donate-form-card {
    background: #fff;
    padding: 30px 28px;
}

.donate-side-card {
    background: #fff;
    padding: 24px 22px;
}

.donate-side-card + .donate-side-card {
    margin-top: 18px;
}

.donate-side-card--dark {
    background: linear-gradient(135deg, #0b6b59, #001961);
    border-color: transparent;
}

.donate-side-card--dark h3,
.donate-side-card--dark p,
.donate-side-card--dark .donate-card-eyebrow {
    color: #fff;
}

.donate-card-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #095a4b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

.donate-form-card h2,
.donate-side-card h4,
.donate-side-card h3 {
    color: #183247;
    margin-bottom: 14px;
}

.donate-side-card p {
    color: #667085;
    line-height: 1.75;
}

.donate-option-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.donate-option {
    padding: 20px 20px 18px;
    background: #f7f9fc;
    border: 1px solid #e8eef5;
}

.donate-option__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.donate-option__head h4 {
    color: #183247;
    margin-bottom: 0;
}

.donate-option__head span {
    color: #095a4b;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.donate-option p {
    color: #667085;
    line-height: 1.75;
    margin-bottom: 14px;
}

.donate-quote-box {
    padding: 52px 28px;
    background: linear-gradient(135deg, #f7f9fc, #edf3f8);
    border: 1px solid #e8eef5;
    text-align: center;
    font-family: "Merriweather", sans-serif;
}

.donate-quote {
    margin: 0;
    color: #183247;
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 200;
    max-width: 900px;
    margin-inline: auto;
}

body.theme-dark .donate-intro,
body.theme-dark .donate-forms,
body.theme-dark .donate-quote-section {
    background: #121212;
}

body.theme-dark .donate-impact {
    background: #161616;
}

body.theme-dark .donate-grid-panel__item,
body.theme-dark .donate-impact-card,
body.theme-dark .donate-form-card,
body.theme-dark .donate-side-card,
body.theme-dark .donate-option,
body.theme-dark .donate-quote-box {
    background: #171717 !important;
    color: #d6deea !important;
    border-color: rgba(255,255,255,0.06) !important;
    box-shadow: 0 0 5px #55555559;
}

body.theme-dark .donate-copy h2,
body.theme-dark .donate-impact-card h4,
body.theme-dark .donate-form-card h2,
body.theme-dark .donate-side-card h4,
body.theme-dark .donate-side-card h3,
body.theme-dark .donate-option__head h4,
body.theme-dark .donate-quote {
    color: #ededf3 !important;
}

body.theme-dark .donate-copy p,
body.theme-dark .donate-impact-card p,
body.theme-dark .donate-side-card p,
body.theme-dark .donate-option p,
body.theme-dark .donate-grid-panel__item span {
    color: #c9d4e1 !important;
}

@media (max-width: 991.98px) {
    .donate-hero {
        padding: 88px 0 62px;
    }

    .donate-hero__content h1 {
        font-size: 2.45rem;
    }

    .donate-hero__panel {
        margin-top: 26px;
    }
}

@media (max-width: 767.98px) {
    .donate-hero {
        padding: 74px 0 54px;
    }

    .donate-hero__content h1 {
        font-size: 2rem;
    }

    .donate-hero__panel,
    .donate-grid-panel {
        grid-template-columns: 1fr;
    }

    .donate-form-card,
    .donate-side-card {
        padding: 20px 18px;
    }

    .donate-quote {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .donate-hero__content h1 {
        font-size: 1.8rem;
    }

    .donate-hero__actions {
        flex-direction: column;
    }

    .donate-hero__actions .btn {
        width: 100%;
    }
}