:root {
    --green: #7CB342;
    --green-dark: #4a7c2f;
    --green-deep: #2d5016;
    --green-light: rgba(124, 179, 66, 0.1);
    --cream: #f8f5f0;
    --charcoal: #1a1a1a;
    --mid-grey: #555;
    --border: #e5e7eb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed !important;
    z-index: 1000;
    width: 100%;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(12px);
    padding: 1rem 2rem !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(45, 80, 22, 0.97) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.logo {
    border-radius: 50%;
    border: 2px solid var(--green);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
}

.navbar-brand:hover {
    color: var(--green) !important;
}

.navbar-nav {
    flex-direction: row !important;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-size: 0.92rem !important;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green) !important;
}

.nav-donate-btn {
    background: var(--green);
    color: #fff !important;
    padding: 0.4rem 1.3rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-donate-btn:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.nav-donate-btn::after {
    display: none !important;
}

.navbar-toggler {
    border: 2px solid var(--green) !important;
    padding: 0.4rem 0.6rem !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(124,179,66,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Background image slides */
.herobg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    position: absolute !important;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: brightness(0.55);
}

.herobg.active-slide {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(45, 80, 22, 0.5) 100%);
    z-index: 2;
}

/* Text slides */
.herotext {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #fff !important;
    text-align: center;
    z-index: 20;
    width: 90%;
    max-width: 1000px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.herotext.active-slide {
    opacity: 1;
    pointer-events: all;
}

.herotext h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
}

.herotext p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 0 !important;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--green);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--green);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.45);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: #fff;
    color: var(--green-dark);
    transform: translateY(-3px);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Hero skeleton loader */
.hero-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2e0d 0%, #2d5016 100%);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-skeleton-pulse {
    width: 60%;
    max-width: 500px;
}

.hero-skeleton-line {
    height: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    animation: pulse 1.6s ease-in-out infinite;
}

.hero-skeleton-line.wide {
    width: 100%;
}

.hero-skeleton-line.mid {
    width: 70%;
}

.hero-skeleton-line.short {
    width: 45%;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* ===== SECTIONS ===== */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 0.32rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--mid-grey);
    font-weight: 300;
    line-height: 1.75;
}

.btn-green {
    background: var(--green);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--green);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 179, 66, 0.35);
}

.btn-outline-green {
    background: transparent;
    color: var(--green);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--green);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== CAROUSEL / STORIES ===== */
.carouselsection {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #dce8f0 100%);
    position: relative;
}

.carouselsection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.colorcarousel {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 28px;
    margin: 0 auto !important;
    max-width: 1400px;
    flex-wrap: wrap;
}

/* Stories skeleton */
.stories-skeleton {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.story-skeleton-card {
    width: 270px;
    height: 430px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dde4dd, #c8d8c8);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.carouselcards {
    width: 270px !important;
    height: 430px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 4px solid transparent !important;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.carouselcards::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carouselcards:hover::before {
    opacity: 0.35;
}

.carouselcards:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 50px rgba(124, 179, 66, 0.4) !important;
}

.carouselcards.active {
    border: 4px solid var(--green) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.5) !important;
}

.carouselcards img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s !important;
}

.carouselcards:hover img {
    transform: scale(1.1) !important;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    z-index: 3;
    color: #fff;
}

.card-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-overlay p {
    font-size: 0.85rem;
    opacity: 0.92;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.click-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(124, 179, 66, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s;
}

.carouselcards:hover .click-indicator {
    opacity: 1;
}

.carouselcards.active .click-indicator {
    opacity: 1;
}

/* ===== ABOUT ===== */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: var(--green);
    color: #fff;
    padding: 1.4rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.4);
}

.about-badge .num {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 3px;
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green-light);
    border: 1px solid rgba(124, 179, 66, 0.25);
    color: var(--green-deep);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0.25rem;
}

.value-pill i {
    color: var(--green);
}

/* About skeleton */
.about-skeleton-line {
    height: 14px;
    border-radius: 8px;
    background: #e0e8d8;
    margin-bottom: 10px;
    animation: pulse 1.6s ease-in-out infinite;
}

/* ===== STATS ===== */
#stats {
    padding: 80px 0;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.3rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-number span {
    font-size: 2.2rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

/* ===== PROGRAMS ===== */
.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.program-card-img {
    height: 200px;
    overflow: hidden;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.program-card:hover .program-card-img img {
    transform: scale(1.08);
}

.program-card-body {
    padding: 1.8rem;
}

.program-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.program-icon i {
    color: var(--green);
    font-size: 1.3rem;
}

.program-card-body h4 {
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.program-card-body p {
    color: var(--mid-grey);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.program-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 0.18rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
}

.btn-program {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    border-radius: 50px;
    padding: 0.5rem 1.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
    transition: all 0.25s;
}

.btn-program:hover {
    background: var(--green);
    color: #fff;
}

/* Programs skeleton */
.program-skeleton {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.program-skeleton-img {
    height: 200px;
    background: #e0e8d8;
    animation: pulse 1.6s ease-in-out infinite;
}

.program-skeleton-body {
    padding: 1.8rem;
}

.program-skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: #e0e8d8;
    margin-bottom: 10px;
    animation: pulse 1.6s ease-in-out infinite;
}

/* ===== GET INVOLVED ===== */
.involve-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.involve-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.involve-card:hover::before {
    opacity: 1;
}

.involve-card.c-vol {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.involve-card.c-vol::before {
    background: linear-gradient(135deg, #7CB342, #4a7c2f);
}

.involve-card.c-don {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
}

.involve-card.c-don::before {
    background: linear-gradient(135deg, #f57f17, #e65100);
}

.involve-card.c-par {
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.involve-card.c-par::before {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}

.involve-card:hover .inv-icon,
.involve-card:hover h4,
.involve-card:hover p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.involve-card:hover .btn-involve {
    position: relative;
    z-index: 1;
    background: #fff;
}

.involve-card.c-vol:hover .btn-involve {
    color: var(--green-dark);
}

.involve-card.c-don:hover .btn-involve {
    color: #e65100;
}

.involve-card.c-par:hover .btn-involve {
    color: #1565c0;
}

.inv-icon {
    font-size: 3rem;
    margin-bottom: 1.1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.c-vol .inv-icon {
    color: var(--green);
}

.c-don .inv-icon {
    color: #f57f17;
}

.c-par .inv-icon {
    color: #1565c0;
}

.involve-card h4 {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.involve-card p {
    color: var(--mid-grey);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.btn-involve {
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
}

/* ===== DONATION BOX ===== */
.donation-box {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    text-align: center;
    margin-top: 3.5rem;
}

.donation-box h3 {
    font-weight: 700;
    margin-bottom: 0.65rem;
    font-size: 1.9rem;
}

.donation-box p {
    opacity: 0.82;
    margin-bottom: 2rem;
    font-size: 0.98rem;
}

.amount-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.28);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
}

.amount-btn:hover,
.amount-btn.sel {
    background: var(--green);
    border-color: var(--green);
}

.donate-row {
    display: flex;
    gap: 0.85rem;
    max-width: 420px;
    margin: 0 auto;
}

.donate-row input {
    flex: 1;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.donate-row input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.donate-row input:focus {
    border-color: var(--green);
}

.donate-row button {
    border-radius: 50px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.donate-row button:hover {
    background: #8fc44e;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.t-quote {
    font-size: 4rem;
    color: var(--green);
    line-height: 0.6;
    margin-bottom: 1.2rem;
    font-family: Georgia, serif;
}

.t-text {
    font-size: 0.92rem;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 1.6rem;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    color: var(--green-deep);
    font-size: 0.9rem;
}

.t-role {
    font-size: 0.76rem;
    color: #aaa;
}

.stars {
    color: #ffc107;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

/* Testimonials skeleton */
.testimonial-skeleton {
    background: #fff;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: #eee;
    margin-bottom: 10px;
    animation: pulse 1.6s ease-in-out infinite;
}

/* ===== CONTACT ===== */
.contact-info-card {
    background: var(--green-deep);
    color: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 1.7rem;
}

.contact-info-card .lead {
    opacity: 0.75;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.c-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(124, 179, 66, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}

.c-item-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.c-item-text span {
    opacity: 0.65;
    font-size: 0.82rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
    margin-top: 2rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-card {
    background: #f9fafb;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green-deep);
    margin-bottom: 0.35rem;
    display: block;
}

.form-ctrl {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.78rem 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: #fff;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-ctrl:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-ctrl.err {
    border-color: #dc3545;
}

.form-err {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.form-err.show {
    display: block;
}

textarea.form-ctrl {
    resize: vertical;
    min-height: 120px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 0;
}

.f-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.f-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.f-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.f-heading {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 1.1rem;
}

.f-links {
    list-style: none;
    padding: 0;
}

.f-links li {
    margin-bottom: 0.55rem;
}

.f-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.f-links a:hover {
    color: var(--green);
}

.f-bottom {
    margin-top: 3rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.f-bottom p {
    margin: 0;
    font-size: 0.8rem;
}

.f-bottom-links {
    display: flex;
    gap: 1.2rem;
}

.f-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.f-bottom-links a:hover {
    color: var(--green);
}

.newsletter-row {
    display: flex;
    gap: 0.5rem;
}

.newsletter-row input {
    flex: 1;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.newsletter-row input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-row input:focus {
    border-color: var(--green);
}

.newsletter-row button {
    border-radius: 50px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 0.65rem 1.3rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.newsletter-row button:hover {
    background: var(--green-dark);
}

/* ===== MODAL ===== */
.lml-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lml-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.lml-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: scale(0.88) translateY(24px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.lml-backdrop.open .lml-modal {
    transform: scale(1) translateY(0);
}

.modal-x {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.modal-x:hover {
    background: #e5e7eb;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
}

.modal-sub {
    color: var(--mid-grey);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

/* ===== TOAST ===== */
#toast-container {
    position: fixed;
    top: 88px;
    right: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: #fff;
    border-left: 4px solid var(--green);
    border-radius: 10px;
    padding: 1rem 1.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 290px;
    max-width: 380px;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.88rem;
    color: #1a1a1a;
}

.toast-item.show {
    transform: translateX(0);
}

.toast-item.t-error {
    border-color: #dc3545;
}

.toast-item.t-info {
    border-color: #1565c0;
}

.toast-icon {
    font-size: 1rem;
    font-weight: 700;
}

.t-success .toast-icon {
    color: var(--green);
}

.t-error .toast-icon {
    color: #dc3545;
}

.t-info .toast-icon {
    color: #1565c0;
}

/* ===== SPINNER ===== */
.spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .navbar-nav {
        flex-direction: column !important;
        gap: 0.65rem;
        padding: 0.8rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .colorcarousel {
        gap: 16px;
    }

    .carouselcards {
        width: 100% !important;
        max-width: 340px !important;
        height: 380px !important;
    }

    .donation-box {
        padding: 2rem 1.5rem;
    }

    .donate-row {
        flex-direction: column;
    }

    .donate-row button {
        width: 100%;
    }

    .about-badge {
        right: 8px;
    }

    .story-skeleton-card {
        width: 100%;
        max-width: 340px;
        height: 380px;
    }
}