:root {
    --primary: #1A6B3C;
    --primary-dark: #0D3B22;
    --primary-light: #4CAF78;
    --secondary: #D4820A;
    --accent: #E8F5E9;
    --tricolor-saffron: #FF9933;
    --tricolor-white: #FFFFFF;
    --tricolor-green: #138808;
    --govt-navy: #003580;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f4f6f9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tricolor strip (India flag colors) at the very top */
body::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(to right, var(--tricolor-saffron) 33.33%, var(--tricolor-white) 33.33% 66.66%, var(--tricolor-green) 66.66%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1003;
}

/* Topbar */
.topbar {
    background: var(--govt-navy);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.72rem;
    font-weight: 500;
    position: fixed;
    top: 5px;
    width: 100%;
    z-index: 1001;
    min-height: 38px;
    border-bottom: 2px solid var(--secondary);
}

.topbar .container {
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.govt-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.govt-brand i {
    color: var(--tricolor-saffron);
    margin-right: 8px;
}

.topbar-accessibility {
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-link {
    color: var(--white);
    opacity: 0.85;
    transition: var(--transition);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.access-link:hover {
    opacity: 1;
    color: var(--tricolor-saffron);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

.text-resize-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.text-resize-btn:hover {
    background: var(--white);
    color: var(--govt-navy);
}

.lang-switch {
    color: var(--white);
    opacity: 0.7;
    font-weight: 700;
    transition: var(--transition);
}

.lang-switch.active, .lang-switch:hover {
    opacity: 1;
    color: var(--tricolor-saffron);
}

/* Header */
header {
    background: var(--white);
    padding: 0;
    position: fixed;
    top: 43px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.12);
    height: 130px;
    border-bottom: 3px solid var(--primary);
}

header .container {
    max-width: 100%;
    padding: 0;
    display: table; /* Non-flex layout */
    height: 130px;
    width: 100%;
}

.logo-area {
    display: table-cell;
    vertical-align: middle;
    padding-left: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.main-logo {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dept-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--govt-navy);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.org-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.header-right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    padding-right: 20px;
}

.header-right nav, .header-right .btn-donate {
    display: inline-block;
    vertical-align: middle;
}

.header-right nav {
    margin-right: 30px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

nav .nav-links {
    display: flex;
    gap: 30px;
}

nav .nav-links a {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: var(--primary);
}

.btn-volunteer {
    background: var(--primary-dark);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    min-height: 100vh;
    color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 178px; /* topbar(43) + header(130) + 5px tricolor */
    padding-bottom: 0;
}

/* Slide Backgrounds */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.05);
    z-index: 0;
}
.slide-bg.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 30, 15, 0.82) 0%,
        rgba(5, 30, 15, 0.55) 50%,
        rgba(5, 30, 15, 0.2) 100%
    );
    z-index: 2;
}

/* Government strip inside hero */
.hero-govt-strip {
    position: relative;
    z-index: 6;
    background: rgba(0, 53, 128, 0.9);
    border-bottom: 2px solid var(--secondary);
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.govt-strip-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.govt-emblem {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hero .container {
    margin-left: max(20px, calc((100% - 1300px) / 2));
    margin-right: auto;
    flex: 1;
}

.hero-content {
    max-width: 750px;
    text-align: left;
    padding-bottom: 20px;
}

/* Official badge */
.hero-official-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-left: 4px solid var(--secondary);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Slide Titles */
.slide-titles {
    position: relative;
    min-height: 200px;
}
.slide-title {
    display: none;
    animation: slideInLeft 0.6s ease forwards;
}
.slide-title.active {
    display: block;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
}
.hero-content h1 span {
    color: #7ed89e;
    font-style: italic;
}

.hero-location-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid var(--secondary);
    padding-left: 12px;
    margin-left: 2px;
    text-transform: none;
}
.hero-location-tag i {
    color: var(--secondary);
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 35px;
    opacity: 0.88;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 400;
    text-transform: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 18px 30px;
    width: fit-content;
}
.hero-stat {
    padding: 0 25px;
    text-align: center;
}
.hero-stat h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 4px;
    text-shadow: none;
}
.hero-stat p {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 700;
    margin: 0;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Slider Controls (dots) */
.slider-controls {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slide-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.slider-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Forest Thumbnail Strip */
.hero-forest-strip {
    position: relative;
    z-index: 6;
    background: rgba(5, 30, 15, 0.75);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255,255,255,0.1);
    padding: 14px 0;
}
.forest-thumbs {
    display: flex;
    gap: 12px;
}
.forest-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    flex: 1;
    background: rgba(255,255,255,0.05);
}
.forest-thumb:hover, .forest-thumb.active {
    background: rgba(255,255,255,0.15);
    border-color: var(--secondary);
}
.forest-thumb.active {
    border-left: 3px solid var(--secondary);
}
.forest-thumb img {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.forest-thumb span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

/* Hero Btns */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h4 {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.about-text h4::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-points li i {
    color: var(--primary);
}

.about-img-circle {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.about-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid var(--accent);
}

/* Programs Section */
.programs {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h4 {
    color: var(--primary);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.program-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    background: var(--primary);
    color: var(--white);
}

.program-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.program-card:hover i {
    color: var(--white);
}

.program-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Impact Section */
.impact {
    padding: 60px 0;
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.9)), url('../assets/images/hero_sundarban.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.impact-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.impact-item h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Gallery & Testimonial Section */
.gallery-testimonial {
    padding: 60px 0;
}

.gt-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Blog Section */
.blog {
    padding: 60px 0;
}

.blog-grid {
    display: block; /* Stack on mobile by default, grid on desktop */
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: none;
}

.newsletter-card {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.newsletter-card input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    margin: 20px 0;
}

.btn-subscribe {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    cursor: pointer;
}

/* Footer CTA */
.footer-cta {
    background: var(--accent);
    padding: 60px 0;
    text-align: center;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2000;
    pointer-events: none;
}

.whatsapp-btn, .back-to-top {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: auto;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    float: left;
}

.back-to-top {
    background: var(--primary);
    color: white;
    float: right;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover, .back-to-top:hover {
    transform: scale(1.1);
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        gap: 15px;
    }
    .header-right nav {
        margin-right: 15px;
    }
}

/* ===== TABLET / MOBILE HEADER & TOPBAR ===== */
@media (max-width: 992px) {

    /* ---- Topbar: collapse to static, wrap content ---- */
    .topbar {
        position: relative;
        top: 0;
        height: auto;
        min-height: auto;
        padding: 8px 0;
    }
    .topbar .container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        padding: 0 16px;
    }
    .topbar-info {
        flex-direction: column;
        gap: 4px;
    }
    .topbar-accessibility {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    .hide-mobile {
        display: none !important;
    }

    /* ---- Header: switch from table layout to flex ---- */
    header {
        position: sticky;
        top: 0;
        height: auto;
        border-bottom: 2px solid var(--primary);
        z-index: 1000;
    }
    header .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: auto;
        padding: 10px 16px;
        position: relative;
        width: 100%;
    }

    /* ---- Logo area ---- */
    .logo-area {
        display: flex;
        align-items: center;
        padding-left: 0;
        flex: 1;
        min-width: 0;
    }
    .logo-container {
        gap: 10px;
    }
    .main-logo {
        height: 54px;
    }
    .dept-title {
        font-size: 0.48rem;
        display: none; /* hide on small screens to save space */
    }
    .org-title {
        font-size: 1rem;
    }
    .tagline {
        font-size: 0.52rem;
    }

    /* ---- Hamburger button ---- */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: static;          /* normal flow inside flex container */
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin-left: 12px;
        border-radius: 8px;
        background: var(--primary);
        color: var(--white);
        font-size: 1.25rem;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    .nav-toggle:hover {
        background: var(--primary-dark);
    }

    /* ---- Slide-down nav panel ---- */
    .header-right {
        display: none;
        position: absolute;
        top: 100%;        /* directly below header */
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 20px 20px;
        border-top: 2px solid var(--primary);
        border-bottom: 3px solid var(--primary);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 999;
        width: 100%;
    }
    .header-right.active {
        display: block;
    }
    .header-right nav {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    .nav-links li a {
        display: block;
        padding: 13px 8px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* ---- Hero adjustment (topbar now static, header sticky) ---- */
    .hero {
        padding-top: 40px;
        min-height: 100vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .slider-controls {
        right: 15px;
        bottom: 120px;
    }
    .slider-arrow {
        display: none;
    }
    .hero-govt-strip {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .main-logo {
        height: 44px;
    }
    .org-title {
        font-size: 0.88rem;
    }
}

@media (max-width: 768px) {
    .about-grid, .gt-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .programs-grid, .impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-img-circle {
        width: 280px;
        height: 280px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-stats {
        width: 100%;
        justify-content: center;
        padding: 15px 10px;
    }
    .hero-stat {
        padding: 0 10px;
    }
    .forest-thumbs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .forest-thumb span {
        font-size: 0.65rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-official-badge {
        font-size: 0.62rem;
    }
}

/* Additional Custom Responsive and Official Design Rules */
.forest-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.footer-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1200px) {
    .forest-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* duplicate 992px block removed – merged into primary block above */

@media (max-width: 600px) {
    .forest-showcase-grid {
        grid-template-columns: 1fr;
    }
    .footer-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-cta-btns a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Subpage Hero Banner Override */
.subpage-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding-top: 178px; /* 5px tricolor + 38px topbar + 130px header = 173px, add 5px buffer */
    padding-bottom: 40px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.subpage-hero .container {
    position: relative;
    z-index: 5;
}

.subpage-hero .hero-content {
    max-width: 800px;
    text-align: left;
}

@media (max-width: 992px) {
    /* On tablet/mobile, topbar is relative so hero only needs to clear sticky header */
    .subpage-hero {
        min-height: 280px;
        padding-top: 60px; /* header is sticky but shorter on mobile */
        padding-bottom: 30px;
    }
    .subpage-hero .hero-content h1 {
        font-size: 2rem !important;
    }
    .subpage-hero .hero-content p {
        font-size: 0.88rem !important;
    }
}

@media (max-width: 576px) {
    .subpage-hero {
        min-height: 240px;
        padding-top: 40px;
        padding-bottom: 25px;
    }
    .subpage-hero .hero-content h1 {
        font-size: 1.6rem !important;
    }
}


/* Breadcrumb Styling */
.breadcrumb-area {
    background: #f0f4f8;
    padding: 10px 0;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid #d1dce8;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 5px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
}

.breadcrumb li a:hover {
    background: rgba(26, 107, 60, 0.08);
    color: var(--primary-dark);
}

.breadcrumb li.active {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
}

/* Separator — inline between items */
.breadcrumb li.bc-sep {
    padding: 0 2px;
    color: #adb5bd;
    font-size: 0.6rem;
    pointer-events: none;
    line-height: 1;
}

/* Legacy separator support (i.separator inside li) */
.breadcrumb li .separator,
.breadcrumb .separator {
    font-size: 0.58rem;
    color: #adb5bd;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 576px) {
    .breadcrumb-area {
        padding: 8px 0;
        font-size: 0.72rem;
    }
    .breadcrumb li a,
    .breadcrumb li.active {
        padding: 3px 5px;
        letter-spacing: 0;
    }
}

/* Responsive Grid and Utility Classes */
.stats-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 576px) {
    .stats-grid-two {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.beyond-planting-card {
    background: var(--primary-dark);
    border-radius: 30px;
    padding: 60px 80px;
    color: white;
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 992px) {
    .beyond-planting-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 30px;
        text-align: center;
    }
    .beyond-planting-card img {
        max-width: 320px;
        width: 100% !important;
        margin: 0 auto;
    }
}

.map-section {
    height: 500px;
    padding: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .map-section {
        height: 350px;
    }
}

/* ============================================
   SHARED PAGE SECTION STYLES
   ============================================ */
.page-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Page CTA Section */
.page-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--govt-navy) 100%);
    padding: 60px 0;
    color: white;
}
.page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.page-cta-inner h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}
.page-cta-inner > div > p {
    opacity: 0.8;
    font-size: 1rem;
}
.page-cta-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    padding: 15px 28px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
/* Quick Stats Bar */
.about-stats-bar {
    background: var(--primary-dark);
    padding: 25px 0;
    border-bottom: 3px solid var(--secondary);
}
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
    color: white;
}
.about-stat-item .stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}
.about-stat-item .stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
    margin-top: 5px;
}
.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* About Image Wrapper */
.about-img-wrapper {
    position: relative;
}
.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 480px;
}
.img-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--primary-dark);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.img-badge i {
    font-size: 1.8rem;
    color: var(--secondary);
}

/* Philosophy Block */
.philosophy-block {
    background: var(--bg-light);
    padding: 30px 35px;
    border-left: 5px solid var(--primary);
    border-radius: 0 16px 16px 0;
    margin: 25px 0;
}
.philosophy-block h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-transform: none;
}
.philosophy-block p {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    font-size: 1.05rem;
}

/* Tags */
.about-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.tag {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(26,107,60,0.2);
}

/* MVV Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.mvv-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: var(--transition);
}
.mvv-mission { border-top-color: var(--primary); }
.mvv-vision { border-top-color: var(--govt-navy); }
.mvv-values { border-top-color: var(--secondary); }
.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}
.mvv-mission .mvv-icon { background: var(--primary); }
.mvv-vision .mvv-icon { background: var(--govt-navy); }
.mvv-values .mvv-icon { background: var(--secondary); }
.mvv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.mvv-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
}
.values-list li i { color: var(--secondary); }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--govt-navy));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}
.timeline-item.right {
    flex-direction: row-reverse;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
    flex-shrink: 0;
}
.timeline-year {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    width: calc(50% - 40px);
    text-align: right;
    padding-top: 4px;
    flex-shrink: 0;
}
.timeline-item.right .timeline-year {
    text-align: left;
}
.timeline-content {
    width: calc(50% - 40px);
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary);
}
.timeline-item.right .timeline-content {
    border-left: none;
    border-right: 3px solid var(--govt-navy);
}
.timeline-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: none;
}
.timeline-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   INITIATIVES PAGE STYLES
   ============================================ */
.initiatives-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.initiative-overview-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.initiative-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.iov-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
}
.initiative-overview-card h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.initiative-overview-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.iov-stat {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.initiative-detail-section {
    padding: 80px 0;
}

.initiative-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.initiative-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.initiative-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.initiative-impact-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}
.iim-item {
    text-align: center;
}
.iim-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.iim-item p {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0;
}

.initiative-stat-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}
.initiative-stat-box h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.initiative-stat-box p {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 1px;
}

/* ============================================
   IMPACT PAGE STYLES
   ============================================ */
.impact-number-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid #e2e8f0;
    transition: var(--transition);
}
.impact-number-card:hover {
    transform: translateY(-5px);
}
.inc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.impact-number-card h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: none;
}
.impact-number-card p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.inc-bar {
    height: 5px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
}
.inc-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease;
}

.impact-features-row {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}
.impact-feature {
    flex: 1;
    min-width: 120px;
}
.impact-feature i {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 8px;
    display: block;
}
.impact-feature h5 {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}
.impact-feature p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.forest-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.forest-breakdown-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.forest-breakdown-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.fbc-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.fbc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.forest-breakdown-card:hover .fbc-image img {
    transform: scale(1.08);
}
.fbc-region {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 10px 12px 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fbc-content {
    padding: 20px;
}
.fbc-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.fbc-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}
.fbc-stats span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}
.fbc-stats span strong {
    color: var(--primary);
}
.fbc-bar-wrap {
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.fbc-bar {
    height: 100%;
    border-radius: 4px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.cib-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 40px;
    color: white;
}
.cib-item h5 {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}
.cib-item p {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
}
.cib-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary);
    flex-shrink: 0;
}
.cib-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.contact-form-header {
    background: var(--primary-dark);
    padding: 30px 40px;
    color: white;
}
.contact-form-header h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 6px;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-form-header p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}
.contact-form {
    padding: 35px 40px;
}
.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}
.form-group textarea {
    resize: vertical;
}
.btn-submit {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.helpline-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--govt-navy));
    color: white;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
}
.helpline-badge {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0 auto 15px;
}
.helpline-card h4 {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.helpline-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
    text-transform: none;
}
.helpline-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.helpline-card p {
    font-size: 0.78rem;
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

.whatsapp-contact-card {
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
}
.whatsapp-contact-card .fab {
    font-size: 2.5rem;
    color: #25D366;
    flex-shrink: 0;
}
.whatsapp-contact-card h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.whatsapp-contact-card p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
}
.btn-wa {
    background: #25D366;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
    transition: var(--transition);
}
.btn-wa:hover {
    background: #1ebe57;
}

.contact-social-block {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 25px;
}
.contact-social-block h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.social-links-row {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: var(--transition);
}
.social-link:hover { transform: scale(1.12); }
.social-link.fb { background: #1877F2; }
.social-link.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.tw { background: #1DA1F2; }
.social-link.yt { background: #FF0000; }

/* ============================================
   RESPONSIVE — SUBPAGES
   ============================================ */
@media (max-width: 1200px) {
    .initiatives-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .forest-breakdown-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .page-section { padding: 60px 0; }
    .values-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .about-stats-row { flex-wrap: wrap; gap: 20px; }
    .about-stat-item { padding: 0 25px; }
    .page-cta-inner { flex-direction: column; text-align: center; }
    .page-cta-btns { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 25px; }
    .contact-form-header { padding: 25px; }
    .form-row-two { grid-template-columns: 1fr; gap: 0; }
    .timeline::before { left: 20px; }
    .timeline-item { flex-direction: column; padding-left: 50px; }
    .timeline-item.right { flex-direction: column; }
    .timeline-dot { left: 20px; }
    .timeline-year { width: auto; text-align: left; }
    .timeline-item.right .timeline-year { text-align: left; }
    .timeline-content { width: 100%; }
    .timeline-item.right .timeline-content { border-right: none; border-left: 3px solid var(--primary); }
    .contact-info-bar { gap: 20px; }
    .cib-item { padding: 0 15px; }
    .cib-divider { display: none; }
}

@media (max-width: 768px) {
    .initiatives-overview-grid { grid-template-columns: 1fr 1fr; }
    .forest-breakdown-grid { grid-template-columns: 1fr 1fr; }
    .initiative-impact-mini { flex-wrap: wrap; gap: 15px; }
    .about-stats-row { flex-direction: column; gap: 15px; }
    .about-stat-divider { display: none; }
    .contact-info-bar { flex-direction: column; text-align: center; }
    .cib-item { justify-content: center; }
    .img-badge { left: 15px; font-size: 0.65rem; padding: 12px 15px; }
}

@media (max-width: 576px) {
    .initiatives-overview-grid { grid-template-columns: 1fr; }
    .forest-breakdown-grid { grid-template-columns: 1fr; }
    .impact-features-row { flex-direction: column; }
    .social-links-row { justify-content: flex-start; }
}

