/* =========================================================
   SUNRISE DONATE PAGE REDESIGN
   ========================================================= */

.donate-redesign {
    --donate-blue: #284D88;
    --donate-blue-deep: #0B2C52;
    --donate-blue-mid: #284D88;
    --donate-blue-bright: #3F6EAE;
    --donate-gold: #F7CA42;
    --donate-cream: #f8f5ed;
    --donate-soft: #f4f7fb;
    --donate-border: #d9e2ec;
    --donate-text: #21384f;
    --donate-white: #ffffff;
    --donate-shadow: 0 24px 60px rgba(5, 42, 86, 0.10);
    background: #fff;
    color: var(--donate-text);
}

.donate-redesign *,
.donate-redesign *::before,
.donate-redesign *::after {
    box-sizing: border-box;
}

.donate-redesign a {
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
}

.donate-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--donate-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.donate-section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.donate-section-heading h2,
.donate-faq__intro h2 {
    margin: 0;
    color: var(--donate-blue);
    font-size: clamp(2.15rem, 4vw, 3.85rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.donate-section-heading p,
.donate-faq__intro p {
    max-width: 700px;
    margin: 1.1rem auto 0;
    color: var(--donate-text);
    font-size: 1.06rem;
    line-height: 1.8;
}


/* =========================================================
   HERO
   ========================================================= */

.donate-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 6rem) 0 clamp(3.8rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 8% 20%, rgba(63, 110, 174, 0.24), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(40, 77, 136, 0.28), transparent 34%),
        linear-gradient(135deg, var(--donate-blue-deep) 0%, #143B69 52%, var(--donate-blue) 100%);
}

.donate-hero::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: -12rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.donate-hero__inner {
    position: relative;
    z-index: 1;
}

.donate-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    font-weight: 700;
}

.donate-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.donate-breadcrumbs a:hover {
    text-decoration: underline;
}

.donate-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: clamp(2.25rem, 5vw, 5rem);
    align-items: center;
}

.donate-hero__content h1 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 5.6vw, 5.85rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.donate-hero__lead {
    max-width: 640px;
    margin: 1.5rem 0 0;
    color: #fff;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 650;
    line-height: 1.55;
}

.donate-hero__text {
    max-width: 640px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 1rem;
    line-height: 1.76;
}

.donate-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.45rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.donate-btn:hover {
    transform: translateY(-2px);
}

.donate-btn--gold {
    background: var(--donate-gold);
    color: var(--donate-blue) !important;
    box-shadow: 0 14px 34px rgba(5, 42, 86, 0.18);
}

.donate-btn--outline {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
}

.donate-btn--outline:hover {
    background: rgba(255, 255, 255, 0.11);
}

.donate-hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.donate-hero__highlights li {
    position: relative;
    padding: 0.95rem 0.95rem 0.95rem 2.15rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.45;
}

.donate-hero__highlights li::before {
    content: "✓";
    position: absolute;
    left: 0.95rem;
    top: 0.95rem;
    color: var(--donate-gold);
    font-weight: 900;
}

.donate-hero__media {
    position: relative;
    min-height: 0;
    padding-bottom: 40px;
}

.donate-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 8;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.24);
}

.donate-hero__media-card {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 72px);
    max-width: 440px;
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.donate-hero__media-card strong,
.donate-hero__media-card span {
    display: block;
}

.donate-hero__media-card strong {
    color: var(--donate-blue);
    font-size: 1rem;
    line-height: 1.3;
}

.donate-hero__media-card span {
    margin-top: 0.28rem;
    color: #5c6f84;
    font-size: 0.9rem;
}


/* =========================================================
   PROOF / TRUST STRIP
   ========================================================= */

.donate-proof {
    padding: clamp(4.2rem, 7vw, 6.2rem) 0;
    background: var(--donate-soft);
}

.donate-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.donate-proof__card {
    position: relative;
    min-height: 100%;
    padding: 1.7rem;
    overflow: hidden;
    border: 1px solid var(--donate-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--donate-shadow);
}

.donate-proof__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--donate-blue), var(--donate-gold));
}

.donate-proof__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 40px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(40, 77, 136, 0.10);
    color: var(--donate-blue);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.donate-proof__card h2 {
    margin: 1rem 0 0;
    color: var(--donate-blue);
    font-size: 1.3rem;
    line-height: 1.2;
}

.donate-proof__card p {
    margin: 0.8rem 0 0;
    color: var(--donate-text);
    line-height: 1.7;
}


/* =========================================================
   PRIMARY DONATION AREA
   ========================================================= */

.donate-primary {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: #fff;
}

.donate-primary__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 1.5rem;
    align-items: start;
}

#donation-form,
#donate-video {
    scroll-margin-top: 120px;
}

.donate-form__card,
.donate-side__card {
    border: 1px solid var(--donate-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--donate-shadow);
}

.donate-form__card {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.donate-form__header h2,
.donate-side__card h2 {
    margin: 0;
    color: var(--donate-blue);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.donate-form__header p,
.donate-side__card p {
    margin: 1rem 0 0;
    color: var(--donate-text);
    line-height: 1.78;
}

.donate-form__quick-help {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.donate-form__quick-help span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(40, 77, 136, 0.10);
    color: var(--donate-blue);
    font-size: 0.82rem;
    font-weight: 700;
}

.donation-embed {
    margin-top: 1.4rem;
    overflow: hidden;
    border: 1px solid var(--donate-border);
    border-radius: 24px;
    background: #fff;
}

.donation-embed iframe {
    display: block;
    width: 100%;
    min-height: 1225px;
    border: 0;
    background: #fff;
}

.embed-fallback {
    margin: 1rem 0 0;
    color: #56687c;
    font-size: 0.95rem;
    line-height: 1.7;
}

.embed-fallback a {
    color: var(--donate-blue);
}

.donate-side {
    display: grid;
    gap: 1.25rem;
}

.donate-side__proof-stack {
    display: grid;
    gap: 0.9rem;
}

.donate-side__proof-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(40, 77, 136, 0.14);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 14px 34px rgba(11, 44, 82, 0.07);
}

.donate-side__proof-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--donate-blue),
        var(--donate-gold)
    );
}

.donate-side__proof-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 40px;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(40, 77, 136, 0.10);
    color: var(--donate-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.donate-side__proof-card h3 {
    margin: 0;
    color: var(--donate-blue);
    font-size: 1.08rem;
    line-height: 1.25;
}

.donate-side__proof-card p {
    margin: 0.45rem 0 0;
    color: var(--donate-text);
    font-size: 0.92rem;
    line-height: 1.58;
}

.donate-side__phone {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: var(--donate-blue);
    color: #fff;
    box-shadow: 0 14px 34px rgba(11, 44, 82, 0.12);
}

.donate-side__phone span {
    font-weight: 700;
}

.donate-side__phone a {
    color: var(--donate-gold) !important;
    font-weight: 900;
    text-decoration: none;
}

.donate-side__phone a:hover {
    text-decoration: underline;
}


.donate-side__card {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
}

.donate-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--donate-blue), var(--donate-gold));
}

.donate-video__embed {
    margin-top: 1.15rem;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.donate-video__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.donate-trust__list {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.donate-trust__list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--donate-text);
    line-height: 1.65;
}

.donate-trust__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--donate-blue-bright);
    font-weight: 900;
}

.donate-trust__call {
    margin-top: 1.1rem !important;
    font-weight: 700;
}

.donate-trust__call a {
    color: var(--donate-blue);
}


/* =========================================================
   OTHER WAYS TO GIVE
   ========================================================= */

.donate-ways {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        linear-gradient(180deg, #FBF8EF 0%, #F7F3E8 100%);
}

.donate-ways__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.donate-way-card {
    display: block;
    min-height: 100%;
    padding: 1.55rem;
    border: 1px solid rgba(5, 42, 86, 0.08);
    border-radius: 24px;
    background: #fff;
    color: inherit;
    text-decoration: none !important;
    box-shadow: 0 18px 48px rgba(5, 42, 86, 0.07);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.donate-way-card:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 77, 136, 0.30);
    box-shadow: 0 26px 58px rgba(11, 44, 82, 0.13);
}

.donate-way-card h3 {
    margin: 0;
    color: var(--donate-blue);
    font-size: 1.28rem;
    line-height: 1.25;
}

.donate-way-card p {
    margin: 0.85rem 0 0;
    color: var(--donate-text);
    line-height: 1.72;
}

.donate-way-card span {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--donate-blue);
    font-weight: 800;
}


/* =========================================================
   FAQ
   ========================================================= */

.donate-faq {
    padding: clamp(4.5rem, 8vw, 7rem) 0 7rem;
    background: #fff;
}

.donate-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 2rem;
    align-items: start;
}

.donate-faq__items {
    display: grid;
    gap: 1rem;
}

.donate-faq__item {
    position: relative;
    padding: 1.45rem 1.5rem 1.45rem 1.7rem;
    overflow: hidden;
    border: 1px solid rgba(40, 77, 136, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, #F7F9FC 0%, #F2F6FB 100%);
}

.donate-faq__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--donate-blue);
}

.donate-faq__item h3 {
    margin: 0;
    color: var(--donate-blue);
    font-size: 1.14rem;
    line-height: 1.3;
}

.donate-faq__item p {
    margin: 0.8rem 0 0;
    color: var(--donate-text);
    line-height: 1.72;
}

.donate-faq__item a {
    color: var(--donate-blue);
}


/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */

.donate-mobile-cta {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 40;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    max-width: 420px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--donate-gold);
    box-shadow: 0 18px 42px rgba(5, 42, 86, 0.22);
    color: var(--donate-blue) !important;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none !important;
}


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

@media (max-width: 1180px) {

    .donate-hero__grid {
        grid-template-columns: 1fr;
    }

    .donate-hero__content {
        max-width: 820px;
    }

    .donate-hero__media {
        max-width: 760px;
        margin: 0 auto;
    }

    .donate-hero__media img {
        aspect-ratio: 5 / 4;
    }

    .donate-hero__highlights {
        grid-template-columns: 1fr;
    }

    .donate-primary__grid,
    .donate-faq__grid {
        grid-template-columns: 1fr;
    }

    .donate-ways__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {

    .donate-hero {
        padding-top: 2.2rem;
        padding-bottom: 4rem;
    }

    .donate-hero__content h1 {
        font-size: clamp(2.8rem, 13vw, 4.4rem);
        line-height: 0.96;
    }

    .donate-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .donate-btn {
        width: 100%;
    }

    .donate-hero__media img {
        aspect-ratio: 4 / 5;
        border-radius: 22px;
    }

    .donate-hero__media-card {
        width: calc(100% - 32px);
    }

    .donate-proof__grid,
    .donate-ways__grid {
        grid-template-columns: 1fr;
    }

    .donation-embed iframe {
        min-height: 1180px;
    }

    .donate-mobile-cta {
        display: inline-flex;
    }

    .donate-faq {
        padding-bottom: 8.5rem;
    }
}

@media (max-width: 480px) {

    .donate-side__card,
    .donate-form__card,
    .donate-proof__card,
    .donate-way-card,
    .donate-faq__item {
        border-radius: 18px;
    }

    .donation-embed {
        border-radius: 18px;
    }

    .donation-embed iframe {
        min-height: 1120px;
    }
}


/* =========================================================
   BRAND MICRO-ACCENTS
   ========================================================= */

.donate-btn--gold,
.donate-mobile-cta {
    background: var(--donate-gold);
}

.donate-btn--gold:hover,
.donate-mobile-cta:hover {
    background: #FFD85F;
}

.donate-section-heading .donate-eyebrow,
.donate-faq__intro .donate-eyebrow,
.donate-form__header .donate-eyebrow,
.donate-side__card .donate-eyebrow {
    color: var(--donate-blue);
}

.donate-hero .donate-eyebrow {
    color: var(--donate-gold);
}

.donate-way-card span::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 2px;
    margin-left: 0.45rem;
    background: var(--donate-gold);
    vertical-align: middle;
    transition: width 180ms ease;
}

.donate-way-card:hover span::after {
    width: 22px;
}


@media (min-width: 1181px) {
    .donate-side {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 760px) {
    .donate-side__proof-card {
        grid-template-columns: 1fr;
    }

    .donate-side__proof-number {
        justify-self: start;
    }

    .donate-side__phone {
        justify-content: flex-start;
    }
}
