/* =========================================================
   BHOOKH HOME PAGE
   HERO + IMPACT STATISTICS + LIVE INITIATIVES
   + PARTNER WITH US
   ========================================================= */


/* =========================================================
   HERO SECTION
   ========================================================= */

.home-hero {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(
            rgba(0, 128, 112, 0.78),
            rgba(0, 128, 112, 0.78)
        ),
        url("../images/home/bhookh-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 0;
}

.home-hero .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-hero-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 72px 20px 76px;

    text-align: center;
}

.home-hero-eyebrow {
    display: inline-block;

    margin: 0 auto 20px;

    color: #b8fff2;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;

    letter-spacing: 1.1px;
    text-transform: uppercase;

    text-align: center;
}

.home-hero h1 {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    color: #ffffff;

    font-size: clamp(46px, 5.4vw, 66px);
    font-weight: 800;
    line-height: 1.08;

    letter-spacing: -1.8px;

    text-align: center;
}

.home-hero h1 span {
    display: inline;
    color: #ffffff;
}

.home-hero-description {
    width: 100%;
    max-width: 760px;

    margin: 24px auto 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;

    text-align: center;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 30px;
}

.home-hero-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 14px 28px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.home-hero-actions .button-primary {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #075b50;
}

.home-hero-actions .button-primary:hover {
    background: #f4fffc;
    border-color: #f4fffc;
    color: #075b50;
    transform: translateY(-1px);
}

.home-hero-actions .button-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.home-hero-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
}


/* =========================================================
   IMPACT STATISTICS
   ========================================================= */

.impact-statistics {
    width: 100%;

    padding: 62px 0 58px;

    background: #ffffff;

    border-bottom: 1px solid #e2e7e9;
}

.impact-statistics .container {
    width: 100%;
}

.impact-statistics-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    width: 100%;
    gap: 0;
}

.impact-statistic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 105px;

    padding: 5px 20px;

    text-align: center;
}

.impact-statistic strong {
    display: block;

    margin: 0 0 10px;

    color: #087d68;

    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -1px;
}

.impact-statistic span {
    display: block;

    color: #5b6b7c;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;

    letter-spacing: 1px;
    text-transform: uppercase;

    text-align: center;
}


/* =========================================================
   LIVE INITIATIVES SECTION
   ========================================================= */

.initiatives-section {
    width: 100%;

    padding: 70px 0 65px;

    background: #ffffff;
}

.initiatives-section .container {
    width: 100%;
}


/* =========================================================
   LIVE INITIATIVES HEADING
   ========================================================= */

.section-heading {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 34px;

    text-align: center;
}

.section-tag {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #087d68;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
    content: "";

    display: block;

    width: 40px;
    height: 2px;

    margin: 0 15px;

    background: #087d68;
}

.section-heading h2 {
    margin: 12px 0 5px;

    color: #183b59;

    font-size: clamp(34px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.8px;

    text-align: center;
}

.section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #5b6b7c;

    font-size: 17px;
    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   INITIATIVES GRID
   ========================================================= */

.initiatives-grid {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   INITIATIVE CARD
   ========================================================= */

.initiative-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e7ecef;
    border-radius: 10px;

    box-shadow: 0 8px 24px rgba(24, 59, 89, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.initiative-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 14px 32px rgba(24, 59, 89, 0.13);
}


/* =========================================================
   INITIATIVE IMAGE
   ========================================================= */

.initiative-image {
    display: block;

    width: 100%;
    height: 190px;

    flex-shrink: 0;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   INITIATIVE CONTENT
   ========================================================= */

.initiative-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 17px 16px 18px;
}

.initiative-content h3 {
    min-height: 48px;

    margin: 0;

    color: #123b63;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.initiative-content p {
    min-height: 78px;

    margin: 8px 0 15px;

    color: #5b6b7c;

    font-size: 15px;
    line-height: 1.45;
}

.initiative-content a {
    margin-top: auto;

    color: #087d68;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}

.initiative-content a:hover {
    color: #075b50;
}


/* =========================================================
   VIEW ALL INITIATIVES
   ========================================================= */

.section-button {
    display: flex;
    justify-content: center;

    margin-top: 28px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 12px 26px;

    background: #087d68;

    border: 1px solid #087d68;
    border-radius: 7px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.view-all-btn:hover {
    background: #075b50;
    border-color: #075b50;

    transform: translateY(-1px);
}


/* =========================================================
   PARTNER WITH US
   ========================================================= */

.partner-cta-section {
    width: 100%;

    padding: 82px 0 86px;

    background: #041b18;

    color: #ffffff;
}

.partner-cta-section .container {
    width: 100%;
}

.partner-cta-content {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.partner-cta-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.8px;

    text-align: center;
}

.partner-cta-content p {
    max-width: 720px;

    margin: 24px auto 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.7;

    text-align: center;
}

.partner-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 32px;
}

.partner-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 14px 28px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.partner-cta-primary {
    background: #087d68;

    border: 1px solid #087d68;

    color: #ffffff;
}

.partner-cta-primary:hover {
    background: #0a967d;

    border-color: #0a967d;

    color: #ffffff;

    transform: translateY(-1px);
}

.partner-cta-secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;
}

.partner-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: #ffffff;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .home-hero {
        min-height: 520px;
    }

    .home-hero-content {
        max-width: 850px;

        padding: 66px 20px 70px;
    }

    .home-hero h1 {
        font-size: clamp(44px, 6vw, 60px);
    }

    .home-hero-description {
        max-width: 720px;

        font-size: 17px;
    }


    /* Impact Statistics */

    .impact-statistic strong {
        font-size: 36px;
    }

    .impact-statistic span {
        font-size: 12px;
    }


    /* Live Initiatives */

    .initiatives-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 20px;
    }

    .initiative-image {
        height: 210px;
    }


    /* Partner */

    .partner-cta-section {
        padding: 72px 20px 76px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .home-hero {
        min-height: auto;
    }

    .home-hero .container {
        width: 100%;
    }

    .home-hero-content {
        max-width: 100%;

        padding: 58px 20px 62px;
    }

    .home-hero-eyebrow {
        margin-bottom: 17px;

        font-size: 12px;
        letter-spacing: 0.9px;
    }

    .home-hero h1 {
        max-width: 700px;

        font-size: clamp(38px, 9vw, 52px);
        line-height: 1.1;

        letter-spacing: -1px;
    }

    .home-hero-description {
        max-width: 620px;

        margin-top: 20px;

        font-size: 16px;
        line-height: 1.65;
    }

    .home-hero-actions {
        flex-direction: column;

        justify-content: center;

        width: 100%;

        gap: 12px;

        margin-top: 27px;
    }

    .home-hero-actions .button {
        width: auto;

        min-width: 220px;
        min-height: 52px;
    }


    /* Impact Statistics */

    .impact-statistics {
        padding: 48px 0;
    }

    .impact-statistics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        row-gap: 34px;
    }

    .impact-statistic {
        min-height: 90px;

        padding: 5px 15px;
    }

    .impact-statistic strong {
        font-size: 34px;
    }


    /* Live Initiatives */

    .initiatives-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .initiatives-section {
        padding: 55px 0;
    }

    .initiative-image {
        height: 210px;
    }


    /* Partner */

    .partner-cta-section {
        padding: 64px 20px 68px;
    }

    .partner-cta-content {
        max-width: 680px;
    }

    .partner-cta-content h2 {
        font-size: clamp(34px, 7vw, 44px);
    }

    .partner-cta-content p {
        font-size: 16px;
    }

    .partner-cta-actions {
        gap: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .home-hero-content {
        padding: 48px 18px 54px;
    }

    .home-hero-eyebrow {
        font-size: 11px;
        letter-spacing: 0.7px;
    }

    .home-hero h1 {
        font-size: 36px;

        line-height: 1.12;

        letter-spacing: -0.7px;
    }

    .home-hero-description {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.6;
    }

    .home-hero-actions {
        margin-top: 24px;
    }

    .home-hero-actions .button {
        width: 100%;

        min-width: 0;
    }


    /* Impact Statistics */

    .impact-statistics {
        padding: 42px 0;
    }

    .impact-statistics-grid {
        grid-template-columns: 1fr 1fr;

        row-gap: 30px;
    }

    .impact-statistic {
        padding: 4px 10px;
    }

    .impact-statistic strong {
        font-size: 30px;
    }

    .impact-statistic span {
        font-size: 10px;
        letter-spacing: 0.7px;
    }


    /* Live Initiatives */

    .initiatives-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .initiatives-section {
        padding: 45px 0 50px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-tag::before,
    .section-tag::after {
        width: 25px;

        margin: 0 10px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .initiative-image {
        height: 220px;
    }

    .initiative-content h3 {
        min-height: auto;
    }

    .initiative-content p {
        min-height: auto;
    }


    /* Partner */

    .partner-cta-section {
        padding: 54px 18px 58px;
    }

    .partner-cta-content h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .partner-cta-content p {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.65;
    }

    .partner-cta-actions {
        flex-direction: column;

        width: 100%;

        margin-top: 26px;
    }

    .partner-cta-actions a {
        width: 100%;

        min-height: 52px;
    }
}