/*=========================================================
    BENEFACTOR PAGE
=========================================================*/

/*=========================================================
    HERO
=========================================================*/

.benefactor-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #082342 0%,
            #0b4da1 55%,
            #2f6df6 100%
        );
}

.benefactor-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(47, 109, 246, .28),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 193, 7, .14),
            transparent 35%
        );
}

.benefactor-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 24, 49, .2),
        transparent,
        rgba(4, 24, 49, .2)
    );
}

.benefactor-hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.benefactor-hero-content {
    max-width: 900px;
    margin: auto;
    padding: 120px 20px 70px;
    text-align: center;
    color: #fff;
}

.benefactor-tag,
.section-tag,
.foundation-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.benefactor-tag {
    background: rgba(255, 255, 255, .14);
    color: #ffc107;
}

.benefactor-hero h1 {
    margin: 25px auto 18px;
    color: #fff;
    font-size: 55px;
    line-height: 1.18;
    font-weight: 800;
}

.benefactor-hero-subtitle {
    max-width: 750px;
    margin: auto;
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    line-height: 1.8;
}

.benefactor-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 600;
}

.benefactor-breadcrumb a {
    color: #ffc107;
    text-decoration: none;
    transition: .3s ease;
}

.benefactor-breadcrumb a:hover {
    color: #fff;
}

.benefactor-breadcrumb span {
    color: #fff;
}


/*=========================================================
    GLOBAL CONTAINERS
=========================================================*/

.benefactor-page .container {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}

.benefactor-page section {
    position: relative;
}


/*=========================================================
    INTRO
=========================================================*/

.benefactor-intro {
    padding: 100px 0;
    background: #fff;
}

.benefactor-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.benefactor-image {
    position: relative;
}

.benefactor-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #eef4ff;
    box-shadow: 0 25px 60px rgba(17, 62, 120, .14);
}

.benefactor-image-frame::after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 22px;
    pointer-events: none;
}

.benefactor-image-frame img {
    width: 100%;
    min-height: 550px;
    display: block;
    object-fit: cover;
}

.benefactor-image-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(8, 35, 66, .88);
    backdrop-filter: blur(8px);
    color: #fff;
}

.benefactor-image-caption strong {
    font-size: 16px;
    font-weight: 800;
}

.benefactor-image-caption span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.section-tag {
    background: #eef4ff;
    color: #2f6df6;
}

.benefactor-intro-content h2 {
    margin: 20px 0;
    color: #12355b;
    font-size: 43px;
    line-height: 1.25;
    font-weight: 800;
}

.benefactor-intro-content h2 span,
.section-heading h2 span,
.legacy-content h2 span,
.foundation-content h2 span,
.inspiration-content h2 span,
.benefactor-cta-wrapper h2 span {
    color: #2f6df6;
}

.benefactor-intro-content > p {
    margin: 0 0 17px;
    color: #68768b;
    font-size: 16px;
    line-height: 1.9;
}

.benefactor-highlight {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 22px;
    border-left: 4px solid #ffc107;
    border-radius: 0 15px 15px 0;
    background: #f7faff;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    color: #2f6df6;
}

.benefactor-highlight strong {
    color: #12355b;
    font-size: 15px;
}

.benefactor-highlight p {
    margin: 5px 0 0;
    color: #68768b;
    font-size: 14px;
    line-height: 1.7;
}


/*=========================================================
    SECTION HEADING
=========================================================*/

.section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin: 18px 0;
    color: #12355b;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
}

.section-heading p {
    margin: 0;
    color: #68768b;
    font-size: 17px;
    line-height: 1.8;
}


/*=========================================================
    HISTORY
=========================================================*/

.benefactor-history {
    padding: 110px 0;
    background: #f7faff;
}

.benefactor-timeline {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.benefactor-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        #2f6df6,
        #ffc107
    );
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #f7faff;
    border-radius: 50%;
    background: #2f6df6;
    color: #fff;
    box-shadow: 0 8px 20px rgba(47, 109, 246, .25);
}

.timeline-content {
    padding: 30px;
    border: 1px solid #e5ebf3;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(17, 62, 120, .06);
}

.timeline-year {
    display: inline-block;
    margin-bottom: 10px;
    color: #2f6df6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.timeline-content h3 {
    margin: 0 0 13px;
    color: #12355b;
    font-size: 22px;
    font-weight: 800;
}

.timeline-content p {
    margin: 0 0 12px;
    color: #68768b;
    font-size: 15px;
    line-height: 1.8;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}


/*=========================================================
    FAMILY
=========================================================*/

.benefactor-family {
    padding: 100px 0;
    background: #fff;
}

.family-card {
    max-width: 900px;
    margin: auto;
    padding: 65px 50px;
    text-align: center;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            #f7faff,
            #fff
        );
    border: 1px solid #e5ebf3;
    box-shadow: 0 20px 50px rgba(17, 62, 120, .07);
}

.family-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #eef4ff;
    color: #2f6df6;
    font-size: 27px;
}

.family-card h2 {
    margin: 18px 0;
    color: #12355b;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.family-card h2 span {
    color: #2f6df6;
}

.family-card > p {
    max-width: 700px;
    margin: 0 auto;
    color: #68768b;
    font-size: 16px;
    line-height: 1.8;
}

.family-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.family-stats div {
    padding: 25px 15px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5ebf3;
}

.family-stats strong {
    display: block;
    color: #2f6df6;
    font-size: 34px;
    font-weight: 800;
}

.family-stats span {
    display: block;
    margin-top: 5px;
    color: #68768b;
    font-size: 13px;
    font-weight: 600;
}


/*=========================================================
    PHILANTHROPY
=========================================================*/

.benefactor-philanthropy {
    padding: 110px 0;
    background: #f7faff;
}

.philanthropy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.philanthropy-card {
    padding: 38px 25px;
    text-align: center;
    border: 1px solid #e5ebf3;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(17, 62, 120, .06);
    transition: .35s ease;
}

.philanthropy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(17, 62, 120, .11);
}

.philanthropy-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef4ff;
    color: #2f6df6;
    font-size: 25px;
}

.philanthropy-card h3 {
    margin: 0 0 12px;
    color: #12355b;
    font-size: 19px;
    font-weight: 800;
}

.philanthropy-card p {
    margin: 0;
    color: #68768b;
    font-size: 14px;
    line-height: 1.8;
}


/*=========================================================
    LEGACY
=========================================================*/

.benefactor-legacy {
    padding: 110px 0;
    background: #fff;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.legacy-image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(17, 62, 120, .13);
}

.legacy-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.legacy-image:hover img {
    transform: scale(1.04);
}

.legacy-content h2 {
    margin: 20px 0;
    color: #12355b;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
}

.legacy-content p {
    margin: 0 0 17px;
    color: #68768b;
    font-size: 16px;
    line-height: 1.9;
}


/*=========================================================
    FOUNDATION
=========================================================*/

.benefactor-foundation {
    padding: 110px 0;
    background: #f7faff;
}

.foundation-box {
    position: relative;
    overflow: hidden;
    padding: 80px 70px;
    border-radius: 35px;
    background:
        linear-gradient(
            135deg,
            #082342,
            #0b4da1 55%,
            #2f6df6
        );
    box-shadow: 0 25px 65px rgba(17, 62, 120, .15);
}

.foundation-box::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(255, 193, 7, .08);
}

.foundation-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.foundation-tag {
    background: rgba(255, 255, 255, .13);
    color: #ffc107;
}

.foundation-content h2 {
    margin: 22px 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 800;
}

.foundation-content h2 span {
    color: #ffc107;
}

.foundation-content p {
    max-width: 820px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.9;
}

.benefactor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 25px;
    border-radius: 50px;
    background: #ffc107;
    color: #12355b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .35s ease;
}

.benefactor-btn:hover {
    transform: translateY(-4px);
    background: #fff;
    color: #12355b;
}


/*=========================================================
    IMPACT
=========================================================*/

.benefactor-impact {
    padding: 110px 0;
    background: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.impact-card {
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
    background: #f7faff;
    border: 1px solid #e5ebf3;
}

.impact-card strong {
    display: block;
    margin-bottom: 10px;
    color: #2f6df6;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.impact-card span {
    display: block;
    color: #68768b;
    font-size: 13px;
    line-height: 1.7;
}


/*=========================================================
    INSPIRATION
=========================================================*/

.benefactor-inspiration {
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            #082342,
            #0b4da1
        );
}

.inspiration-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.inspiration-content .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #ffc107;
}

.inspiration-content h2 {
    margin: 22px 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 800;
}

.inspiration-content h2 span {
    color: #ffc107;
}

.inspiration-content p {
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.9;
}

.inspiration-content blockquote {
    margin: 35px auto 0;
    padding: 25px;
    border-left: 3px solid #ffc107;
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 20px;
    font-style: italic;
}


/*=========================================================
    FULFILLMENT
=========================================================*/

.benefactor-fulfillment {
    padding: 110px 0;
    background: #f7faff;
}

.fulfillment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fulfillment-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #e5ebf3;
    box-shadow: 0 12px 35px rgba(17, 62, 120, .06);
    transition: .35s ease;
}

.fulfillment-card:hover {
    transform: translateY(-7px);
}

.fulfillment-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef4ff;
    color: #2f6df6;
    font-size: 25px;
}

.fulfillment-card h3 {
    margin: 0 0 12px;
    color: #12355b;
    font-size: 21px;
    font-weight: 800;
}

.fulfillment-card p {
    margin: 0;
    color: #68768b;
    font-size: 14px;
    line-height: 1.8;
}


/*=========================================================
    CTA
=========================================================*/

.benefactor-cta {
    padding: 100px 0;
    background: #fff;
}

.benefactor-cta-wrapper {
    padding: 80px 50px;
    text-align: center;
    border-radius: 35px;
    background:
        linear-gradient(
            135deg,
            #0b4da1,
            #2f6df6
        );
    box-shadow: 0 25px 65px rgba(17, 62, 120, .15);
}

.benefactor-cta-wrapper .section-tag {
    background: rgba(255, 255, 255, .13);
    color: #ffc107;
}

.benefactor-cta-wrapper h2 {
    max-width: 800px;
    margin: 22px auto 18px;
    color: #fff;
    font-size: 45px;
    line-height: 1.25;
    font-weight: 800;
}

.benefactor-cta-wrapper p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.9;
}

.benefactor-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.benefactor-primary-btn,
.benefactor-outline-btn {
    min-width: 190px;
    min-height: 55px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .35s ease;
}

.benefactor-primary-btn {
    background: #ffc107;
    color: #12355b;
}

.benefactor-primary-btn:hover {
    transform: translateY(-4px);
    background: #fff;
}

.benefactor-outline-btn {
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: #fff;
}

.benefactor-outline-btn:hover {
    background: #fff;
    color: #12355b;
}


/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {

    .benefactor-hero h1 {
        font-size: 45px;
    }

    .benefactor-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefactor-image {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .philanthropy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legacy-image {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .fulfillment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 768px) {

    .benefactor-hero {
        min-height: 430px;
    }

    .benefactor-hero-content {
        padding: 80px 15px 45px;
    }

    .benefactor-hero h1 {
        font-size: 34px;
    }

    .benefactor-hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .benefactor-breadcrumb {
        gap: 8px;
        font-size: 12px;
    }

    .benefactor-page .container {
        padding: 0 15px;
    }

    .benefactor-intro,
    .benefactor-history,
    .benefactor-family,
    .benefactor-philanthropy,
    .benefactor-legacy,
    .benefactor-foundation,
    .benefactor-impact,
    .benefactor-inspiration,
    .benefactor-fulfillment {
        padding: 70px 0;
    }

    .benefactor-intro-content h2,
    .section-heading h2,
    .legacy-content h2 {
        font-size: 32px;
    }

    .benefactor-image-frame img {
        min-height: 420px;
    }

    .benefactor-image-caption {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .benefactor-highlight {
        padding: 18px;
    }

    .benefactor-timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 42px 1fr;
        gap: 15px;
    }

    .timeline-marker {
        width: 42px;
        height: 42px;
        border-width: 3px;
        font-size: 13px;
    }

    .timeline-content {
        padding: 22px;
        border-radius: 18px;
    }

    .timeline-content h3 {
        font-size: 19px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .family-card {
        padding: 45px 22px;
    }

    .family-card h2 {
        font-size: 31px;
    }

    .family-stats {
        grid-template-columns: 1fr;
    }

    .philanthropy-grid {
        grid-template-columns: 1fr;
    }

    .legacy-image img {
        height: 350px;
    }

    .foundation-box {
        padding: 55px 25px;
        border-radius: 25px;
    }

    .foundation-content h2 {
        font-size: 32px;
    }

    .foundation-content p {
        font-size: 15px;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .impact-card {
        padding: 25px 15px;
    }

    .impact-card strong {
        font-size: 30px;
    }

    .impact-card span {
        font-size: 12px;
    }

    .inspiration-content h2 {
        font-size: 32px;
    }

    .fulfillment-grid {
        grid-template-columns: 1fr;
    }

    .benefactor-cta {
        padding: 70px 0;
    }

    .benefactor-cta-wrapper {
        padding: 55px 22px;
        border-radius: 25px;
    }

    .benefactor-cta-wrapper h2 {
        font-size: 32px;
    }

    .benefactor-cta-wrapper p {
        font-size: 15px;
    }

    .benefactor-cta-buttons {
        flex-direction: column;
    }

    .benefactor-primary-btn,
    .benefactor-outline-btn {
        width: 100%;
    }

}


/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 480px) {

    .benefactor-hero h1 {
        font-size: 30px;
    }

    .benefactor-hero-subtitle {
        font-size: 15px;
    }

    .benefactor-image-frame img {
        min-height: 360px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .foundation-content h2,
    .inspiration-content h2,
    .benefactor-cta-wrapper h2 {
        font-size: 29px;
    }

}