/* =========================================================
   NICBDL WEBSITE
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --nicbdl-green: #075c45;

    --nicbdl-dark-green: #034333;

    --nicbdl-deep-green: #02382c;

    --nicbdl-teal: #087f73;

    --nicbdl-light-green: #eaf5ef;

    --nicbdl-pale-green: #f4faf6;

    --nicbdl-gold: #d8c878;

    --white: #ffffff;

    --black: #111827;

    --text: #374151;

    --muted: #6b7280;

    --border: #e5e7eb;

    --container: 1200px;

    --transition: .3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


ul {

    list-style: none;

}


button {

    font-family: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid #edf1ee;

    position: relative;

    z-index: 1000;

}


.header-container {

    min-height: 108px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* =========================================================
   LOGO
========================================================= */

.site-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.site-logo img {

    width: 245px;

    max-height: 82px;

    object-fit: contain;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    margin-left: auto;

}


.nav-list {

    display: flex;

    align-items: center;

    gap: 5px;

}


.nav-item {

    position: relative;

}


.nav-link {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 12px 15px;

    color: #18251f;

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);

}


.nav-link i {

    font-size: 9px;

    transition: var(--transition);

}


.nav-link:hover {

    color: var(--nicbdl-green);

}


.has-dropdown:hover .nav-link i {

    transform: rotate(180deg);

}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;

    min-width: 225px;

    background: var(--white);

    border: 1px solid #e5ece8;

    border-radius: 12px;

    padding: 9px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.10);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: var(--transition);

}


.has-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu li a {

    display: block;

    padding: 10px 13px;

    border-radius: 7px;

    font-size: 13px;

    color: #37453f;

    transition: var(--transition);

}


.dropdown-menu li a:hover {

    color: var(--nicbdl-green);

    background: var(--nicbdl-pale-green);

}


/* =========================================================
   DONATE BUTTON
========================================================= */

.donate-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 20px;

    margin-left: 10px;

    border-radius: 10px;

    background: var(--nicbdl-dark-green);

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);

}


.donate-button:hover {

    background: var(--nicbdl-green);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(3,67,51,.18);

}


.donate-button i {

    font-size: 13px;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border: 1px solid #dce7e1;

    background: var(--white);

    color: var(--nicbdl-dark-green);

    border-radius: 9px;

    cursor: pointer;

    font-size: 18px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background:
        linear-gradient(
            135deg,
            #02382c,
            #075c45
        );

    color: rgba(255,255,255,.86);

}


.footer-main {

    min-height: 300px;

    padding-top: 65px;

    padding-bottom: 55px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr;

    gap: 70px;

}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    padding: 8px 12px;

    border-radius: 10px;

    margin-bottom: 5px;
}


.footer-logo img {

    width: 210px;

    height: auto;

    max-height: 100px;

    object-fit: contain;

    display: block;

    filter: none;

    opacity: 1;
}


.footer-tagline {

    max-width: 310px;

    margin-top: 20px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.8;

    font-style: italic;

}


.footer-column h4 {

    color: var(--white);

    font-size: 15px;

    margin-bottom: 20px;

    font-weight: 700;

}


.footer-column > ul li {

    margin-bottom: 10px;

}


.footer-column > ul li a {

    font-size: 13px;

    color: rgba(255,255,255,.70);

    transition: var(--transition);

}


.footer-column > ul li a:hover {

    color: var(--white);

    padding-left: 4px;

}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 14px !important;

}


.footer-contact i {

    width: 18px;

    color: #a6d8bd;

    margin-top: 4px;

}


.footer-contact span {

    font-size: 13px;

    color: rgba(255,255,255,.72);

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 22px;

}


.footer-social a {

    width: 34px;

    height: 34px;

    border: 1px solid
        rgba(255,255,255,.22);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    font-size: 13px;

    transition: var(--transition);

}


.footer-social a:hover {

    background: var(--white);

    color: var(--nicbdl-dark-green);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.13);

}


.footer-bottom .container {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.footer-bottom p {

    font-size: 12px;

    color: rgba(255,255,255,.55);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .nav-link {

        padding-left: 9px;

        padding-right: 9px;

        font-size: 13px;

    }


    .site-logo img {

        width: 210px;

    }

}


@media (max-width: 900px) {

    .header-container {

        min-height: 88px;

    }


    .site-logo img {

        width: 210px;

    }


    .mobile-menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .main-nav {

        position: absolute;

        left: 20px;

        right: 20px;

        top: calc(100% + 1px);

        background: var(--white);

        border: 1px solid #e5ece8;

        border-radius: 12px;

        box-shadow:
            0 15px 40px rgba(0,0,0,.10);

        padding: 10px;

        display: none;

    }


    .main-nav.mobile-open {

        display: block;

    }


    .nav-list {

        display: block;

    }


    .nav-item {

        border-bottom:
            1px solid #edf1ee;

    }


    .nav-item:last-of-type {

        border-bottom: none;

    }


    .nav-link {

        padding: 13px 12px;

        justify-content: space-between;

    }


    .dropdown-menu {

        position: static;

        min-width: 0;

        border: none;

        box-shadow: none;

        border-radius: 0;

        padding: 0 0 8px;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

    }


    .has-dropdown.mobile-dropdown-open
    .dropdown-menu {

        display: block;

    }


    .dropdown-menu li a {

        padding: 9px 20px;

    }


    .nav-donate {

        padding: 10px 5px 5px;

    }


    .donate-button {

        margin-left: 0;

        width: 100%;

    }


    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 45px;

    }


    .footer-about {

        grid-column: 1 / -1;

    }

}


@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .header-container {

        min-height: 78px;

        gap: 15px;

    }


    .site-logo img {

        width: 185px;

        max-height: 62px;

    }


    .main-nav {

        left: 14px;

        right: 14px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 45px;

        padding-bottom: 40px;

    }


    .footer-about {

        grid-column: auto;

    }


    .footer-logo img {

        width: 205px;

    }


    .footer-bottom .container {

        min-height: 58px;

        text-align: center;

    }

}





/* =========================================================
   NICBDL HOMEPAGE
========================================================= */


/* =========================================================
   HOME HERO
========================================================= */

.home-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        url("../assets/images/hero4.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.home-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 43, 32, 0.88) 0%,
            rgba(0, 55, 40, 0.76) 25%,
            rgba(0, 55, 40, 0.38) 52%,
            rgba(0, 0, 0, 0.05) 78%,
            rgba(0, 0, 0, 0.02) 100%
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.home-hero-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 650px;

    padding-left: 7%;
    padding-right: 7%;
}


/* =========================================================
   HERO CONTENT
========================================================= */



.home-hero-content {

    max-width: 650px;

    padding-top: 20px;

    position: relative;
    z-index: 3;
    padding-bottom: 60px;

    color: #ffffff;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #c8e7d9;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    line-height: 1.6;

}


/* =========================================================
   HERO HEADING
========================================================= */

.home-hero h1 {

    margin: 0 0 22px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;

    max-width: 700px;

}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.home-hero p {

    max-width: 610px;

    margin: 0 0 32px;

    color: rgba(255,255,255,0.92);

    font-size: 18px;

    line-height: 1.75;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}


.hero-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;

}


.hero-button:hover {

    transform: translateY(-3px);

}


/* PRIMARY */

.hero-button-primary {

    background: #087a5a;

    color: #ffffff;

    border: 1px solid #087a5a;

}


.hero-button-primary:hover {

    background: #075f48;

    color: #ffffff;

}


/* OUTLINE */

.hero-button-outline {

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.75);

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(4px);

}


.hero-button-outline:hover {

    background: rgba(255,255,255,0.16);

    border-color: #ffffff;

    color: #ffffff;

}


/* =========================================================
   HERO CURVE
========================================================= */

.hero-bottom-curve {

    position: absolute;

    left: -5%;

    bottom: -95px;

    width: 110%;

    height: 150px;

    z-index: 3;

    background: #ffffff;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

}



/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .home-hero {

        min-height: 650px;

        background-position: 63% center;

    }


    .home-hero-container {

        min-height: 650px;

        align-items: center;

    }


    .home-hero-content {

        width: 70%;

        max-width: 600px;

        padding-top: 30px;

    }


    .home-hero h1 {

        font-size: 44px;

    }


    .home-hero p {

        font-size: 16px;

    }

}


@media (max-width: 600px) {

    .home-hero {

        min-height: 700px;

        background-position: 67% center;

    }


    .home-hero-container {

        min-height: 700px;

        align-items: flex-start;

        padding-top: 90px;

    }


    .home-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0, 43, 32, 0.91),
                rgba(0, 43, 32, 0.68)
            );

    }


    .home-hero-content {

        width: 100%;

        max-width: 100%;

        padding: 20px 0 100px;

    }


    .hero-small-title {

        font-size: 11px;

        letter-spacing: 1px;

        max-width: 340px;

    }


    .home-hero h1 {

        font-size: 39px;

        line-height: 1.12;

        letter-spacing: -0.5px;

    }


    .home-hero p {

        font-size: 15px;

        line-height: 1.65;

        max-width: 100%;

    }


    .hero-buttons {

        gap: 10px;

    }


    .hero-button {

        min-height: 48px;

        padding: 0 18px;

        font-size: 14px;

    }


    .hero-bottom-curve {

        bottom: -70px;

        height: 110px;

    }

}



/* =========================================================
   GENERAL SECTION HEADING
========================================================= */

.section-heading {

    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;

}


.section-kicker {

    display: block;

    margin-bottom: 8px;

    color: var(--nicbdl-green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;

}


.section-heading h2 {

    margin-bottom: 12px;

    color: var(--nicbdl-dark-green);

    font-family:
        "Playfair Display",
        serif;

    font-size: 38px;

    line-height: 1.2;

}


.heading-line {

    width: 45px;

    height: 3px;

    margin: 0 auto 20px;

    background: var(--nicbdl-green);

    border-radius: 10px;

}


.section-heading p {

    max-width: 760px;

    margin: auto;

    color: #59645f;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   MISSION
========================================================= */

.mission-section {

    position: relative;

    padding: 90px 0 85px;

    background: #fff;

}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 55px;

}


.value-item {

    position: relative;

    padding: 0 35px;

    text-align: center;

}


.value-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 15px;

    right: 0;

    width: 1px;

    height: 105px;

    background: #e1e9e4;

}


.value-icon {

    width: 55px;

    height: 55px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--nicbdl-dark-green);

    color: #fff;

    font-size: 21px;

}


.value-item h3 {

    margin-bottom: 8px;

    color: var(--nicbdl-dark-green);

    font-size: 16px;

}


.value-item p {

    max-width: 220px;

    margin: auto;

    color: #69736e;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   STRATEGIC PILLARS
========================================================= */

.pillars-section {

    padding: 85px 0 95px;

    background:

        linear-gradient(
            180deg,
            #f4faf6,
            #edf6f1
        );

}


.pillars-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.pillar-card {

    display: grid;

    grid-template-columns:
        58px 1fr;

    gap: 17px;

    padding: 22px;

    background: #fff;

    border: 1px solid #e5ece8;

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(3,67,51,.045);

    transition: .3s ease;

}


.pillar-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 14px 35px
        rgba(3,67,51,.09);

}


.pillar-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--nicbdl-dark-green);

    color: #fff;

    font-size: 20px;

}


.pillar-card h3 {

    margin-top: 3px;

    color: var(--nicbdl-dark-green);

    font-size: 15px;

    line-height: 1.35;

}


.card-line {

    width: 32px;

    height: 2px;

    margin: 7px 0 8px;

    background: var(--nicbdl-green);

}


.pillar-card p {

    color: #68736d;

    font-size: 13px;

    line-height: 1.65;

}


/* =========================================================
   GET INVOLVED
========================================================= */

.involved-section {

    padding: 90px 0 100px;

    background: #fff;

}


.involved-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.involved-card {

    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 25px 20px;

    background: #fff;

    border: 1px solid #e4ebe7;

    border-radius: 14px;

    box-shadow:
        0 7px 25px
        rgba(3,67,51,.05);

    transition: .3s ease;

}


.involved-card:hover {

    transform: translateY(-4px);

    border-color: #b9d6c7;

    box-shadow:
        0 14px 35px
        rgba(3,67,51,.09);

}


.involved-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--nicbdl-dark-green);

    font-size: 23px;

}


.involved-card h3 {

    margin-bottom: 7px;

    color: var(--nicbdl-dark-green);

    font-size: 15px;

}


.involved-card p {

    margin-bottom: 12px;

    color: #6b756f;

    font-size: 12.5px;

    line-height: 1.65;

}


.involved-card span {

    color: var(--nicbdl-green);

    font-size: 12px;

    font-weight: 700;

}


.involved-card span i {

    margin-left: 4px;

    font-size: 10px;

}


/* =========================================================
   HOMEPAGE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 0;

    }


    .value-item:nth-child(2)::after {

        display: none;

    }


    .pillars-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .involved-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 700px) {

    .home-hero {

        min-height: 620px;

        background-position:
            65% center;

    }


    .home-hero-content {

        padding:
            75px 0 120px;

    }


    .home-hero h1 {

        font-size: 42px;

    }


    .home-hero p {

        font-size: 15px;

    }


    .hero-bottom-curve {

        bottom: -70px;

        height: 120px;

    }


    .section-heading h2 {

        font-size: 32px;

    }


    .values-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .value-item {

        padding: 0 20px;

    }


    .value-item:not(:last-child)::after {

        display: none;

    }


    .pillars-grid {

        grid-template-columns: 1fr;

    }


    .involved-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 480px) {

    .home-hero h1 {

        font-size: 36px;

    }


    .hero-small-title {

        font-size: 9px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-button {

        width: 100%;

    }


    .pillar-card {

        grid-template-columns:
            50px 1fr;

        padding: 18px;

    }


    .pillar-icon {

        width: 50px;

        height: 50px;

    }

}



/* =========================================================
   NICBDL HEADER BRAND
========================================================= */

.site-brand {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

    flex-shrink: 0;

}


/* =========================================================
   LOGO
========================================================= */

.site-logo {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}


.site-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


/* =========================================================
   BRAND TEXT
========================================================= */

.site-brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1.2;

}


/* NICBDL */

.site-brand-acronym {

    font-family: 'Inter', sans-serif;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -0.5px;

    color: #034333;

    line-height: 1;

    margin-bottom: 6px;

}


/* FULL ORGANIZATION NAME */

.site-brand-full {

    max-width: 290px;

    font-family: 'Inter', sans-serif;

    font-size: 9px;

    font-weight: 500;

    line-height: 1.45;

    text-transform: uppercase;

    color: #475569;

    letter-spacing: 0.25px;

}





/* =========================================================
   MOBILE BRAND
========================================================= */

@media (max-width: 900px) {

    .site-brand {

        gap: 10px;

    }


    .site-logo {

        width: 58px;

        height: 58px;

    }


    .site-brand-acronym {

        font-size: 22px;

    }


    .site-brand-full {

        max-width: 210px;

        font-size: 7px;

        line-height: 1.4;

    }

}





/* =========================================================
   BIODIVERSITY SECTION
========================================================= */

.biodiversity-section{

    padding:110px 0;

    background:#ffffff;

    overflow:hidden;

}


.biodiversity-layout{

    display:grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap:80px;

    align-items:center;

}


/* =========================================================
   CONTENT
========================================================= */

.biodiversity-content{

    max-width:560px;

}


.biodiversity-content h2{

    font-family:
        'Playfair Display',
        serif;

    font-size:44px;

    line-height:1.15;

    color:#064c3b;

    margin:
        12px 0
        20px;

}


.biodiversity-content p{

    color:#64748b;

    font-size:16px;

    line-height:1.8;

    margin-bottom:18px;

}


.biodiversity-button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:14px 22px;

    background:#075c47;

    color:#ffffff;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:
        .3s ease;

}


.biodiversity-button:hover{

    background:#043f31;

    transform:translateY(-2px);

}


.biodiversity-button i{

    transition:.3s ease;

}


.biodiversity-button:hover i{

    transform:translateX(5px);

}


/* =========================================================
   IMAGE AREA
========================================================= */

.biodiversity-images{

    position:relative;

    min-height:520px;

}


.biodiversity-image-main{

    position:absolute;

    top:0;

    right:0;

    width:78%;

    height:430px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.15);

    z-index:2;

}


.biodiversity-image-main img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform .6s ease;

}


.biodiversity-image-main:hover img{

    transform:scale(1.04);

}


/* =========================================================
   SMALL IMAGE
========================================================= */

.biodiversity-image-small{

    position:absolute;

    left:0;

    bottom:0;

    width:52%;

    height:270px;

    border-radius:18px;

    overflow:hidden;

    border:8px solid #ffffff;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.18);

    z-index:4;

}


.biodiversity-image-small img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}


/* =========================================================
   DECORATIVE GREEN SHAPE
========================================================= */

.biodiversity-image-decoration{

    position:absolute;

    right:-30px;

    bottom:15px;

    width:180px;

    height:180px;

    background:#dcefe5;

    border-radius:50%;

    z-index:1;

}



/* =========================================================
   BIODIVERSITY MOBILE
========================================================= */

@media (max-width:900px){

    .biodiversity-section{

        padding:80px 0;

    }


    .biodiversity-layout{

        grid-template-columns:1fr;

        gap:50px;

    }


    .biodiversity-content{

        max-width:100%;

        text-align:center;

    }


    .biodiversity-content .heading-line{

        margin-left:auto;

        margin-right:auto;

    }


    .biodiversity-content h2{

        font-size:36px;

    }


    .biodiversity-images{

        min-height:480px;

        width:100%;

    }


    .biodiversity-image-main{

        width:82%;

        height:370px;

    }


    .biodiversity-image-small{

        width:55%;

        height:220px;

    }

}


@media (max-width:600px){

    .biodiversity-section{

        padding:65px 0;

    }


    .biodiversity-content h2{

        font-size:31px;

    }


    .biodiversity-content p{

        font-size:15px;

        line-height:1.7;

    }


    .biodiversity-images{

        min-height:390px;

    }


    .biodiversity-image-main{

        width:88%;

        height:300px;

    }


    .biodiversity-image-small{

        width:60%;

        height:180px;

        border-width:5px;

    }


    .biodiversity-image-decoration{

        width:100px;

        height:100px;

        right:-20px;

    }

}



/* =========================================================
   HOME CONTACT SECTION
========================================================= */

.home-contact-section{

    padding:90px 0;

    background:#f3f8f5;

}


.home-contact-box{

    position:relative;

    display:grid;

    grid-template-columns:
        1.2fr
        1fr;

    gap:50px;

    align-items:center;

    padding:60px;

    border-radius:24px;

    background:#064c3b;

    overflow:hidden;

    box-shadow:
        0 20px 50px
        rgba(6,76,59,.15);

}


.home-contact-box::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    right:-100px;

    top:-120px;

    border-radius:50%;

    background:
        rgba(255,255,255,.05);

}


.home-contact-box::after{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    left:-80px;

    bottom:-100px;

    border-radius:50%;

    background:
        rgba(255,255,255,.04);

}


.home-contact-intro{

    position:relative;

    z-index:2;

}


.home-contact-intro .section-kicker{

    color:#b8e2ca;

}


.home-contact-intro h2{

    color:#ffffff;

    font-family:
        'Playfair Display',
        serif;

    font-size:40px;

    line-height:1.2;

    margin:
        12px 0
        20px;

}


.home-contact-intro p{

    color:rgba(255,255,255,.78);

    line-height:1.8;

    max-width:600px;

}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.home-contact-details{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    gap:15px;

}


.home-contact-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:12px;

    text-decoration:none;

    transition:.3s ease;

}


.home-contact-item:hover{

    background:
        rgba(255,255,255,.14);

    transform:translateX(4px);

}


.home-contact-icon{

    width:46px;

    height:46px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#ffffff;

    color:#075c47;

}


.home-contact-item span{

    display:block;

    color:#b8e2ca;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.8px;

    margin-bottom:4px;

}


.home-contact-item strong{

    display:block;

    color:#ffffff;

    font-size:15px;

}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.home-contact-button{

    position:relative;

    z-index:2;

    grid-column:1 / -1;

    margin-top:5px;

}


.home-contact-button a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 22px;

    background:#ffffff;

    color:#064c3b;

    border-radius:8px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

}


.home-contact-button a:hover{

    transform:translateY(-2px);

    background:#eaf5ef;

}


.home-contact-button i{

    transition:.3s ease;

}


.home-contact-button a:hover i{

    transform:translateX(5px);

}


@media (max-width:900px){

    .home-contact-box{

        grid-template-columns:1fr;

        padding:45px 30px;

        gap:35px;

    }


    .home-contact-intro h2{

        font-size:34px;

    }


    .home-contact-button{

        grid-column:auto;

    }

}


@media (max-width:600px){

    .home-contact-section{

        padding:65px 0;

    }


    .home-contact-box{

        padding:35px 20px;

        border-radius:18px;

    }


    .home-contact-intro h2{

        font-size:29px;

    }


    .home-contact-intro p{

        font-size:15px;

    }


    .home-contact-item{

        padding:13px;

    }


    .home-contact-icon{

        width:42px;

        height:42px;

    }


    .home-contact-item strong{

        font-size:14px;

        word-break:break-word;

    }


    .home-contact-button a{

        width:100%;

        justify-content:center;

    }

}





/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.inner-page-hero {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 27, .90),
            rgba(4, 38, 27, .55),
            rgba(4, 38, 27, .25)
        ),
        url("../assets/images/hero1.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.inner-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2, 35, 24, .40),
            transparent 60%
        );

    pointer-events: none;
}


.inner-page-hero-container {

    position: relative;

    z-index: 2;
}


.inner-page-hero-content {

    max-width: 720px;

    padding: 100px 0;
}


.inner-page-hero-content .hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #b7e36a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.inner-page-hero-content h1 {

    margin: 0 0 22px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

}


.inner-page-hero-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-section {

    padding: 110px 0;

    background: #ffffff;
}


.about-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}
/* =========================================================
   ABOUT INTRO IMAGE COMPOSITION
========================================================= */

.about-image-wrapper {

    position: relative;

    width: 100%;

    height: 560px;

    overflow: visible;

}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.about-image-circle {

    position: absolute;

    width: 270px;
    height: 270px;

    right: -35px;
    bottom: -25px;

    background: #e5f2eb;

    border-radius: 50%;

    z-index: 0;

}


/* =========================================================
   LARGE MAIN IMAGE
========================================================= */

.about-main-image {

    position: absolute;

    top: 0;
    right: 0;

    width: 82%;

    height: 500px;

    z-index: 1;

}


.about-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.16);

}


/* =========================================================
   SMALL OVERLAPPING IMAGE
========================================================= */

.about-small-image {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 52%;

    height: 285px;

    z-index: 3;

    padding: 10px;

    background: #ffffff;

    border-radius: 25px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.16);

}


.about-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 17px;

}


/* =========================================================
   IMAGE HOVER EFFECT
========================================================= */

.about-main-image,
.about-small-image {

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.about-main-image:hover {

    transform: translateY(-5px);

}


.about-small-image:hover {

    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.20);

}

.about-intro-section {

    padding: 110px 0;

    background: #ffffff;

}


.about-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;

}


/* =========================================================
   ABOUT IMAGE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .about-image-wrapper {

        max-width: 750px;

        margin: 0 auto;

    }

}


@media (max-width: 700px) {

    .about-intro-section {

        padding: 75px 0;

    }


    .about-image-wrapper {

        height: 470px;

    }


    .about-main-image {

        width: 86%;

        height: 390px;

    }


    .about-small-image {

        width: 55%;

        height: 220px;

        padding: 7px;

        border-radius: 20px;

    }


    .about-small-image img {

        border-radius: 14px;

    }


    .about-image-circle {

        width: 190px;

        height: 190px;

        right: -20px;

        bottom: -15px;

    }

}


@media (max-width: 480px) {

    .about-image-wrapper {

        height: 390px;

    }


    .about-main-image {

        width: 90%;

        height: 315px;

    }


    .about-small-image {

        width: 58%;

        height: 175px;

        padding: 6px;

        border-radius: 17px;

    }


    .about-small-image img {

        border-radius: 12px;

    }


    .about-image-circle {

        width: 145px;

        height: 145px;

        right: -15px;

        bottom: -10px;

    }

}


.about-intro-content h2 {

    max-width: 650px;

    margin: 12px 0 20px;

    color: #173f2b;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;
}


.about-intro-content p {

    margin: 0 0 18px;

    color: #5f6b65;

    font-size: 16px;

    line-height: 1.85;
}


.about-learn-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    padding: 14px 22px;

    border-radius: 8px;

    background: #174d35;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s ease;
}


.about-learn-button:hover {

    background: #276b47;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision-section {

    padding: 110px 0;

    background: #f4f8f3;
}


.mission-vision-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

    margin-top: 55px;
}


.mission-vision-card {

    position: relative;

    padding: 45px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid #e4ebe4;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    overflow: hidden;
}


.mission-vision-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 5px;

    background: #62a93b;
}


.mission-vision-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: #eaf5e5;

    color: #4f9632;

    font-size: 25px;
}


.mission-vision-card > span {

    display: block;

    margin-bottom: 10px;

    color: #62a93b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.mission-vision-card h3 {

    margin: 0 0 18px;

    color: #174d35;

    font-family: "Playfair Display", serif;

    font-size: 29px;
}


.mission-vision-card p {

    margin: 0;

    color: #657068;

    line-height: 1.8;
}


/* =========================================================
   ABOUT VALUES
========================================================= */

.about-values-section {

    padding: 110px 0;

    background: #ffffff;
}


.about-values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;

    margin-top: 55px;
}


.about-value-card {

    padding: 35px 28px;

    text-align: center;

    border: 1px solid #e5ebe5;

    border-radius: 16px;

    background: #ffffff;

    transition: .3s ease;
}


.about-value-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

    border-color: #b9dca8;
}


.about-value-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #edf7e9;

    color: #579a39;

    font-size: 25px;
}


.about-value-card h3 {

    margin: 0 0 12px;

    color: #174d35;

    font-family: "Playfair Display", serif;

    font-size: 24px;
}


.about-value-card p {

    margin: 0;

    color: #69746d;

    line-height: 1.7;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.about-work-section {

    padding: 110px 0;

    background: #f6f8f5;
}


.about-work-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    margin-top: 55px;
}


.about-work-card {

    padding: 35px;

    background: #ffffff;

    border-radius: 16px;

    border: 1px solid #e3e9e3;

    transition: .3s ease;
}


.about-work-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);
}


.about-work-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #174d35;

    color: #ffffff;

    font-size: 22px;
}


.about-work-card h3 {

    margin: 0 0 12px;

    color: #174d35;

    font-family: "Playfair Display", serif;

    font-size: 24px;
}


.about-work-card p {

    margin: 0;

    color: #68736c;

    line-height: 1.75;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            rgba(5, 45, 29, .88),
            rgba(5, 45, 29, .88)
        ),
        url("../assets/images/about-cta.png")
        center / cover no-repeat;

    overflow: hidden;
}


.about-cta-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.about-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}


.about-cta-content .section-kicker {

    color: #b7e36a;
}


.about-cta-content h2 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.15;
}


.about-cta-content p {

    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.85);

    font-size: 17px;

    line-height: 1.8;
}


.about-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-values-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-work-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .inner-page-hero {

        min-height: 400px;
    }


    .inner-page-hero-content {

        padding: 80px 0;
    }


    .inner-page-hero-content h1 {

        font-size: 42px;
    }


    .inner-page-hero-content p {

        font-size: 16px;
    }


    .about-intro-section,
    .mission-vision-section,
    .about-values-section,
    .about-work-section,
    .about-cta-section {

        padding: 75px 0;
    }


    .about-image-badge {

        left: 15px;

        bottom: 15px;

        right: 15px;

        font-size: 13px;
    }


    .mission-vision-grid {

        grid-template-columns: 1fr;
    }


    .mission-vision-card {

        padding: 30px;
    }


    .about-values-grid {

        grid-template-columns: 1fr;
    }


    .about-work-grid {

        grid-template-columns: 1fr;
    }


    .about-cta-buttons {

        flex-direction: column;
    }


    .about-cta-buttons .hero-button {

        width: 100%;

        justify-content: center;

        max-width: 280px;
    }

}



/* =========================================================
   ABOUT INTRO — MOBILE IMAGE FIX
========================================================= */

@media (max-width: 700px) {

    .about-intro-section {
        padding: 70px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 560px;
        height: 400px;
        margin: 0 auto;
        position: relative;
        overflow: visible;
    }

    /* Main image */
    .about-main-image {
        position: absolute;
        top: 0;
        right: 0;

        width: 88%;
        height: 300px;

        z-index: 1;
    }

    .about-main-image img {
        width: 100%;
        height: 100%;
        min-height: 0 !important;

        object-fit: cover;
        display: block;
    }

    /* Small overlapping image */
    .about-small-image {
        position: absolute;
        left: 0;
        bottom: 0;

        width: 52%;
        height: 165px;

        padding: 6px;

        z-index: 3;
    }

    .about-small-image img {
        width: 100%;
        height: 100%;
        min-height: 0 !important;

        object-fit: cover;
        display: block;
    }

    /* Decorative circle */
    .about-image-circle {
        width: 145px;
        height: 145px;

        right: -10px;
        bottom: -10px;

        z-index: 0;
    }

    /* Content must remain completely below images */
    .about-intro-content {
        position: relative;
        z-index: 5;
        width: 100%;
    }

    .about-intro-content h2 {
        font-size: 34px;
        line-height: 1.18;
    }

    .about-intro-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}


/* =========================================================
   ABOUT INTRO — SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .about-intro-section {
        padding: 60px 0;
    }

    .about-intro-grid {
        gap: 45px;
    }

    .about-image-wrapper {
        height: 345px;
        max-width: 100%;
    }

    .about-main-image {
        width: 91%;
        height: 255px;
    }

    .about-main-image img {
        min-height: 0 !important;
        height: 100%;
    }

    .about-small-image {
        width: 55%;
        height: 145px;
        padding: 5px;
    }

    .about-small-image img {
        min-height: 0 !important;
        height: 100%;
    }

    .about-image-circle {
        width: 120px;
        height: 120px;

        right: -8px;
        bottom: -8px;
    }

    .about-intro-content h2 {
        font-size: 31px;
    }

    .about-intro-content p {
        font-size: 15px;
        line-height: 1.8;
    }

}







/* =========================================================
   OUR WORK HERO
========================================================= */

.work-page-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4,38,27,.92),
            rgba(4,38,27,.62),
            rgba(4,38,27,.25)
        ),
        url("../assets/images/work-hero.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.work-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2,35,24,.35),
            transparent 65%
        );

}


.work-page-hero .container {

    position: relative;

    z-index: 2;

}


.work-page-hero-content {

    max-width: 760px;

    padding: 105px 0;

}


.work-page-hero-content .hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #b7e36a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.work-page-hero-content h1 {

    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

}


.work-page-hero-content p {

    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   WORK INTRO
========================================================= */

.work-intro-section {

    padding: 110px 0;

    background: #ffffff;

}


.work-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(300px, .7fr);

    gap: 80px;

    align-items: center;

}


.work-intro-content h2 {

    max-width: 650px;

    margin: 12px 0 20px;

    color: #173f2b;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.15;

}


.work-intro-content p {

    max-width: 760px;

    margin: 0 0 18px;

    color: #5f6b65;

    font-size: 16px;

    line-height: 1.85;

}


.work-intro-highlight {

    position: relative;

    padding: 45px 40px;

    background: #f1f7ee;

    border-radius: 22px;

    border: 1px solid #dfeadb;

    overflow: hidden;

}


.work-intro-highlight::after {

    content: "";

    position: absolute;

    right: -50px;

    bottom: -70px;

    width: 190px;

    height: 190px;

    background: #dcebd6;

    border-radius: 50%;

}


.work-highlight-icon {

    position: relative;

    z-index: 2;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: #ffffff;

    color: #579a39;

    font-size: 25px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.07);

}


.work-intro-highlight > span {

    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 10px;

    color: #62a93b;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.work-intro-highlight h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 15px;

    color: #174d35;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    line-height: 1.25;

}


.work-intro-highlight p {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #657068;

    line-height: 1.8;

}


/* =========================================================
   PROGRAMS
========================================================= */

.work-programs-section {

    padding: 110px 0;

    background: #f4f8f3;

}


.work-programs-section .section-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.work-programs-section .section-heading p {

    margin: 20px auto 0;

    color: #657068;

    line-height: 1.8;

}


.work-programs-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


.work-program-card {

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e3ebe2;

    box-shadow:
        0 12px 35px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.work-program-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 22px 50px rgba(0,0,0,.11);

}


.work-program-image {

    position: relative;

    height: 245px;

    overflow: hidden;

}


.work-program-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.work-program-card:hover
.work-program-image img {

    transform: scale(1.06);

}


.work-program-number {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #174d35;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);

}


.work-program-content {

    padding: 32px 30px 35px;

}


.work-program-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #edf7e9;

    color: #579a39;

    font-size: 22px;

}


.work-program-content h3 {

    margin: 0 0 14px;

    color: #174d35;

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;

}


.work-program-content p {

    min-height: 115px;

    margin: 0 0 22px;

    color: #69746d;

    line-height: 1.75;

}


.work-program-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #174d35;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

}


.work-program-content a i {

    transition:
        transform .25s ease;

}


.work-program-content a:hover {

    color: #62a93b;

}


.work-program-content a:hover i {

    transform: translateX(5px);

}


/* =========================================================
   OUR APPROACH
========================================================= */

.work-approach-section {

    padding: 110px 0;

    background: #ffffff;

}


.work-approach-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;

}


.work-approach-image {

    height: 500px;

}


.work-approach-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 25px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.14);

}


.work-approach-content h2 {

    max-width: 620px;

    margin: 12px 0 20px;

    color: #173f2b;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.15;

}


.work-approach-content > p {

    margin: 0 0 18px;

    color: #5f6b65;

    line-height: 1.85;

}


.work-approach-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;

}


.work-approach-point {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border-radius: 10px;

    background: #f4f8f3;

    color: #174d35;

    font-size: 14px;

    font-weight: 700;

}


.work-approach-point i {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcefd3;

    color: #4f9632;

    font-size: 11px;

}


/* =========================================================
   CTA
========================================================= */

.work-cta-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            rgba(4,38,27,.88),
            rgba(4,38,27,.88)
        ),
        url("../assets/images/work-cta.jpg")
        center / cover no-repeat;

    overflow: hidden;

}


.work-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(183,227,106,.12),
            transparent 35%
        );

}


.work-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.work-cta-content .section-kicker {

    color: #b7e36a;

}


.work-cta-content h2 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 55px);

    line-height: 1.15;

}


.work-cta-content p {

    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.86);

    font-size: 17px;

    line-height: 1.8;

}


.work-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================================
   OUR WORK RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .work-intro-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .work-programs-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .work-approach-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .work-approach-image {

        height: 450px;

    }

}


@media (max-width: 700px) {

    .work-page-hero {

        min-height: 430px;

    }


    .work-page-hero-content {

        padding: 80px 0;

    }


    .work-page-hero-content h1 {

        font-size: 42px;

    }


    .work-page-hero-content p {

        font-size: 16px;

    }


    .work-intro-section,
    .work-programs-section,
    .work-approach-section,
    .work-cta-section {

        padding: 75px 0;

    }


    .work-programs-grid {

        grid-template-columns: 1fr;

    }


    .work-program-image {

        height: 250px;

    }


    .work-program-content p {

        min-height: auto;

    }


    .work-approach-image {

        height: 380px;

    }


    .work-approach-points {

        grid-template-columns: 1fr;

    }


    .work-cta-buttons {

        flex-direction: column;

    }


    .work-cta-buttons .hero-button {

        width: 100%;

        max-width: 280px;

        justify-content: center;

    }

}


@media (max-width: 480px) {

    .work-page-hero-content h1 {

        font-size: 38px;

    }


    .work-intro-highlight {

        padding: 35px 28px;

    }


    .work-program-content {

        padding: 28px 24px 32px;

    }


    .work-approach-image {

        height: 320px;

    }

}



/* =========================================================
   GET INVOLVED PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.involved-hero {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3,35,24,.94),
            rgba(3,35,24,.68),
            rgba(3,35,24,.25)
        ),
        url("../assets/images/get-involved-hero.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.involved-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(183,227,106,.14),
            transparent 35%
        );

}


.involved-hero .container {

    position: relative;

    z-index: 2;

}


.involved-hero-content {

    max-width: 780px;

    padding: 110px 0;

}


.involved-hero-content .hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #b7e36a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.involved-hero-content h1 {

    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(43px, 5vw, 68px);

    line-height: 1.08;

}


.involved-hero-content p {

    max-width: 680px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.8;

}


.involved-hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.involved-intro-section {

    padding: 110px 0;

    background: #ffffff;

}


.involved-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    align-items: center;

}


/* =========================================================
   IMAGE COMPOSITION
========================================================= */

.involved-image-wrapper {

    position: relative;

    height: 550px;

    width: 100%;

    overflow: visible;

}


.involved-image-circle {

    position: absolute;

    width: 260px;

    height: 260px;

    right: -30px;

    bottom: -20px;

    background: #e2f0e7;

    border-radius: 50%;

    z-index: 0;

}


.involved-main-image {

    position: absolute;

    top: 0;

    right: 0;

    width: 82%;

    height: 490px;

    z-index: 1;

}


.involved-main-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);

}


.involved-small-image {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 52%;

    height: 275px;

    padding: 10px;

    background: #ffffff;

    border-radius: 25px;

    z-index: 3;

    box-shadow:
        0 18px 45px rgba(0,0,0,.16);

}


.involved-small-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 17px;

}


.involved-intro-content h2 {

    max-width: 600px;

    margin: 12px 0 20px;

    color: #173f2b;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.15;

}


.involved-intro-content p {

    margin: 0 0 18px;

    color: #5f6b65;

    line-height: 1.85;

}


/* =========================================================
   WAYS TO GET INVOLVED
========================================================= */

.involved-options-section {

    padding: 110px 0;

    background: #f4f8f3;

}


.involved-options-section
.section-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.involved-options-section
.section-heading p {

    margin: 20px auto 0;

    color: #657068;

    line-height: 1.8;

}


.involved-options-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

}


.involved-option-card {

    display: grid;

    grid-template-columns: 42% 58%;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #e1eae0;

    box-shadow:
        0 12px 35px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.involved-option-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(0,0,0,.11);

}


.involved-option-image {

    position: relative;

    min-height: 360px;

    overflow: hidden;

}


.involved-option-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.involved-option-card:hover
.involved-option-image img {

    transform: scale(1.06);

}


.involved-option-number {

    position: absolute;

    top: 18px;

    left: 18px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #174d35;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);

}


.involved-option-content {

    padding: 35px 32px;

}


.involved-option-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #edf7e9;

    color: #579a39;

    font-size: 22px;

}


.involved-option-content h3 {

    margin: 0 0 14px;

    color: #174d35;

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

}


.involved-option-content p {

    margin: 0 0 22px;

    color: #69746d;

    line-height: 1.75;

}


.involved-option-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #174d35;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

}


.involved-option-content a:hover {

    color: #62a93b;

}


.involved-option-content a i {

    transition:
        transform .25s ease;

}


.involved-option-content a:hover i {

    transform: translateX(5px);

}


/* =========================================================
   IMPACT
========================================================= */

.involved-impact-section {

    padding: 110px 0;

    background: #ffffff;

}


.involved-impact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.involved-impact-content h2 {

    max-width: 600px;

    margin: 12px 0 20px;

    color: #173f2b;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.15;

}


.involved-impact-content p {

    color: #5f6b65;

    line-height: 1.85;

}


.involved-impact-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


.impact-point {

    display: flex;

    gap: 15px;

    padding: 25px;

    background: #f5f8f3;

    border: 1px solid #e2eae0;

    border-radius: 15px;

}


.impact-point-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e3f1dc;

    color: #579a39;

}


.impact-point h3 {

    margin: 0 0 7px;

    color: #174d35;

    font-size: 17px;

}


.impact-point p {

    margin: 0;

    color: #68736d;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   CTA
========================================================= */

.involved-cta-section {

    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            rgba(4,38,27,.90),
            rgba(4,38,27,.90)
        ),
        url("../assets/images/get1.png")
        center / cover no-repeat;

    overflow: hidden;

}


.involved-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(183,227,106,.14),
            transparent 35%
        );

}


.involved-cta-content {

    position: relative;

    z-index: 2;

    max-width: 820px;

    margin: auto;

    text-align: center;

}


.involved-cta-content .section-kicker {

    color: #b7e36a;

}


.involved-cta-content h2 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(36px, 4vw, 55px);

    line-height: 1.15;

}


.involved-cta-content p {

    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.87);

    font-size: 17px;

    line-height: 1.8;

}


.involved-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}




/* =========================================================
   GET INVOLVED RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .involved-intro-grid {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .involved-image-wrapper {

        max-width: 750px;

        margin: 0 auto;

    }


    .involved-options-grid {

        grid-template-columns: 1fr;

    }


    .involved-impact-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

}


@media (max-width: 700px) {

    .involved-hero {

        min-height: 500px;

    }


    .involved-hero-content {

        padding: 80px 0;

    }


    .involved-hero-content h1 {

        font-size: 42px;

    }


    .involved-hero-content p {

        font-size: 16px;

    }


    .involved-intro-section,
    .involved-options-section,
    .involved-impact-section,
    .involved-cta-section {

        padding: 75px 0;

    }


    .involved-image-wrapper {

        height: 470px;

    }


    .involved-main-image {

        width: 86%;

        height: 390px;

    }


    .involved-small-image {

        width: 55%;

        height: 220px;

        padding: 7px;

    }


    .involved-image-circle {

        width: 190px;

        height: 190px;

        right: -20px;

        bottom: -15px;

    }


    .involved-option-card {

        grid-template-columns: 1fr;

    }


    .involved-option-image {

        height: 270px;

        min-height: 270px;

    }


    .involved-option-content {

        padding: 30px 25px 35px;

    }


    .involved-impact-points {

        grid-template-columns: 1fr;

    }


    .involved-cta-buttons {

        flex-direction: column;

    }


    .involved-cta-buttons .hero-button {

        width: 100%;

        max-width: 290px;

        justify-content: center;

    }

}


@media (max-width: 480px) {

    .involved-hero-content h1 {

        font-size: 37px;

    }


    .involved-image-wrapper {

        height: 390px;

    }


    .involved-main-image {

        width: 90%;

        height: 315px;

    }


    .involved-small-image {

        width: 58%;

        height: 175px;

    }


    .involved-image-circle {

        width: 145px;

        height: 145px;

    }

}






/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.contact-page-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4,38,27,.94),
            rgba(4,38,27,.70),
            rgba(4,38,27,.30)
        ),
        url("../assets/images/contact-hero.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.contact-page-hero .inner-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2,35,24,.35),
            transparent 65%
        );

}


.contact-page-hero .container {

    position: relative;

    z-index: 2;

}


.contact-page-hero .inner-page-hero-content {

    max-width: 760px;

    padding: 105px 0;

}


.contact-page-hero .hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #b7e36a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-page-hero h1 {

    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

}


.contact-page-hero p {

    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.8;

}



/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {

    padding: 110px 0;

    background: #ffffff;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap: 90px;

    align-items: start;

}



/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

    padding-top: 10px;

}


.contact-information .section-kicker,
.contact-form-header .section-kicker,
.contact-cta-content .section-kicker {

    display: inline-block;

    color: #2e6b4d;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-information h2 {

    margin: 12px 0 22px;

    max-width: 550px;

    color: #123c2a;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.15;

}


.contact-intro-text {

    max-width: 560px;

    margin-bottom: 42px;

    color: #5c6b63;

    font-size: 17px;

    line-height: 1.85;

}



/* =========================================================
   CONTACT INFORMATION ITEMS
========================================================= */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;

}


.contact-info-icon {

    flex: 0 0 52px;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f3ec;

    color: #2e6b4d;

    border-radius: 50%;

    font-size: 19px;

}


.contact-info-label {

    display: block;

    margin-bottom: 5px;

    color: #123c2a;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.contact-info-item p {

    margin: 0;

    color: #64736b;

    font-size: 15px;

    line-height: 1.7;

}


.contact-info-item a {

    color: #64736b;

    text-decoration: none;

    transition: color .25s ease;

}


.contact-info-item a:hover {

    color: #2e6b4d;

}



/* =========================================================
   SOCIAL
========================================================= */

.contact-social {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid #e4ebe6;

}


.contact-social span {

    margin-right: 5px;

    color: #123c2a;

    font-size: 14px;

    font-weight: 700;

}


.contact-social a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #123c2a;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;

}


.contact-social a:hover {

    background: #2e6b4d;

    transform: translateY(-3px);

}



/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {

    padding: 48px;

    background: #f5f8f6;

    border: 1px solid #e2ebe5;

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(18,60,42,.08);

}


.contact-form-header {

    margin-bottom: 32px;

}


.contact-form-header h2 {

    margin: 10px 0 12px;

    color: #123c2a;

    font-family:
        "Playfair Display",
        serif;

    font-size: 38px;

    line-height: 1.2;

}


.contact-form-header p {

    margin: 0;

    color: #64736b;

    font-size: 15px;

    line-height: 1.7;

}



/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-row {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


.contact-form-group {

    margin-bottom: 22px;

}


.contact-form-group label {

    display: block;

    margin-bottom: 8px;

    color: #183e2d;

    font-size: 14px;

    font-weight: 700;

}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid #d7e1da;

    border-radius: 10px;

    color: #183e2d;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;

}


.contact-form-group input,
.contact-form-group select {

    height: 52px;

}


.contact-form-group textarea {

    min-height: 160px;

    resize: vertical;

}


.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {

    color: #9aa7a0;

}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    border-color: #2e6b4d;

    box-shadow:
        0 0 0 3px rgba(46,107,77,.10);

}



/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 28px;

    border: 0;

    border-radius: 8px;

    background: #123c2a;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}


.contact-submit-button:hover {

    background: #2e6b4d;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(18,60,42,.18);

}


.contact-submit-button i {

    font-size: 18px;

}



/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            rgba(10, 45, 30, .78),
            rgba(10, 45, 30, .78)
        ),
        url("../assets/images/contact-cta.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.contact-cta-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.contact-cta-content .section-kicker {

    color: #b7e36a;

}


.contact-cta-content h2 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 55px);

    line-height: 1.15;

}


.contact-cta-content p {

    max-width: 680px;

    margin: 0 auto;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}



/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 65px;

    }

    .contact-information {

        max-width: 750px;

    }

}


@media (max-width: 700px) {

    .contact-page-hero {

        min-height: 400px;

    }


    .contact-page-hero .inner-page-hero-content {

        padding: 80px 0;

    }


    .contact-page-hero h1 {

        font-size: 42px;

    }


    .contact-page-hero p {

        font-size: 16px;

    }


    .contact-section {

        padding: 75px 0;

    }


    .contact-grid {

        gap: 50px;

    }


    .contact-information h2 {

        font-size: 38px;

    }


    .contact-form-wrapper {

        padding: 35px 25px;

        border-radius: 18px;

    }


    .contact-form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-form-header h2 {

        font-size: 32px;

    }


    .contact-submit-button {

        width: 100%;

    }


    .contact-cta-section {

        padding: 75px 0;

    }

}


@media (max-width: 480px) {

    .contact-section {

        padding: 60px 0;

    }


    .contact-information h2 {

        font-size: 33px;

    }


    .contact-intro-text {

        font-size: 15px;

    }


    .contact-info-item {

        gap: 14px;

    }


    .contact-info-icon {

        flex: 0 0 45px;

        width: 45px;

        height: 45px;

        font-size: 17px;

    }


    .contact-form-wrapper {

        padding: 28px 18px;

    }


    .contact-form-header h2 {

        font-size: 29px;

    }


    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {

        font-size: 16px;

    }

}




/* =========================================================
   NEWS PAGE HERO
========================================================= */

.news-page-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4,38,27,.94),
            rgba(4,38,27,.68),
            rgba(4,38,27,.25)
        ),
        url("../assets/images/news-hero.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.news-page-hero .inner-page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2,35,24,.30),
            transparent 65%
        );

}


.news-page-hero .container {

    position: relative;

    z-index: 2;

}


.news-page-hero .inner-page-hero-content {

    max-width: 760px;

    padding: 105px 0;

}


.news-page-hero .hero-small-title {

    display: inline-block;

    margin-bottom: 18px;

    color: #b7e36a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.news-page-hero h1 {

    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

}


.news-page-hero p {

    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.8;

}



/* =========================================================
   NEWS SECTION
========================================================= */

.news-section {

    padding: 110px 0;

    background: #ffffff;

}


.news-section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;

}


.news-section-heading .section-kicker {

    display: inline-block;

    color: #2e6b4d;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.news-section-heading h2 {

    max-width: 650px;

    margin: 12px 0 0;

    color: #123c2a;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(36px, 4vw, 54px);

    line-height: 1.15;

}


.news-section-heading > p {

    max-width: 450px;

    margin: 0;

    color: #64736b;

    font-size: 16px;

    line-height: 1.8;

}



/* =========================================================
   FEATURED NEWS
========================================================= */

.featured-news-card {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, .85fr);

    margin-bottom: 75px;

    background: #f4f8f5;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 18px 50px rgba(18,60,42,.08);

}


.featured-news-image {

    position: relative;

    min-height: 460px;

    overflow: hidden;

}


.featured-news-image img {

    width: 100%;

    height: 100%;

    min-height: 460px;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.featured-news-card:hover
.featured-news-image img {

    transform: scale(1.04);

}


.news-category {

    position: absolute;

    top: 22px;

    left: 22px;

    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    background: #b7e36a;

    color: #123c2a;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

}


.featured-news-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;

}


.news-date {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: #6c7b73;

    font-size: 13px;

    font-weight: 600;

}


.news-date i {

    color: #2e6b4d;

}


.featured-news-content h3 {

    margin: 0 0 20px;

    color: #123c2a;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(30px, 3vw, 43px);

    line-height: 1.2;

}


.featured-news-content p {

    margin: 0 0 28px;

    color: #64736b;

    font-size: 16px;

    line-height: 1.8;

}



/* =========================================================
   NEWS GRID
========================================================= */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

}


.news-card {

    background: #ffffff;

    border: 1px solid #e2ebe5;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(18,60,42,.055);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.news-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(18,60,42,.12);

}


.news-card-image {

    position: relative;

    height: 255px;

    overflow: hidden;

}


.news-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.news-card:hover
.news-card-image img {

    transform: scale(1.06);

}


.news-card-image .news-category {

    top: 17px;

    left: 17px;

}


.news-card-content {

    padding: 28px;

}


.news-card-content h3 {

    margin: 0 0 14px;

    color: #123c2a;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    line-height: 1.25;

}


.news-card-content p {

    margin: 0 0 22px;

    color: #6a7770;

    font-size: 14px;

    line-height: 1.75;

}


.news-read-more {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #2e6b4d;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        gap .25s ease,
        color .25s ease;

}


.news-read-more:hover {

    gap: 14px;

    color: #123c2a;

}


.news-read-more i {

    font-size: 17px;

}



/* =========================================================
   NEWS CTA
========================================================= */

.news-cta-section {

    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            rgba(10,45,30,.78),
            rgba(10,45,30,.78)
        ),
        url("../assets/images/news-cta.png")
        center center / cover no-repeat;

    overflow: hidden;

}


.news-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(8,40,27,.35),
            transparent
        );

}


.news-cta-section .container {

    position: relative;

    z-index: 2;

}


.news-cta-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.news-cta-content .section-kicker {

    color: #b7e36a;

}


.news-cta-content h2 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 55px);

    line-height: 1.15;

}


.news-cta-content p {

    max-width: 680px;

    margin: 0 auto 32px;

    color: rgba(255,255,255,.85);

    font-size: 17px;

    line-height: 1.8;

}


.news-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 28px;

    background: #b7e36a;

    color: #123c2a;

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;

}


.news-cta-button:hover {

    background: #ffffff;

    color: #123c2a;

    transform: translateY(-3px);

}



/* =========================================================
   NEWS RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .featured-news-card {

        grid-template-columns: 1fr;

    }


    .featured-news-image {

        min-height: 400px;

    }


    .featured-news-image img {

        min-height: 400px;

    }

}


@media (max-width: 700px) {

    .news-page-hero {

        min-height: 400px;

    }


    .news-page-hero .inner-page-hero-content {

        padding: 80px 0;

    }


    .news-page-hero h1 {

        font-size: 42px;

    }


    .news-page-hero p {

        font-size: 16px;

    }


    .news-section {

        padding: 75px 0;

    }


    .news-section-heading {

        display: block;

        margin-bottom: 40px;

    }


    .news-section-heading > p {

        margin-top: 20px;

    }


    .featured-news-card {

        margin-bottom: 55px;

        border-radius: 16px;

    }


    .featured-news-image {

        min-height: 300px;

        height: 300px;

    }


    .featured-news-image img {

        min-height: 0;

        height: 100%;

    }


    .featured-news-content {

        padding: 35px 25px;

    }


    .featured-news-content h3 {

        font-size: 32px;

    }


    .news-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .news-card-image {

        height: 240px;

    }


    .news-cta-section {

        padding: 80px 0;

    }

}


@media (max-width: 480px) {

    .news-section {

        padding: 60px 0;

    }


    .news-section-heading h2 {

        font-size: 35px;

    }


    .featured-news-content {

        padding: 28px 20px;

    }


    .featured-news-content h3 {

        font-size: 28px;

    }


    .news-card-content {

        padding: 24px 20px;

    }


    .news-card-content h3 {

        font-size: 23px;

    }


    .news-cta-section {

        padding: 70px 0;

    }

}