/* =========================================
   AL-IHSAAN FOUNDATION
   MAIN STYLESHEET
========================================= */

:root {
    --primary-green: #0b6b45;
    --dark-green: #06452d;
    --gold: #d4af37;
    --white: #ffffff;
    --light-bg: #f7f9f8;
    --dark: #1d1d1d;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;

    background: var(--light-bg);

    color: var(--dark);
}

.foundation-test {
    min-height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;
}

.foundation-test h1 {
    color: var(--primary-green);

    font-size: 45px;

    margin-bottom: 10px;
}

.foundation-test .tagline {
    color: var(--gold);

    font-size: 22px;

    font-weight: bold;
}

.foundation-test .motto {
    max-width: 700px;

    font-size: 20px;

    line-height: 1.7;
}


/* =====================================================
   WEBSITE SEARCH
===================================================== */

.search-page {
    min-height: 100vh;
    background: #f7f9f8;
}

.search-form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-result-card {
    height: 100%;
    background: #ffffff;

    padding: 30px;

    border-radius: 15px;

    border: 1px solid #e5e5e5;

    transition: all 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.search-result-type {
    display: inline-block;

    padding: 5px 12px;

    margin-bottom: 15px;

    border-radius: 30px;

    background: #e8f4ed;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;
}

.search-result-card h4 {
    color: var(--dark-green);

    font-weight: 700;

    margin-bottom: 12px;
}

.search-result-card p {
    color: #666;

    line-height: 1.7;
}

.search-result-link {
    color: var(--primary-green);

    font-weight: 700;

    text-decoration: none;
}

.search-result-link:hover {
    color: var(--gold);
}

/* =====================================================
   MILESTONE 2 - GLOBAL LAYOUT
===================================================== */

:root {
    --primary-green: #0b6b45;
    --dark-green: #06452d;
    --gold: #d4af37;
    --white: #ffffff;
    --light-bg: #f7f9f8;
    --dark: #1d1d1d;
    --text-muted: #6c757d;
}


/* ==========================================
   GLOBAL
========================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
}

a {
    text-decoration: none;
}


/* ==========================================
   PRELOADER
========================================== */

#preloader {
    position: fixed;
    inset: 0;

    background: var(--dark-green);

    z-index: 9999;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 70px;
    height: 70px;

    margin: auto auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255,255,255,0.3);

    border-top-color: var(--gold);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

.loader-logo i {
    color: var(--gold);
    font-size: 24px;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* ==========================================
   TOPBAR
========================================== */

.topbar {
    background: var(--dark-green);
    color: white;

    font-size: 13px;
}

.topbar-wrapper {
    min-height: 42px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.topbar-contact,
.topbar-right,
.topbar-social {
    display: flex;

    align-items: center;

    gap: 20px;
}

.topbar a {
    color: white;
}

.topbar a:hover {
    color: var(--gold);
}

.language-switcher {
    position: relative;
}

.language-btn {
    background: transparent;

    border: none;

    color: white;

    font-size: 13px;
}

.language-dropdown {
    position: absolute;

    top: 30px;

    right: 0;

    min-width: 130px;

    padding: 10px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 1000;
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
}

.language-dropdown a {
    display: block;

    padding: 8px 10px;

    color: var(--dark);
}

.language-dropdown a:hover {
    background: var(--light-bg);
    color: var(--primary-green);
}


/* ==========================================
   HEADER
========================================== */

.site-header {
    background: white;

    position: sticky;

    top: 0;

    z-index: 999;

    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.navbar {
    min-height: 82px;
}

.site-logo {
    max-height: 62px;

    width: auto;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    padding: 10px 13px !important;

    transition: 0.3s;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-green);
}


/* DROPDOWN */

.dropdown-menu {
    border: none;

    border-radius: 12px;

    padding: 10px;

    margin-top: 10px;

    min-width: 240px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.dropdown-item {
    border-radius: 8px;

    padding: 11px 14px;

    font-size: 14px;

    font-weight: 600;
}

.dropdown-item i {
    color: var(--primary-green);

    width: 25px;
}

.dropdown-item:hover {
    background: #edf7f1;

    color: var(--primary-green);
}


/* SEARCH */

.search-trigger {
    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #edf7f1;

    color: var(--primary-green);

    transition: 0.3s;
}

.search-trigger:hover {
    background: var(--primary-green);

    color: white;
}


/* DONATE BUTTON */

.donate-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 50px;

    background: var(--primary-green);

    color: white;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.donate-btn:hover {
    background: var(--dark-green);

    color: white;

    transform: translateY(-2px);
}


/* ==========================================
   SEARCH MODAL
========================================== */

.search-modal-content {
    border: none;

    border-radius: 20px;

    padding: 20px;
}

.search-modal-description {
    color: var(--text-muted);
}

.search-modal-input {
    display: flex;

    align-items: center;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding-left: 18px;

    overflow: hidden;
}

.search-modal-input i {
    color: var(--primary-green);
}

.search-modal-input input {
    flex: 1;

    border: none;

    outline: none;

    padding: 18px 15px;

    font-size: 16px;
}

.search-modal-input button {
    border: none;

    background: var(--primary-green);

    color: white;

    padding: 18px 25px;

    font-weight: 700;
}

.search-suggestions {
    margin-top: 20px;

    display: flex;

    gap: 10px;

    align-items: center;

    flex-wrap: wrap;
}

.search-suggestions a {
    padding: 7px 13px;

    border-radius: 20px;

    background: var(--light-bg);

    color: var(--primary-green);

    font-size: 13px;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: #052f20;

    color: rgba(255,255,255,0.8);

    padding: 80px 0 25px;
}

.footer-logo {
    max-width: 180px;

    margin-bottom: 25px;
}

.site-footer h4 {
    color: white;

    font-size: 18px;

    margin-bottom: 25px;
}

.footer-brand p {
    max-width: 430px;

    line-height: 1.8;
}

.footer-donate-btn {
    display: inline-flex;

    padding: 12px 20px;

    margin-top: 10px;

    border-radius: 30px;

    background: var(--gold);

    color: #1d1d1d;

    font-weight: 700;
}

.footer-contact,
.footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--gold);

    width: 25px;
}

.footer-contact a,
.footer-links a {
    color: rgba(255,255,255,0.75);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    color: white;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);

    margin-top: 60px;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);

    margin-left: 15px;
}


/* ==========================================
   TEMPORARY PAGE
========================================== */

.temporary-page {
    min-height: 60vh;

    display: flex;

    align-items: center;

    text-align: center;

    background: var(--light-bg);
}

.temporary-page h1 {
    color: var(--primary-green);
}


/* ==========================================
   MOBILE RESPONSIVENESS
========================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 20px 0;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 13px 0 !important;
    }

    .dropdown-menu {
        box-shadow: none;

        border-left: 2px solid var(--primary-green);

        margin-left: 10px;

        margin-top: 0;
    }

    .search-trigger {
        margin: 10px 0;
    }

    .donate-btn {
        justify-content: center;

        margin-top: 10px;
    }

}


@media (max-width: 767px) {

    .topbar {
        display: none;
    }

    .site-logo {
        max-height: 52px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .footer-bottom a {
        margin: 0 8px;
    }

}


@media (max-width: 576px) {

    .search-modal-input {
        flex-wrap: wrap;

        padding-left: 15px;
    }

    .search-modal-input input {
        width: calc(100% - 40px);
    }

    .search-modal-input button {
        width: 100%;
    }

}

/* =====================================================
   MILESTONE 3 - HOME PAGE
===================================================== */

.section-padding {
    padding: 100px 0;
}


/* ==========================================
   SECTION HEADINGS
========================================== */

.section-tag {
    display: inline-block;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-title {
    font-family: "Playfair Display", serif;

    color: var(--dark-green);

    font-size: clamp(32px, 4vw, 50px);

    font-weight: 700;

    margin-bottom: 20px;
}

.section-heading p,
.section-description {
    color: var(--text-muted);

    max-width: 650px;

    line-height: 1.8;
}


/* ==========================================
   HERO
========================================== */

.hero-slide {
    min-height: 680px;

    display: flex;

    align-items: center;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    color: white;
}

.hero-content {
    max-width: 750px;
}

.hero-tag {
    display: inline-block;

    padding: 9px 18px;

    margin-bottom: 25px;

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 30px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 78px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content p {
    max-width: 620px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 50px;

    background: var(--gold);

    color: var(--dark);

    font-weight: 800;

    transition: 0.3s;
}

.hero-btn-primary:hover {
    background: white;

    color: var(--dark-green);

    transform: translateY(-3px);
}

.hero-btn-outline {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    border: 1px solid rgba(255,255,255,0.6);

    border-radius: 50px;

    color: white;

    font-weight: 700;

    transition: 0.3s;
}

.hero-btn-outline:hover {
    background: white;

    color: var(--dark-green);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 7%;
}

.hero-section .carousel-indicators {
    margin-bottom: 30px;
}


/* ==========================================
   WELCOME
========================================== */

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 20px;
}

.welcome-badge {
    position: absolute;

    bottom: -25px;

    right: -20px;

    padding: 25px 30px;

    background: var(--primary-green);

    color: white;

    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.welcome-badge span {
    display: block;

    font-size: 11px;

    letter-spacing: 2px;
}

.welcome-badge strong {
    font-size: 20px;
}

.section-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--primary-green);

    font-weight: 800;
}


/* ==========================================
   VISION
========================================== */

.vision-section {
    padding: 90px 0;

    background: #edf7f1;
}

.vision-card {
    height: 100%;

    padding: 40px;

    background: white;

    border-radius: 18px;

    transition: 0.3s;
}

.vision-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.vision-icon {
    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #edf7f1;

    color: var(--primary-green);

    font-size: 25px;

    margin-bottom: 25px;
}

.vision-card h3 {
    color: var(--dark-green);

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 15px;
}

.vision-card p {
    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 0;
}

.vision-card-highlight {
    background: var(--primary-green);
}

.vision-card-highlight h3,
.vision-card-highlight p {
    color: white;
}

.vision-card-highlight .vision-icon {
    background: rgba(255,255,255,0.15);

    color: var(--gold);
}


/* ==========================================
   THEMATIC AREAS
========================================== */

.thematic-section {
    background: white;
}

.thematic-card {
    height: 100%;

    padding: 40px;

    border: 1px solid #edf0ee;

    border-radius: 18px;

    transition: 0.3s;
}

.thematic-card:hover {
    border-color: var(--primary-green);

    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.thematic-icon {
    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edf7f1;

    border-radius: 15px;

    color: var(--primary-green);

    font-size: 26px;

    margin-bottom: 25px;
}

.thematic-card h3 {
    color: var(--dark-green);

    font-size: 22px;

    font-weight: 800;

    line-height: 1.4;
}

.thematic-card p {
    color: var(--text-muted);

    line-height: 1.8;
}

.thematic-card a {
    color: var(--primary-green);

    font-weight: 800;
}


/* ==========================================
   FEATURED PROGRAMS
========================================== */

.featured-programs-section {
    background: #f7f9f8;
}

.program-card {
    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: white;

    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.program-image {
    height: 260px;

    overflow: hidden;
}

.program-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-content {
    padding: 30px;
}

.program-content span {
    color: var(--primary-green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.program-content h3 {
    margin: 15px 0;

    color: var(--dark-green);

    font-size: 22px;

    font-weight: 800;

    line-height: 1.4;
}

.program-content p {
    color: var(--text-muted);

    line-height: 1.7;
}


/* ==========================================
   STATISTICS
========================================== */

.statistics-section {
    padding: 80px 0;

    background:
        linear-gradient(
            rgba(5,47,32,0.93),
            rgba(5,47,32,0.93)
        ),
        url('../images/home/statistics-bg.jpg');

    background-size: cover;

    background-position: center;

    color: white;
}

.statistic-item i {
    font-size: 35px;

    color: var(--gold);

    margin-bottom: 15px;
}

.statistic-item h2 {
    font-family: "Playfair Display", serif;

    font-size: 50px;

    font-weight: 700;
}

.statistic-item p {
    color: rgba(255,255,255,0.75);

    margin-bottom: 0;
}


/* ==========================================
   FEATURED STORIES
========================================== */

.featured-stories-section {
    background: white;
}

.story-card {
    height: 100%;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #edf0ee;

    transition: 0.3s;
}

.story-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.story-image {
    height: 250px;

    position: relative;

    overflow: hidden;
}

.story-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-image span {
    position: absolute;

    left: 20px;

    bottom: 20px;

    padding: 7px 13px;

    border-radius: 20px;

    background: var(--gold);

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}

.story-content {
    padding: 28px;
}

.story-content small {
    color: var(--primary-green);

    font-weight: 800;

    letter-spacing: 1px;
}

.story-content h3 {
    margin: 13px 0;

    color: var(--dark-green);

    font-size: 23px;

    line-height: 1.4;
}

.story-content p {
    color: var(--text-muted);

    line-height: 1.7;
}

.story-content a {
    color: var(--primary-green);

    font-weight: 800;
}


/* ==========================================
   CTA
========================================== */

.home-cta-section {
    padding: 80px 0;

    background: #f7f9f8;
}

.cta-content {
    padding: 70px;

    border-radius: 25px;

    background: var(--primary-green);

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.cta-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;

    max-width: 700px;

    font-size: 42px;

    margin: 15px 0;
}

.cta-content p {
    color: rgba(255,255,255,0.8);

    margin-bottom: 0;
}

.cta-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    min-width: 300px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .hero-slide {
        min-height: 620px;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero-slide {
        min-height: 580px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }

    .welcome-image img {
        height: 400px;
    }

    .welcome-badge {
        right: 10px;
    }

    .cta-content {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

}


@media (max-width: 576px) {

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;

        justify-content: center;
    }

    .vision-card,
    .thematic-card {
        padding: 30px;
    }

}


/* ==========================================
   ABOUT PAGE
========================================== */

.page-hero {
    min-height: 480px;

    display: flex;

    align-items: center;

    background-position: center;

    background-size: cover;

    color: white;
}

.page-hero-content {
    max-width: 750px;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.15;

    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.85);
}


/* WHO WE ARE */

.about-who-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 20px;
}

.about-who-section p {
    color: var(--text-muted);

    line-height: 1.9;
}


/* VISION MISSION */

.about-vision-section {
    padding: 90px 0;

    background: #edf7f1;
}

.about-vm-card {
    height: 100%;

    padding: 40px;

    background: white;

    border-radius: 18px;

    transition: 0.3s;
}

.about-vm-card:hover {
    transform: translateY(-8px);
}

.about-vm-icon {
    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf7f1;

    color: var(--primary-green);

    border-radius: 15px;

    font-size: 25px;

    margin-bottom: 25px;
}

.about-vm-card h3 {
    font-weight: 800;

    color: var(--dark-green);
}

.about-vm-card p {
    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 0;
}

.motto-card {
    background: var(--primary-green);
}

.motto-card h3,
.motto-card p {
    color: white;
}

.motto-card .about-vm-icon {
    background: rgba(255,255,255,0.15);

    color: var(--gold);
}


/* APPROACH */

.approach-section {
    background: white;
}

.approach-card {
    height: 100%;

    padding: 35px 25px;

    text-align: center;

    border-radius: 18px;

    border: 1px solid #edf0ee;

    transition: 0.3s;
}

.approach-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.approach-card i {
    font-size: 35px;

    color: var(--primary-green);

    margin-bottom: 20px;
}

.approach-card h4 {
    font-weight: 800;

    color: var(--dark-green);
}

.approach-card p {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 0;
}


/* VALUES */

.values-section {
    background: #f7f9f8;
}

.value-item {
    height: 100%;

    display: flex;

    gap: 20px;

    padding: 25px;

    background: white;

    border-radius: 15px;
}

.value-item i {
    color: var(--primary-green);

    font-size: 26px;
}

.value-item h4 {
    color: var(--dark-green);

    font-weight: 800;
}

.value-item p {
    color: var(--text-muted);

    margin-bottom: 0;

    line-height: 1.7;
}


/* LEADERSHIP CTA */

.about-leadership-section {
    padding: 90px 0;

    background: var(--dark-green);

    color: white;
}

.about-leadership-section h2 {
    font-family: "Playfair Display", serif;

    font-size: 42px;

    margin: 15px 0;
}

.about-leadership-section p {
    max-width: 700px;

    color: rgba(255,255,255,0.8);

    line-height: 1.8;
}


@media (max-width: 767px) {

    .page-hero {
        min-height: 400px;
    }

    .about-who-image img {
        height: 380px;
    }

    .about-leadership-section h2 {
        font-size: 32px;
    }

}

/* ==========================================
   TEAM PAGE
========================================== */

.team-section {
    background: #ffffff;
}


.team-card {
    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid #edf0ee;

    transition: 0.3s;
}


.team-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


.team-image {
    height: 320px;

    overflow: hidden;
}


.team-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.team-card:hover .team-image img {
    transform: scale(1.06);
}


.team-content {
    padding: 28px;
}


.team-content h3 {
    color: var(--dark-green);

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 8px;
}


.team-content span {
    display: block;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.5px;

    margin-bottom: 15px;
}


.team-content p {
    color: var(--text-muted);

    line-height: 1.7;
}


.team-socials {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}


.team-socials a {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf7f1;

    color: var(--primary-green);

    transition: 0.3s;
}


.team-socials a:hover {
    background: var(--primary-green);

    color: #ffffff;
}


/* ==========================================
   JOIN TEAM SECTION
========================================== */

.join-team-section {
    padding: 90px 0;

    background: #f7f9f8;
}


.join-team-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 65px;

    border-radius: 25px;

    background: var(--dark-green);

    color: #ffffff;
}


.join-team-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.join-team-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    max-width: 650px;

    margin: 15px 0;
}


.join-team-content p {
    max-width: 650px;

    color: rgba(255,255,255,0.80);

    line-height: 1.8;

    margin-bottom: 0;
}


@media (max-width: 991px) {

    .join-team-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .team-image {
        height: 350px;
    }


    .join-team-content {
        padding: 40px 30px;
    }

}


/* ==========================================
   ADVISORY BOARD PAGE
========================================== */

.advisory-section {
    background: #ffffff;
}


/* ADVISOR CARD */

.advisor-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #edf0ee;

    border-radius: 20px;

    overflow: hidden;

    transition: all 0.35s ease;
}


.advisor-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* IMAGE */

.advisor-image {
    height: 320px;

    overflow: hidden;
}


.advisor-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.advisor-card:hover .advisor-image img {
    transform: scale(1.06);
}


/* CONTENT */

.advisor-content {
    padding: 28px;
}


.advisor-content h3 {
    font-size: 22px;

    font-weight: 800;

    color: var(--dark-green);

    margin-bottom: 8px;
}


.advisor-content span {
    display: block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    color: var(--primary-green);

    margin-bottom: 15px;
}


.advisor-content p {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 20px;
}


/* LINKEDIN */

.advisor-link {
    width: 42px;

    height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf7f1;

    color: var(--primary-green);

    transition: all 0.3s ease;
}


.advisor-link:hover {
    background: var(--primary-green);

    color: #ffffff;
}


/* ==========================================
   ADVISORY CTA
========================================== */

.advisory-cta-section {
    padding: 90px 0;

    background: #f7f9f8;
}


.advisory-cta-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 65px;

    background: var(--dark-green);

    border-radius: 25px;

    color: #ffffff;
}


.advisory-cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    margin: 15px 0;

    max-width: 650px;
}


.advisory-cta-content p {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.80);

    line-height: 1.8;

    margin-bottom: 0;
}


.advisory-cta-button {
    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .advisory-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .advisor-image {
        height: 350px;
    }

    .advisory-cta-content {
        padding: 40px 30px;
    }

}


/* ==========================================
   VOLUNTEERS PAGE
========================================== */

.volunteer-intro-section {
    background: #ffffff;
}

.volunteer-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.volunteer-intro-section p {
    color: var(--text-muted);
    line-height: 1.9;
}


/* OPPORTUNITIES */

.volunteer-opportunities-section {
    background: #f7f9f8;
}

.volunteer-opportunity-card {
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #edf0ee;
    transition: 0.3s ease;
}

.volunteer-opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.opportunity-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #edf7f1;
    color: var(--primary-green);

    font-size: 26px;

    margin-bottom: 25px;
}

.volunteer-opportunity-card h4 {
    font-weight: 800;
    color: var(--dark-green);
}

.volunteer-opportunity-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}


/* WHY VOLUNTEER */

.why-volunteer-section {
    background: #ffffff;
}

.volunteer-benefit {
    display: flex;
    gap: 18px;

    height: 100%;

    padding: 25px;

    background: #f7f9f8;

    border-radius: 15px;
}

.volunteer-benefit i {
    font-size: 25px;
    color: var(--primary-green);
}

.volunteer-benefit h4 {
    color: var(--dark-green);
    font-weight: 800;
}

.volunteer-benefit p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}


/* VOLUNTEER CTA */

.volunteer-cta-section {
    padding: 90px 0;
    background: #f7f9f8;
}

.volunteer-cta-content {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;

    padding: 65px;

    background: var(--primary-green);

    color: #ffffff;

    border-radius: 25px;
}

.volunteer-cta-content span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--gold);
}

.volunteer-cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    max-width: 700px;

    margin: 15px 0;
}

.volunteer-cta-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.85);

    line-height: 1.8;

    margin-bottom: 0;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .volunteer-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .volunteer-intro-image img {
        height: 380px;
    }

    .volunteer-cta-content {
        padding: 40px 30px;
    }

}

/* ==========================================
   PROGRAMS PAGE
========================================== */

.programs-intro-section {
    background: #ffffff;
}

.programs-intro-section p {
    color: var(--text-muted);
    line-height: 1.9;
}

.programs-intro-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 20px;
}


/* THEMATIC PROGRAMS */

.thematic-programs-section {
    background: #f7f9f8;
}


.program-area-card {
    height: 100%;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #edf0ee;

    transition: 0.35s ease;
}


.program-area-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


.program-area-image {
    height: 250px;

    overflow: hidden;
}


.program-area-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.program-area-card:hover .program-area-image img {
    transform: scale(1.07);
}


/* PROGRAM CONTENT */

.program-area-content {
    padding: 30px;
}


.program-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #edf7f1;

    color: var(--primary-green);

    font-size: 24px;

    margin-top: -60px;

    position: relative;

    margin-bottom: 25px;
}


.program-area-content h3 {
    font-size: 23px;

    font-weight: 800;

    line-height: 1.4;

    color: var(--dark-green);
}


.program-area-content p {
    color: var(--text-muted);

    line-height: 1.7;

    margin-top: 15px;
}


.program-area-content a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--primary-green);

    font-weight: 800;

    text-decoration: none;

    transition: 0.3s;
}


.program-area-content a:hover {
    gap: 15px;

    color: var(--dark-green);
}


/* ==========================================
   PROGRAM CTA
========================================== */

.programs-cta-section {
    padding: 90px 0;

    background: #ffffff;
}


.programs-cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 65px;

    background: var(--dark-green);

    border-radius: 25px;

    color: #ffffff;
}


.programs-cta-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.programs-cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    margin: 15px 0;

    max-width: 650px;
}


.programs-cta-content p {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.80);

    line-height: 1.8;

    margin-bottom: 0;
}


@media (max-width: 991px) {

    .programs-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .programs-intro-image img {
        height: 380px;
    }

    .programs-cta-content {
        padding: 40px 30px;
    }

}




/* ==========================================
   STORIES PAGE
========================================== */

.featured-story-section {
    background: #ffffff;
}

.featured-story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    margin-top: 35px;

    border-radius: 22px;

    background: #f7f9f8;
}

.featured-story-image {
    min-height: 450px;
}

.featured-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.featured-story-content {
    padding: 55px;
}

.story-category {
    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.featured-story-content h3 {
    margin: 18px 0;

    color: var(--dark-green);

    font-family: "Playfair Display", serif;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;
}

.featured-story-content p {
    color: var(--text-muted);

    line-height: 1.8;
}

.story-meta {
    display: flex;

    gap: 25px;

    margin: 25px 0;

    color: #68756e;

    font-size: 13px;
}

.story-meta i {
    margin-right: 6px;

    color: var(--primary-green);
}

.story-read-more {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary-green);

    font-weight: 800;

    text-decoration: none;

    transition: .3s;
}

.story-read-more:hover {
    gap: 15px;
}


/* FILTERS */

.story-categories-section {
    padding: 20px 0;

    background: #f7f9f8;

    border-top: 1px solid #edf0ee;
    border-bottom: 1px solid #edf0ee;
}

.story-filters {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.story-filters button {
    border: 1px solid #dce5df;

    background: #ffffff;

    color: var(--dark-green);

    border-radius: 50px;

    padding: 10px 20px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}

.story-filters button:hover,
.story-filters button.active {
    background: var(--primary-green);

    border-color: var(--primary-green);

    color: #ffffff;
}


/* STORY CARDS */

.story-grid-section {
    background: #ffffff;
}

.story-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #edf0ee;

    border-radius: 18px;

    background: #ffffff;

    transition: .35s;
}

.story-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(0,0,0,.09);
}

.story-card-image {
    height: 240px;

    position: relative;

    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.story-card:hover .story-card-image img {
    transform: scale(1.06);
}

.story-card-image span {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    border-radius: 30px;

    background: var(--primary-green);

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.story-card-content {
    padding: 25px;
}

.story-card-date {
    margin-bottom: 10px;

    color: #7b8780;

    font-size: 12px;
}

.story-card-content h3 {
    color: var(--dark-green);

    font-size: 22px;

    font-weight: 800;

    line-height: 1.35;
}

.story-card-content p {
    color: var(--text-muted);

    line-height: 1.7;
}

.story-card-content a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 8px;

    color: var(--primary-green);

    font-weight: 800;

    text-decoration: none;
}

.story-card-content a:hover {
    gap: 14px;
}


/* STORIES CTA */

.stories-cta-section {
    padding: 90px 0;

    background: #f7f9f8;
}

.stories-cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 65px;

    border-radius: 25px;

    background: var(--dark-green);

    color: #ffffff;
}

.stories-cta-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.stories-cta-content h2 {
    max-width: 650px;

    margin: 15px 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);
}

.stories-cta-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.8);

    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .featured-story-card {
        grid-template-columns: 1fr;
    }

    .featured-story-image {
        min-height: 350px;
    }

    .stories-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}

@media (max-width: 767px) {

    .featured-story-content {
        padding: 35px 25px;
    }

    .story-meta {
        flex-direction: column;

        gap: 8px;
    }

    .stories-cta-content {
        padding: 40px 30px;
    }

}


/* =========================================================
   INDIVIDUAL STORY PAGE
========================================================= */

.story-detail-section {
    background: #fff;
}


/* ---------------------------------------------------------
   STORY HERO
--------------------------------------------------------- */

.story-detail-hero {
    min-height: 540px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.story-detail-hero-content {
    max-width: 900px;
    color: #fff;
    padding: 100px 0;
}

.story-detail-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 20px 0 30px;
    font-weight: 700;
}

.story-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 0.9rem;
}

.story-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-detail-meta i {
    color: var(--gold);
}


/* ---------------------------------------------------------
   ARTICLE LAYOUT
--------------------------------------------------------- */

.story-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 70px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 0 50px;
}

.story-article {
    max-width: 800px;
}

.story-article p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.story-article .story-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 35px;
}

.story-article-end {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.story-article-end span {
    color: var(--primary-green);
    font-weight: 700;
    font-style: italic;
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.story-sidebar {
    position: relative;
}

.story-sidebar-card {
    background: #f4f8f5;
    border-left: 4px solid var(--primary-green);
    padding: 35px;
    position: sticky;
    top: 120px;
}

.story-sidebar-card h3 {
    color: var(--dark-green);
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 15px 0;
}

.story-sidebar-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sidebar-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sidebar-link:hover {
    color: var(--dark-green);
}


/* ---------------------------------------------------------
   BACK TO STORIES
--------------------------------------------------------- */

.story-back {
    padding-bottom: 60px;
}

.story-back a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 700;
}

.story-back a:hover {
    color: var(--primary-green);
}


/* ---------------------------------------------------------
   SHARE
--------------------------------------------------------- */

.story-share-section {
    background: #f5f8f6;
    border-top: 1px solid #e4ebe6;
    border-bottom: 1px solid #e4ebe6;
}

.story-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
}

.story-share-title span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-green);
}

.story-share-title h3 {
    margin: 7px 0 0;
    color: var(--dark-green);
}

.story-share-buttons {
    display: flex;
    gap: 10px;
}

.story-share-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-share-buttons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   RELATED STORIES
--------------------------------------------------------- */

.related-stories-section {
    background: #fff;
}

.related-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-story-card {
    background: #fff;
    border: 1px solid #e6ebe8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.related-story-image {
    height: 220px;
    overflow: hidden;
}

.related-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-story-card:hover .related-story-image img {
    transform: scale(1.06);
}

.related-story-content {
    padding: 25px;
}

.related-story-content h3 {
    color: var(--dark-green);
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 12px 0 20px;
}

.related-story-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* ---------------------------------------------------------
   STORY NOT FOUND
--------------------------------------------------------- */

.story-not-found {
    min-height: 550px;
    display: flex;
    align-items: center;
}

.story-not-found h1 {
    color: var(--dark-green);
    margin: 15px 0;
}

.story-not-found p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991px) {

    .story-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-sidebar-card {
        position: static;
    }

    .related-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .story-detail-hero {
        min-height: 480px;
    }

    .story-detail-hero-content {
        padding: 80px 0;
    }

    .story-detail-hero-content h1 {
        font-size: 2.4rem;
    }

    .story-detail-meta {
        flex-direction: column;
        gap: 12px;
    }

    .story-detail-layout {
        padding: 55px 0 30px;
    }

    .story-article p {
        font-size: 1rem;
    }

    .story-article .story-lead {
        font-size: 1.15rem;
    }

    .story-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-stories-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   IMPACT PAGE
========================================== */

.impact-intro-section {
    background: #ffffff;
}

.impact-intro-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 20px;
}

.impact-intro-section p {
    color: var(--text-muted);

    line-height: 1.9;
}


/* ==========================================
   IMPACT STATISTICS
========================================== */

.impact-statistics-section {
    padding: 80px 0;

    background: var(--dark-green);
}

.impact-statistics-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.impact-statistic {
    text-align: center;

    color: #ffffff;
}

.impact-stat-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    color: var(--gold);

    font-size: 25px;
}

.impact-statistic h2 {
    display: inline-block;

    font-size: 48px;

    font-weight: 800;

    margin: 0;
}

.impact-statistic span {
    font-size: 25px;

    color: var(--gold);
}

.impact-statistic p {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
}


/* ==========================================
   IMPACT AREAS
========================================== */

.impact-areas-section {
    background: #f7f9f8;
}

.impact-area-card {
    height: 100%;

    padding: 40px 30px;

    background: #ffffff;

    border: 1px solid #edf0ee;

    border-radius: 18px;

    transition: 0.3s ease;
}

.impact-area-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.impact-area-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #edf7f1;

    color: var(--primary-green);

    font-size: 25px;

    margin-bottom: 25px;
}

.impact-area-card h3 {
    font-size: 22px;

    font-weight: 800;

    color: var(--dark-green);
}

.impact-area-card p {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 0;
}


/* ==========================================
   SDG IMPACT
========================================== */

.sdg-impact-section {
    background: #ffffff;
}

.sdg-impact-section p {
    color: var(--text-muted);

    line-height: 1.8;
}

.sdg-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.sdg-item {
    min-height: 110px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 15px;

    background: #f7f9f8;

    border-left: 4px solid var(--primary-green);

    transition: 0.3s ease;
}

.sdg-item:hover {
    transform: translateX(6px);

    background: #edf7f1;
}

.sdg-item strong {
    font-size: 28px;

    color: var(--primary-green);

    margin-bottom: 5px;
}

.sdg-item span {
    font-size: 14px;

    font-weight: 700;

    color: var(--dark-green);
}


/* ==========================================
   IMPACT CTA
========================================== */

.impact-cta-section {
    padding: 90px 0;

    background: #f7f9f8;
}

.impact-cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 65px;

    background: var(--primary-green);

    border-radius: 25px;

    color: #ffffff;
}

.impact-cta-content span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.impact-cta-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    max-width: 700px;

    margin: 15px 0;
}

.impact-cta-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.85);

    line-height: 1.8;

    margin-bottom: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .impact-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .impact-intro-image img {
        height: 380px;
    }

    .impact-statistics-grid {
        grid-template-columns: 1fr;
    }

    .sdg-grid {
        grid-template-columns: 1fr;
    }

    .impact-cta-content {
        padding: 40px 30px;
    }

}

/* =========================================================
   RESOURCES PAGE
========================================================= */

.resource-intro-section {
    background: #ffffff;
}

.resource-intro-section p {
    color: var(--text-muted);
    line-height: 1.9;
}

.resource-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}


/* RESOURCE CATEGORIES */

.resource-categories-section {
    background: #f7f9f8;
}

.resource-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.resource-category-card {
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid #edf0ee;
    transition: 0.3s ease;
}

.resource-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.resource-category-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf7f1;
    color: var(--primary-green);

    border-radius: 15px;
    font-size: 22px;

    margin-bottom: 25px;
}

.resource-category-card h3 {
    color: var(--dark-green);
    font-size: 20px;
    font-weight: 800;
}

.resource-category-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.resource-category-card span {
    color: var(--primary-green);
    font-weight: 700;
}


/* FEATURED ACTIVITIES */

.featured-resources-section {
    background: #ffffff;
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.featured-resource-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #edf0ee;
    transition: 0.3s ease;
}

.featured-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.featured-resource-image {
    height: 240px;
    overflow: hidden;
}

.featured-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.featured-resource-card:hover img {
    transform: scale(1.08);
}

.featured-resource-content {
    padding: 28px;
}

.featured-resource-content span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    font-weight: 800;
}

.featured-resource-content h3 {
    color: var(--dark-green);
    margin: 12px 0;
    font-size: 21px;
}

.featured-resource-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.featured-resource-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}


/* GALLERY */

.gallery-preview-section {
    background: #f7f9f8;
}

.gallery-view-all {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 230px 230px;
    gap: 15px;
    margin-top: 40px;
}

.gallery-preview-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-preview-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}


/* DOWNLOADS */

.downloads-section {
    background: #ffffff;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px;

    border-radius: 15px;

    background: #f7f9f8;

    transition: 0.3s ease;
}

.download-item:hover {
    transform: translateX(5px);
}

.download-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 12px;

    color: var(--primary-green);

    font-size: 22px;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    margin: 0 0 5px;
    color: var(--dark-green);
    font-size: 17px;
}

.download-info span {
    color: var(--text-muted);
    font-size: 13px;
}

.download-btn {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-green);
    color: #ffffff;

    text-decoration: none;
}


/* CTA */

.resources-cta-section {
    padding: 100px 0;
    background: var(--dark-green);
    text-align: center;
}

.resources-cta-content {
    max-width: 800px;
    margin: auto;
    color: #ffffff;
}

.resources-cta-content > span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
}

.resources-cta-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin: 20px 0;
}

.resources-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.resources-cta-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 15px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .resource-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .resource-intro-image img {
        height: 320px;
    }

    .resource-category-grid {
        grid-template-columns: 1fr;
    }

    .featured-resources-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 200px 200px;
    }

    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .resources-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */


/* CONTACT INFORMATION */

.contact-info-section {
    background: #ffffff;
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.contact-info-card {
    text-align: center;

    padding: 45px 30px;

    border: 1px solid #edf0ee;

    border-radius: 20px;

    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    background: #edf7f1;

    color: var(--primary-green);

    border-radius: 18px;

    font-size: 26px;
}

.contact-info-card h3 {
    color: var(--dark-green);

    font-weight: 800;

    font-size: 22px;
}

.contact-info-card p {
    color: var(--text-muted);

    line-height: 1.7;
}

.contact-info-card a {
    color: var(--primary-green);

    font-weight: 700;

    text-decoration: none;
}

.contact-info-card span {
    color: var(--primary-green);

    font-weight: 600;
}


/* CONTACT FORM */

.contact-form-section {
    background: #f7f9f8;
}

.contact-form-intro {
    padding-right: 30px;
}

.contact-form-intro p {
    color: var(--text-muted);

    line-height: 1.9;

    margin-top: 20px;
}

.contact-social-links {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-green);

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-social-links a:hover {
    transform: translateY(-4px);

    background: var(--dark-green);
}


/* FORM BOX */

.contact-form-wrapper {
    padding: 45px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.form-group {
    display: flex;

    flex-direction: column;
}

.form-group label {
    font-size: 14px;

    font-weight: 700;

    color: var(--dark-green);

    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #e3e8e5;

    border-radius: 10px;

    outline: none;

    transition: 0.3s ease;

    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);

    box-shadow: 0 0 0 3px rgba(24, 120, 78, 0.1);
}


/* SUBMIT BUTTON */

.contact-submit-btn {
    border: none;

    padding: 15px 28px;

    border-radius: 10px;

    background: var(--primary-green);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--dark-green);

    transform: translateY(-3px);
}


/* LOCATION */

.contact-location-section {
    padding: 100px 0;

    background: #ffffff;
}

.contact-location-header {
    max-width: 650px;

    margin-bottom: 40px;
}

.contact-map-wrapper {
    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
    display: block;
}


/* CTA */

.contact-cta-section {
    padding: 100px 0;

    background: var(--dark-green);

    text-align: center;
}

.contact-cta-content {
    max-width: 850px;

    margin: auto;

    color: #ffffff;
}

.contact-cta-content > span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-cta-content h2 {
    font-size: clamp(34px, 5vw, 55px);

    margin: 20px 0;
}

.contact-cta-content p {
    color: rgba(255, 255, 255, 0.8);

    max-width: 700px;

    margin: auto;

    line-height: 1.8;
}

.contact-cta-buttons {
    margin-top: 35px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-intro {
        padding-right: 0;
    }

}


@media (max-width: 767px) {

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-location-section {
        padding: 70px 0;
    }

}

/* =========================================================
   DONATE PAGE
========================================================= */

.why-donate-section {
    background: #ffffff;
}

.why-donate-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.why-donate-section p {
    color: var(--text-muted);
    line-height: 1.9;
}


/* BENEFITS */

.donate-benefits {
    margin-top: 30px;
}

.donate-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.donate-benefit i {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-green);
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
}


/* DONATION IMPACT */

.donation-impact-section {
    background: #f7f9f8;
}

.donation-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.donation-impact-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
}

.donation-impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.donation-impact-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 18px;

    background: #edf7f1;
    color: var(--primary-green);

    font-size: 25px;
}

.donation-impact-card h3 {
    color: var(--dark-green);
    font-weight: 800;
}

.donation-impact-card p {
    color: var(--text-muted);
    line-height: 1.7;
}


/* DONATION FORM */

.donation-form-section {
    background: #ffffff;
}

.donation-form-container {
    max-width: 900px;
    margin: auto;
}

.donation-form-heading {
    text-align: center;
    margin-bottom: 45px;
}

.donation-form-heading h2 {
    color: var(--dark-green);
    font-size: 38px;
    margin: 15px 0;
}

.donation-form-heading p {
    color: var(--text-muted);
}


/* DONATION TYPE */

.donation-type-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.donation-type {
    padding: 13px 25px;
    border-radius: 8px;

    border: 1px solid #e2e8e4;

    background: #ffffff;

    font-weight: 700;

    cursor: pointer;
}

.donation-type.active {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}


/* DONATION AMOUNTS */

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.donation-amount {
    padding: 18px 10px;

    background: #f7f9f8;

    border: 1px solid #e2e8e4;

    border-radius: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.donation-amount:hover,
.donation-amount.active {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}


/* CUSTOM AMOUNT */

.custom-donation {
    margin-top: 25px;
}

.custom-donation label {
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
    display: block;
}

.amount-input {
    display: flex;
}

.amount-input span {
    padding: 14px 18px;
    background: #f1f4f2;
    font-weight: 700;
    border-radius: 10px 0 0 10px;
}

.amount-input input {
    flex: 1;

    border: 1px solid #e2e8e4;

    padding: 14px;

    outline: none;

    border-radius: 0 10px 10px 0;
}


/* DONOR DETAILS */

.donor-details,
.payment-methods {
    margin-top: 45px;
}

.donor-details h3,
.payment-methods h3 {
    color: var(--dark-green);
    font-size: 22px;
    margin-bottom: 25px;
}


/* SELECT */

.form-group select {
    width: 100%;

    padding: 14px;

    border: 1px solid #e3e8e5;

    border-radius: 10px;

    background: #ffffff;

    outline: none;
}


/* PAYMENT */

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    padding: 25px;

    border: 1px solid #e3e8e5;

    border-radius: 12px;

    cursor: pointer;

    transition: 0.3s ease;
}

.payment-option-content i {
    font-size: 25px;
    color: var(--primary-green);
}

.payment-option input:checked + .payment-option-content {
    border-color: var(--primary-green);

    background: #edf7f1;
}


/* SUBMIT */

.donate-submit-btn {
    width: 100%;

    margin-top: 40px;

    padding: 18px;

    border: none;

    border-radius: 10px;

    background: var(--primary-green);

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.donate-submit-btn:hover {
    background: var(--dark-green);
}

.donation-security {
    text-align: center;

    color: var(--text-muted);

    font-size: 13px;

    margin-top: 20px;
}


/* OTHER WAYS */

.other-ways-section {
    background: #f7f9f8;
}

.other-ways-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 45px;
}

.other-way-card {
    background: #ffffff;

    padding: 40px 30px;

    border-radius: 18px;

    transition: 0.3s ease;
}

.other-way-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.other-way-icon {
    font-size: 30px;

    color: var(--primary-green);

    margin-bottom: 20px;
}

.other-way-card h3 {
    color: var(--dark-green);
}

.other-way-card p {
    color: var(--text-muted);

    line-height: 1.7;
}

.other-way-card a {
    color: var(--primary-green);

    font-weight: 700;

    text-decoration: none;
}


/* CTA */

.donate-cta-section {
    padding: 100px 0;

    background: var(--dark-green);

    text-align: center;
}

.donate-cta-content {
    max-width: 850px;

    margin: auto;

    color: #ffffff;
}

.donate-cta-content > span {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.donate-cta-content h2 {
    font-size: clamp(32px, 5vw, 55px);

    margin: 20px 0;
}

.donate-cta-content p {
    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 35px;

    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .donation-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-ways-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .why-donate-image img {
        height: 350px;
    }

    .donation-impact-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .donation-type-selector {
        flex-direction: column;
    }

}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: var(--primary-green);

    color: #ffffff;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: 0.3s ease;

    z-index: 999;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--dark-green);

    transform: translateY(-5px);

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   FINAL RESPONSIVE POLISH
========================================================= */

@media (max-width: 767px) {


    /* GENERAL */

    .section-padding {

        padding-top: 70px;

        padding-bottom: 70px;

    }


    .section-title {

        font-size: 30px;

        line-height: 1.3;

    }


    /* PAGE HERO */

    .page-hero {

        min-height: 420px;

        display: flex;

        align-items: center;

    }


    .page-hero-content h1 {

        font-size: 38px;

        line-height: 1.2;

    }


    /* BUTTONS */

    .hero-btn-primary,
    .hero-btn-secondary {

        padding: 13px 22px;

        font-size: 14px;

    }


    /* CARDS */

    .program-card,
    .story-card,
    .impact-card,
    .contact-info-card,
    .other-way-card {

        padding: 25px;

    }


    /* FOOTER */

    .footer {

        text-align: center;

    }


    .footer-socials {

        justify-content: center;

    }


    /* BACK TO TOP */

    .back-to-top {

        width: 43px;

        height: 43px;

        right: 15px;

        bottom: 15px;

    }

}

/* =========================================================
   404 ERROR PAGE
========================================================= */

.error-page {

    min-height: 80vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f7f9f8;

    text-align: center;

}


.error-content {

    max-width: 700px;

    margin: auto;

}


.error-number {

    display: block;

    font-size: clamp(100px, 15vw, 220px);

    font-weight: 900;

    line-height: 1;

    color: var(--primary-green);

    opacity: 0.12;

}


.error-content h1 {

    font-size: clamp(32px, 5vw, 52px);

    color: var(--dark-green);

    margin-bottom: 20px;

}


.error-content p {

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;

}