/* =====================================================
   HERO BANNER
===================================================== */

.hero-banner-fw {

    width: 100%;

    height: 88vh;

    min-height: 520px;

    overflow: hidden;

    position: relative;
}

.hero-banner-fw img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    display: block;
}

/* =====================================================
   WHY SECTION
======

=============================================== */
.why-section {

    position: relative;

    overflow: hidden;

    padding: 45px 0;

    background:
        linear-gradient(135deg,
            #fdf8f0 0%,
            #f7f1e7 35%,
            #eef5e8 100%);
}

.section-title {

    font-size: clamp(1.6rem, 3vw, 2rem);

    line-height: 1.08;

    font-weight: 700;

    color: #2d2416;

    margin-bottom: 12px;

    font-family: "Candara", sans-serif;

    text-align: center;
}

.section-desc {

    max-width: 850px;

    margin: auto;

    margin-bottom: 60px;

    font-size: 20px;

    line-height: 1.3;

    color: #5c4a32;

    text-align: center;
}

/* =====================================================
   IMAGE
===================================================== */


/* =====================================================
   WHY GRID
===================================================== */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 26px;
}

/* =====================================================
   CARD
===================================================== */

.why-card {

    position: relative;

    background:
        rgba(255, 255, 255, .82);

    backdrop-filter: blur(12px);

    border-radius: 20px;

    padding: 20px 16px;

    overflow: hidden;
    border:
        1px solid rgba(255, 255, 255, .6);

    transition: .55s ease;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    min-height: 170px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .05);

    opacity: 0;

    transform:
        translateY(80px) scale(.92);
}

/* TOP LINE */

.why-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(90deg,
            #6a9c64,
            #d9a441,
            #79a8ff);
}

/* HOVER */

.why-card:hover {

    transform:
        translateY(-12px) scale(1.02);

    box-shadow:
        0 20px 55px rgba(45, 106, 79, .12);
}

/* =====================================================
   ICON
===================================================== */

.why-icon {

    width: 65px;
    height: 65px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    transition: .45s ease;

    position: relative;
}

/* DIFFERENT COLORS */

.why-card:nth-child(1) .why-icon {

    background:
        linear-gradient(135deg,
            #e6f3dc,
            #d9f0c7);
}

.why-card:nth-child(2) .why-icon {

    background:
        linear-gradient(135deg,
            #fff1d9,
            #ffe4b0);
}

.why-card:nth-child(3) .why-icon {

    background:
        linear-gradient(135deg,
            #e5efff,
            #d2e3ff);
}

.why-card:nth-child(4) .why-icon {

    background:
        linear-gradient(135deg,
            #ffe7ef,
            #ffd2df);
}

.why-card:nth-child(5) .why-icon {

    background:
        linear-gradient(135deg,
            #ede4ff,
            #ddceff);
}

/* ICON HOVER */

.why-card:hover .why-icon {

    transform:
        translateY(-7px) rotate(5deg) scale(1.05);
}

/* SVG */

.why-icon svg {

    width: 30px;
    height: 30px;

    fill: none;

    stroke-width: 2.2;

    stroke-linecap: round;

    stroke-linejoin: round;
}

/* ICON COLORS */

.why-card:nth-child(1) svg {
    stroke: #4d8f2a;
}

.why-card:nth-child(2) svg {
    stroke: #cc8a16;
}

.why-card:nth-child(3) svg {
    stroke: #4378d1;
}

.why-card:nth-child(4) svg {
    stroke: #d45787;
}

.why-card:nth-child(5) svg {
    stroke: #7c55d8;
}

/* =====================================================
   TEXT
===================================================== */

.why-card h4 {

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;

    color: #000;

    margin: 0;

    font-family: "Candara", sans-serif;
}

/* =====================================================
   BIG CARD
===================================================== */

.why-card-wide {

    grid-column: span 2;

    min-height: 155px;
}

/* =====================================================
   IMAGE
===================================================== */

.donor-visual {

    width: 100%;

    height: 400px;

    border-radius: 34px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 18px 60px rgba(0, 0, 0, .08);

    background: #fff;
}

.donor-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1.2s ease;
}

.donor-visual:hover img {

    transform: scale(1.05);
}

/* =====================================================
   BUTTON
===================================================== */

.btn-primary-brand {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    padding: 17px 34px;

    border-radius: 70px;

    background:
        linear-gradient(135deg,
            #6a9c64,
            #3d6e37);

    color: #fff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    transition: .4s ease;

    box-shadow:
        0 12px 28px rgba(62, 107, 56, .22);
}

.btn-primary-brand:hover {

    transform:
        translateY(-5px);

    color: #fff;

    box-shadow:
        0 18px 40px rgba(62, 107, 56, .32);
}

/* =====================================================
   SCROLL ANIMATION
===================================================== */

.why-card.show-card {

    opacity: 1;

    transform:
        translateY(0) scale(1);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px) {

    .donor-visual {

        height: 500px;
    }

    .why-card h4 {

        font-size: 20px;
    }
}

@media(max-width:768px) {

    .why-grid {

        grid-template-columns: 1fr;
    }

    .why-card-wide {

        grid-column: span 1;
    }

    .donor-visual {

        height: 380px;

        margin-top: 10px;
    }

    .why-card {

        min-height: 170px;

        padding: 34px 20px;
    }

    .why-icon {

        width: 72px;
        height: 72px;
    }

    .why-icon svg {

        width: 30px;
        height: 30px;
    }

    .why-card h4 {

        font-size: 19px;
    }

    .btn-primary-brand {

        width: 100%;
    }

    .hero-banner-fw {

        width: 100%;

        height: 30vh;

        min-height: 100px;
        overflow: hidden;

        position: relative;
    }

    .hero-banner-fw img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center center;

        display: block;
    }
}


/* =========================
   IMPACT SECTION
========================= */

.impact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    padding: 120px 0;
}

/* Floating Shapes */

.impact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(255, 210, 120, 0.18);
    top: -80px;
    left: -80px;
    animation: floatY 7s ease-in-out infinite;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: rgba(82, 183, 136, 0.12);
    right: -70px;
    bottom: -70px;
    animation: floatY 8s ease-in-out infinite reverse;
}

/* Title */

.title-wrap {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mini-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(82, 183, 136, .08);
    color: #52b788;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .5px;
}

.section-title {
    font-family: "Candara", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #123524;
    margin-bottom: 1rem;
}

.divider-accent {
    width: 90px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ffd166, #52b788);
}

/* Image */

.volunteer-visual {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .42);
    transform: perspective(1000px) rotateY(-3deg);
    transition: .5s ease;
    z-index: 2;
}

.volunteer-visual:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
}

.volunteer-visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 1s ease;
}

.volunteer-visual:hover img {
    transform: scale(1.08);
}

.volunteer-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .05));
    z-index: 1;
}

/* Cards */

.impact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem;
    margin-bottom: 0.3rem;

    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

    overflow: hidden;
    transition: .4s ease;
    z-index: 2;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.impact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd166, #52b788);
}

/* Icon */

.impact-icon {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ffd166, #52b788);

    color: #fff;
    font-size: 1.4rem;

    box-shadow: 0 12px 25px rgba(82, 183, 136, .25);

    animation: pulseGlow 3s infinite;
}

.impact-icon i {
    position: relative;
    z-index: 2;
}

/* Number */

.impact-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(18, 53, 36, .12);
    min-width: 50px;
}

/* Empty Content Placeholder */

.impact-content h4 {
    margin: 0;
    text-align: justify;
    min-height: 18px;
}

/* Animations */

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeLeft 1s ease forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

/* =====================================================
   IMPACT ICON
===================================================== */

.impact-icon {

    width: 74px;
    height: 74px;

    border-radius: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #eef5e8,
            #dff1d8);

    flex-shrink: 0;

    transition: .4s ease;
}

/* ICON */

.impact-icon i {

    font-size: 32px;

    color: #3e6b38;

    line-height: 1;
}

/* DIFFERENT COLORS */

.impact-card:nth-child(2) .impact-icon {

    background:
        linear-gradient(135deg,
            #fff1d9,
            #ffe4b0);
}

.impact-card:nth-child(2) .impact-icon i {

    color: #d08a14;
}

.impact-card:nth-child(3) .impact-icon {

    background:
        linear-gradient(135deg,
            #e5efff,
            #d2e3ff);
}

.impact-card:nth-child(3) .impact-icon i {

    color: #4378d1;
}

/* HOVER */

.impact-card:hover .impact-icon {

    transform:
        translateY(-5px) rotate(5deg);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 12px 25px rgba(82, 183, 136, .25);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 18px 35px rgba(82, 183, 136, .4);
    }
}

/* Responsive */

@media(max-width:991px) {

    .impact-section {
        padding: 90px 0;
    }

    .volunteer-visual {
        min-height: 220px;
    }

    .section-title {
        font-size: 2.5rem;
    }

}

@media(max-width:576px) {

    .impact-card {
        padding: .8rem;
        gap: .3rem;
    }

    .impact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 18px;
    }

    .impact-num {
        font-size: 1.5rem;
    }

}

/* =========================================================
   GOVERNANCE SECTION
========================================================= */

/* =========================================================
   GOVERNANCE SECTION
========================================================= */

.gov-section {

    position: relative;

    overflow: hidden;

    padding: 60px 0;

    background:
        linear-gradient(135deg,
            #fdf8f0 0%,
            #f7f1e7 40%,
            #eef5e8 100%);
}

/* SOFT GLOW */

.gov-section::before {

    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(164, 213, 170, .18),
            transparent 70%);

    pointer-events: none;
}

.gov-section::after {

    content: "";

    position: absolute;

    bottom: -140px;
    left: -120px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(255, 210, 120, .12),
            transparent 70%);

    pointer-events: none;
}

/* =========================================================
   TITLE
========================================================= */

.gov-section .section-title {

    color: #2d2416;

    text-align: center;

    font-size: clamp(1.6rem, 3.5vw, 2.5rem);

    line-height: 1.1;

    margin-bottom: 20px;

    font-family: "Candara", sans-serif;
}

.gov-section .section-desc {

    color: #5c4a32;

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 60px;

    font-size: 20px;

    line-height: 1.7;
}

/* =========================================================
   GOV ITEM
========================================================= */

.gov-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px 15px;

    margin-bottom: 20px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .75);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(0, 0, 0, .05);

    color: #2d2416;

    font-size: 18px;

    line-height: 1.6;

    overflow: hidden;

    transition: .45s ease;

    opacity: 0;

    transform:
        translateY(70px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .04);
}

/* TOP LINE */

.gov-item::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(90deg,
            #6a9c64,
            #d9a441);
}

/* HOVER */

.gov-item:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
}

/* =========================================================
   ICON BOX
========================================================= */

.gov-item .check {

    width: 60px;
    height: 6-px;

    min-width: 60px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: .4s ease;
}

/* DIFFERENT COLORS */

.gov-item:nth-child(1) .check {

    background:
        linear-gradient(135deg,
            #e5f5e1,
            #d3f0ca);
}

.gov-item:nth-child(2) .check {

    background:
        linear-gradient(135deg,
            #fff1d9,
            #ffe4b0);
}

.gov-item:nth-child(3) .check {

    background:
        linear-gradient(135deg,
            #e5efff,
            #d2e3ff);
}

.gov-item:nth-child(4) .check {

    background:
        linear-gradient(135deg,
            #ffe7ef,
            #ffd2df);
}

/* ICON */

.gov-item .check i {

    font-size: 30px;
}

/* ICON COLORS */

.gov-item:nth-child(1) .check i {
    color: #4d8f2a;
}

.gov-item:nth-child(2) .check i {
    color: #d08a14;
}

.gov-item:nth-child(3) .check i {
    color: #4378d1;
}

.gov-item:nth-child(4) .check i {
    color: #d45787;
}

/* HOVER */

.gov-item:hover .check {

    transform:
        rotate(5deg) scale(1.08);
}

/* =========================================================
   IMAGE
========================================================= */

.board-visual {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    height: 380px;

    background: #fff;

    box-shadow:
        0 18px 55px rgba(0, 0, 0, .08);

    opacity: 0;

    transform:
        translateX(70px);
}

.board-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1.2s ease;
}

.board-visual:hover img {

    transform: scale(1.06);
}

/* =========================================================
   ANIMATION
========================================================= */

.gov-item.show-gov {

    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.board-visual.show-gov {

    opacity: 1;

    transform:
        translateX(0);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px) {

    .board-visual {

        height: 300px;

        margin-top: 20px;
    }
}

@media(max-width:768px) {

    .gov-section {

        padding: 70px 0;
    }

    .gov-item {

        padding: 13px 10px;

        font-size: 16px;
    }

    .gov-item .check {

        width: 50px;
        height: 50px;

        min-width: 50px;
    }

    .gov-item .check i {

        font-size: 20px;
    }

    .board-visual {

        height: 200px;

        border-radius: 24px;
    }

    .gov-section .section-title {

        font-size: 34px;
    }

    .gov-section .section-desc {

        font-size: 16px;
    }
}