@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.5;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

/* containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== COLORS (no vars, static) ===== */
/* green shades, white, black, grey */
.bg-green { background-color: #1f5e3a; }
.bg-light-green { background-color: #eaf4e4; }
.text-green { color: #1f5e3a; }
.text-white { color: #fff; }
.text-black { color: #111; }
.border-green { border-color: #1f5e3a; }

/* ===== HEADER top bar & navbar ===== */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: #0f3b24;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
    width: 100%;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.top-bar a {
    color: #f0f7e6;
    text-decoration: none;
    margin-right: 20px;
    white-space: nowrap;
}

.top-bar a i {
    margin-right: 6px;
}

.social-icons a {
    margin-left: 15px;
    margin-right: 0;
}

/* ===== main navbar ===== */
.navbar {
    background: #ffffff;
    border-bottom: 2px solid #e0f0e6;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0,40,0,0.03);
    width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f5e3a;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo span {
    font-size: 1rem;
    font-weight: 400;
    color: #4b7b5e;
    display: block;
    line-height: 1.2;
    white-space: nowrap;
}

/* desktop nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-item a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-item a i {
    font-size: 0.8rem;
    color: #1f5e3a;
}

.dropdown-content {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,40,0,0.15);
    border-radius: 8px;
    padding: 12px 0;
    display: none;
    z-index: 100;
    border: 1px solid #d4ead4;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    padding: 10px 20px;
    color: #1f3a2a;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #eaf4e4;
    color: #0f3b24;
}

.nav-item:hover .dropdown-content {
    display: block;
}

.donate-btn {
    background-color: #1f5e3a;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.donate-btn:hover {
    background-color: #0f462a;
    color: white;
}

/* mobile sidebar styles */
.mobile-toggle {
    display: none;
    font-size: 2rem;
    color: #1f5e3a;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.mobile-toggle:hover {
    color: #0f462a;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0,40,0,0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 40px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 3px solid #1f5e3a;
}

.sidebar-menu.open {
    right: 0;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #1f5e3a;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    line-height: 1;
}

.close-sidebar:hover {
    color: #0f462a;
}

.sidebar-nav {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

.sidebar-nav li {
    margin-bottom: 6px;
    border-bottom: 1px solid #e0f0e6;
}

.sidebar-nav a {
    display: block;
    padding: 14px 8px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.sidebar-nav a i {
    color: #1f5e3a;
    margin-right: 8px;
    width: 20px;
}

.sidebar-nav a:hover {
    background-color: #f4faf2;
    color: #1f5e3a;
}

.has-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 14px 8px;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.2s;
    border-bottom: 1px solid #e0f0e6;
    width: 100%;
}

.has-dropdown i:first-child {
    color: #1f5e3a;
    margin-right: 8px;
    width: 20px;
}

.has-dropdown .chevron-icon {
    font-size: 1rem;
    transition: transform 0.2s;
    color: #1f5e3a;
    margin-left: auto;
}

.has-dropdown:hover {
    background-color: #f4faf2;
    color: #1f5e3a;
}

.has-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.sidebar-dropdown-content {
    list-style: none;
    padding-left: 32px;
    margin: 8px 0 12px 0;
    display: none;
}

.sidebar-dropdown-content.show {
    display: block;
}

.sidebar-dropdown-content li {
    border-bottom: none;
    margin-bottom: 2px;
}

.sidebar-dropdown-content a {
    padding: 10px 8px;
    font-weight: 400;
    color: #2b4b37;
    font-size: 1rem;
}

.sidebar-dropdown-content a:hover {
    background: #eaf4e4;
}

.sidebar-donate {
    margin-top: 20px;
    width: 100%;
}

.sidebar-donate .donate-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #1f5e3a;
    color: white !important;
    padding: 14px 22px !important;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.sidebar-donate .donate-btn:hover {
    background-color: #0f462a;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 115vh;
    overflow: hidden;
    width: 100%;
    margin-top:2rem;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 30, 10, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 700px;
    margin-left: 10%;
}

.slide-content .primary-tag {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(31,94,58,0.8);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    border: 1px solid #c5e0c5;
}

.slide-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slide-content .secondary-tag {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.cta-primary {
    background: #1f5e3a;
    color: white;
    border: 2px solid #1f5e3a;
}

.cta-primary:hover {
    background: #0f3b24;
    border-color: #0f3b24;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #1f5e3a;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

.dot.active-dot {
    background: #1f5e3a;
    border-color: #fff;
}
/* about section */
.about-enhanced {
    padding: 90px 0;
    background: white;
    width: 100%;
}

.about-enhanced .about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.about-enhanced .left-col {
    flex: 1 1 45%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-enhanced .right-col {
    flex: 1 1 45%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.about-enhanced .description-image-card {
    border-radius: 32px;
    padding: 30px 28px 28px 28px;
    transition: transform 0.2s;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-enhanced .left-badge {
    display: inline-block;
    background: #1f5e3a;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 40px;
    margin-bottom: 18px;
    border: 1px solid #b7dab7;
    align-self: flex-start;
}

.about-enhanced h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f5e3a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-enhanced h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1f5e3a;
    margin-top: 12px;
    border-radius: 4px;
}

.about-enhanced .desc-text {
    margin: 16px 0 24px 0;
}

.about-enhanced .desc-text p {
    font-size: 1rem;
    color: #1e3a2a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-enhanced .desc-text p:last-child {
    margin-bottom: 0;
}

.about-enhanced .desc-text strong {
    color: #1f5e3a;
    font-weight: 700;
}

.about-enhanced .aligned-image {
    border-radius: 24px;
    overflow: hidden;
    margin: 16px 0 6px 0;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0,50,0,0.1);
}

.about-enhanced .aligned-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-enhanced .image-footnote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #edf7ed;
    border-radius: 60px;
    padding: 12px 18px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #1f5e3a;
    font-weight: 500;
    flex-wrap: wrap;
    gap: 10px;
}

.about-enhanced .image-footnote i {
    margin-right: 5px;
    color: #1f5e3a;
}

.about-enhanced .stats-mini {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-enhanced .mv-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.about-enhanced .mv-section-title span {
    font-size: 2rem;
    font-weight: 600;
    color: #1f5e3a;
}

.about-enhanced .mv-section-title i {
    font-size: 2.2rem;
    color: white;
    background: #1f5e3a;
    padding: 12px;
    border-radius: 60%;
}

.about-enhanced .mv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.about-enhanced .mv-card {
    flex: 1 1 200px;
    background: white;
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 12px 26px -6px rgba(31,94,58,0.08);
    border: 1px solid #d4ead4;
    transition: all 0.2s;
}

.about-enhanced .mv-icon {
    background: #eaf4e4;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.about-enhanced .mv-icon i {
    font-size: 2rem;
    color: #1f5e3a;
}

.about-enhanced .mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f5e3a;
    margin-bottom: 12px;
}

.about-enhanced .mv-card p {
    color: #2a3f30;
    font-size: 0.98rem;
    line-height: 1.5;
}

.about-enhanced .mv-card.mission-card {
    border-bottom: 5px solid #1f5e3a;
}

.about-enhanced .mv-card.vision-card {
    border-bottom: 5px solid #7fb07f;
}

.about-enhanced .core-header {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f5e3a;
    margin: 20px 0 22px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-enhanced .core-header i {
    font-size: 2rem;
    background: #1f5e3a;
    color: white;
    padding: 12px;
    border-radius: 50%;
}

.about-enhanced .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.about-enhanced .value-item {
    background: #f6fbf8;
    border-radius: 24px;
    padding: 22px 15px;
    text-align: center;
    border: 1px solid #cee6ce;
    transition: 0.15s;
}

.about-enhanced .value-item:hover {
    background: white;
    border-color: #1f5e3a;
    transform: translateY(-3px);
    cursor: pointer;
}

.about-enhanced .value-icon {
    background: #d9eed9;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.about-enhanced .value-icon i {
    font-size: 1.8rem;
    color: #1f5e3a;
}

.about-enhanced .value-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f5e3a;
    margin-bottom: 8px;
}

.about-enhanced .value-item p {
    font-size: 0.85rem;
    color: #2e4a37;
    line-height: 1.4;
}

.sdg-note {
    font-size: 0.9rem;
    margin-top: 24px;
    color: #4f6b5a;
    background: #f0faf0;
    padding: 14px 18px;
    border-radius: 50px;
    display: inline-block;
}

hr {
    border: 1px solid #c0ddc0;
    margin: 16px 0 24px;
}

/* forestry core section */
.forestry-core {
    padding: 90px 0;
    background: #f6fbf8;
    width: 100%;
}

.forestry-core .section-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.forestry-core .section-intro i {
    font-size: 2.4rem;
    color: white;
    background: #1f5e3a;
    padding: 14px;
    border-radius: 60%;
}

.forestry-core .section-intro span {
    font-size: 2rem;
    font-weight: 600;
    color: #1f5e3a;
}

.forestry-core h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f5e3a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.forestry-core h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1f5e3a;
    margin-top: 14px;
    border-radius: 4px;
}

.forestry-core .core-description {
    max-width: 900px;
    margin-bottom: 50px;
}

.forestry-core .core-description p {
    font-size: 1.1rem;
    color: #1e3a2a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.forestry-core .core-description p strong {
    color: #1f5e3a;
    font-weight: 700;
}

.forestry-core .badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 18px 0 10px;
}

.forestry-core .badge-list span {
    background: #edf7ed;
    color: #1f5e3a;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 22px;
    border-radius: 40px;
    border: 1px solid #b7dab7;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.forestry-core .cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 20px;
}

.forestry-core .card {
    flex: 1 1 260px;
    background: white;
    border-radius: 32px;
    padding: 32px 26px 30px 26px;
    box-shadow: 0 18px 30px -10px rgba(31,94,58,0.12);
    border: 1px solid #e0f0e0;
    transition: transform 0.2s, border-color 0.2s;
}

.forestry-core .card-icon {
    background: #eaf4e4;
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.forestry-core .card-icon i {
    font-size: 2.4rem;
    color: #1f5e3a;
}

.forestry-core .card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f5e3a;
    margin-bottom: 14px;
}

.forestry-core .card p {
    color: #2e4a37;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.forestry-core .feature-list {
    list-style: none;
}

.forestry-core .feature-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #1f3a2a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forestry-core .feature-list i {
    color: #1f5e3a;
    font-size: 1rem;
    width: 20px;
}

.forestry-core .footnote-card {
    background: #f0faf0;
    border-radius: 60px;
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
    border: 1px solid #c8e0c8;
}

.forestry-core .footnote-card .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f5e3a;
    font-weight: 600;
    flex-wrap: wrap;
}

.forestry-core .footnote-card i {
    font-size: 1.8rem;
    color: #1f5e3a;
}

.forestry-core .footnote-card span {
    font-size: 1rem;
    white-space: nowrap;
}

.forestry-core .climate-note {
    font-size: 0.9rem;
    color: #4f6b5a;
    background: #edf7ed;
    padding: 12px 22px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 20px;
}

/* complementary projects section */
.complementary-projects {
    padding: 90px 0;
    background: white;
    width: 100%;
}

.complementary-projects .section-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.complementary-projects .section-intro i {
    font-size: 2.4rem;
    color: white;
    background: #1f5e3a;
    padding: 14px;
    border-radius: 60%;
}

.complementary-projects .section-intro span {
    font-size: 2rem;
    font-weight: 600;
    color: #1f5e3a;
}

.complementary-projects h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f5e3a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.complementary-projects h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1f5e3a;
    margin-top: 14px;
    border-radius: 4px;
}

.complementary-projects .core-description {
    max-width: 900px;
    margin-bottom: 50px;
}

.complementary-projects .core-description p {
    font-size: 1.1rem;
    color: #1e3a2a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.complementary-projects .core-description p strong {
    color: #1f5e3a;
    font-weight: 700;
}

.complementary-projects .badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 18px 0 10px;
}

.complementary-projects .badge-list span {
    background: #edf7ed;
    color: #1f5e3a;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 22px;
    border-radius: 40px;
    border: 1px solid #b7dab7;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.complementary-projects .cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 20px;
}

.complementary-projects .card {
    flex: 1 1 240px;
    min-width: 240px;
    background: white;
    border-radius: 2px;
    border: 1px solid #e0f0e0;
    transition: transform 0.2s, border-color 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #d9e8d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image .overlay-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f5e3a;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 12px rgba(0,40,0,0.2);
    border: 3px solid white;
    z-index: 2;
    transition: background 0.2s;
}

.card:hover .overlay-icon {
    background: #145a32;
}

.card-content {
    padding: 36px 22px 28px 22px;
    flex: 1;
    background: white;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f5e3a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.card-content p {
    color: #2e4a37;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-content .project-highlights {
    list-style: none;
    margin-top: 16px;
}

.card-content .project-highlights li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #1f3a2a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content .project-highlights i {
    color: #1f5e3a;
    font-size: 0.9rem;
    width: 20px;
}

.complementary-projects .footnote-card {
    background: #f0faf0;
    border-radius: 60px;
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
    border: 1px solid #c8e0c8;
}

.complementary-projects .footnote-card .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f5e3a;
    font-weight: 600;
    flex-wrap: wrap;
}

.complementary-projects .footnote-card i {
    font-size: 1.8rem;
    color: #1f5e3a;
}

.complementary-projects .climate-note {
    font-size: 0.9rem;
    color: #4f6b5a;
    background: #edf7ed;
    padding: 12px 22px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 20px;
}

/* newsletter */
.newsletter {
    background-image: url(assets/hero2.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    width: 100%;
}

.newsletter form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
}

.newsletter button {
    background: #0f3b24;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0 40px;
    border-radius: 60px;
    cursor: pointer;
    border: 2px solid #a3d8b0;
    transition: 0.2s;
    white-space: nowrap;
}

.newsletter button:hover {
    background: #092e1a;
}
.subscribe-btn{
    background: #0f3b24;
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 60px;
    cursor: pointer;
    border: 2px solid #a3d8b0;
    transition: 0.2s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #092e1a;
}



/* blog overview section */
.blog-overview {
    padding: 90px 0;
    background: white;
    width: 100%;
}

.blog-overview .section-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-overview .section-intro i {
    font-size: 2.4rem;
    color: white;
    background: #1f5e3a;
    padding: 14px;
    border-radius: 60%;
}

.blog-overview .section-intro span {
    font-size: 2rem;
    font-weight: 600;
    color: #1f5e3a;
}

.blog-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f5e3a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.blog-overview h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #1f5e3a;
    margin-top: 14px;
    border-radius: 4px;
}

.blog-overview .core-description {
    max-width: 800px;
    margin-bottom: 50px;
}

.blog-overview .core-description p {
    font-size: 1.1rem;
    color: #1e3a2a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 40px;
}

.blog-card {
    flex: 1 1 300px;
    min-width: 260px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 18px 30px -10px rgba(31,94,58,0.12);
    border: 1px solid #e0f0e0;
    transition: transform 0.2s, border-color 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background-color: #d9e8d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-card-content {
    padding: 28px 22px 30px 22px;
    flex: 1;
    background: white;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4f6b5a;
    flex-wrap: wrap;
}

.blog-meta i {
    color: #1f5e3a;
    font-size: 0.85rem;
    width: 18px;
    margin-right: 4px;
}

.blog-meta .date, .blog-meta .category {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.blog-card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f5e3a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.blog-card-content p {
    color: #2e4a37;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 22px;
    flex: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #1f5e3a;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, gap 0.2s;
    width: fit-content;
    margin-top: 4px;
    white-space: nowrap;
}

.read-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.read-more-btn:hover {
    border-bottom-color: #1f5e3a;
    gap: 14px;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

.blog-cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0 20px;
}

.explore-all-cta {
    background: #f0faf0;
    border-radius: 60px;
    padding: 16px 42px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #c8e0c8;
    transition: background 0.2s, border-color 0.2s;
    color: #1f5e3a;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.explore-all-cta i {
    font-size: 1.6rem;
    color: #1f5e3a;
    transition: transform 0.2s;
}

.explore-all-cta:hover {
    background: #e5f5e5;
    border-color: #1f5e3a;
}

.explore-all-cta:hover i {
    transform: translateX(5px);
}

.blog-note {
    font-size: 0.9rem;
    color: #2e5a3a;
    background: #edf7ed;
    padding: 12px 22px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 30px;
}

/* footer */
.footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 20px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    border-left: 4px solid #1f5e3a;
    padding-left: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    white-space: nowrap;
}

.footer-col a:hover {
    color: #7bc96f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large tablets and small desktops */
@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 16px;
    }
    
    .nav-item a {
        font-size: 0.95rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
}

/* Tablet landscape */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar .container {
        flex-wrap: nowrap;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo span {
        font-size: 0.8rem;
    }
    
    .hero {
        height: 70vh;
        margin-top: 110px;
    }
    
    .hero .primary-tag {
        font-size: 0.9rem;
        padding: 5px 14px;
    }
    
    .hero .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .hero .slide-content .secondary-tag {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-primary, .cta-secondary {
        white-space: normal;
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
    
    .about-enhanced h2 {
        font-size: 2rem;
    }
    
    .forestry-core h2,
    .complementary-projects h2,
    .blog-overview h2 {
        font-size: 2rem;
    }
    
    .footer-col a {
        white-space: normal;
    }
}

/* Medium-small screens (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
    .top-bar .container {
        justify-content: center;
        gap: 8px;
    }
    
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .contact-info a {
        margin: 0;
        font-size: 0.8rem;
    }
    
    .social-icons a {
        margin: 0 8px;
    }
}

/* Mobile landscape and smaller */
@media screen and (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }
    
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .contact-info a {
        margin: 0 4px;
        font-size: 0.75rem;
    }
    
    .social-icons {
        margin-top: 2px;
    }
    
    .social-icons a {
        margin: 0 6px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        height: 100vh;
        margin-top:0;
    }
    
    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content .secondary-tag {
        font-size: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .about-enhanced {
        padding: 60px 0;
    }
    
    .about-enhanced h2 {
        font-size: 1.8rem;
    }
    
    .about-enhanced .left-col,
    .about-enhanced .right-col {
        min-width: 100%;
    }
    
    .forestry-core .badge-list span,
    .complementary-projects .badge-list span {
        white-space: normal;
        text-align: center;
    }
    
    .forestry-core .footnote-card .stat-item span,
    .complementary-projects .footnote-card .stat-item span {
        white-space: normal;
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .explore-all-cta {
        padding: 14px 24px;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }
}

/* Very small phones */
@media screen and (max-width: 360px) {
    .logo a {
        font-size: 1rem;
    }
    
    .logo span {
        font-size: 0.7rem;
    }
    
    .contact-info a {
        font-size: 0.7rem;
    }
    
    .hero {
        height: 120vh;
        padding:1rem 0;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .forestry-core .badge-list span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    .subscribe-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Desktop above 768px: ensure sidebar overlay never visible */
@media screen and (min-width: 769px) {
    .sidebar-overlay,
    .sidebar-menu {
        display: none;
    }
}