/* ============================================================ */
/* ROOT VARIABLES - PROJECT COLORS */
/* ============================================================ */
:root {
    --primary-color: #6e8e4f;
    --primary-dark: #5a7a3f;
    --primary-light: #8aae6a;
    --secondary-color: #9dbee3;
    --secondary-dark: #7aa3d4;
    --secondary-light: #bdd9ef;
}

/* ============================================================ */
/* GLOBAL STYLES */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #fff;
    padding-top: 100px; /* Topbar ~38px + Navbar ~60px = 98px */
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

/* ============================================================ */
/* BUTTONS - GENERAL */
/* ============================================================ */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(110, 142, 79, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* ============================================================ */
/* DONATE BUTTON - Blink & Zoom */
/* ============================================================ */
.btn-donate {
    display: inline-block;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff !important;
    border: none;
    transition: all 0.3s;
    animation: blinkZoom 2s infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}
.btn-donate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
    color: #fff !important;
}

.btn-donate-cta {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    animation: blinkZoom 2s infinite;
}
.btn-donate-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

@keyframes blinkZoom {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

/* ============================================================ */
/* SECTION 1: TOP BAR – FIXED */
/* ============================================================ */
.top-bar {
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
}
.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 12px;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}
.top-bar-item i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.top-bar-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar-item a:hover {
    color: #ffffff;
}
.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}
.top-bar-social:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================================================ */
/* SECTION 2: NAVBAR / HEADER – FIXED */
/* ============================================================ */
#main-header .navbar {
    background: #ffffff !important;
    padding: 8px 0;
    margin: 0;
    border: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 38px; /* Urefu wa topbar ~38px */
    left: 0;
    right: 0;
    z-index: 1040;
}
#main-header .navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#main-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color) !important;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
}
#main-header .navbar-brand img {
    height: 38px;
    width: auto;
    max-width: 100%;
}
#main-header .navbar-brand span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}
#main-header .navbar-collapse {
    flex-grow: 0;
}
#main-header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#main-header .nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
}
#main-header .nav-link:hover,
#main-header .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(110, 142, 79, 0.08);
}
#main-header .nav-link.active {
    font-weight: 600;
}
#main-header .navbar-toggler {
    border: none;
    padding: 4px 8px;
    font-size: 1.2rem;
    background: transparent;
    color: var(--primary-color);
}
#main-header .navbar-toggler:focus {
    box-shadow: none;
}
#main-header .navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Dropdown */
#main-header .dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 6px;
    z-index: 1060;
    background: #ffffff;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
}
#main-header .dropdown-item {
    padding: 8px 22px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
#main-header .dropdown-item:hover {
    background: rgba(110, 142, 79, 0.08);
    color: var(--primary-color);
}

/* ============================================================ */
/* RESPONSIVE – TOPBAR + NAVBAR (Simu + Tablet) */
/* ============================================================ */
@media (max-width: 991.98px) {
    #main-header .navbar {
        top: 36px;
        padding: 6px 0;
    }
    #main-header .navbar-brand img {
        height: 32px;
    }
    #main-header .navbar-brand span {
        font-size: 0.9rem;
    }
    #main-header .nav-link {
        font-size: 0.85rem;
        padding: 4px 12px !important;
    }
    .btn-donate {
        padding: 4px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 88px;
    }
    .top-bar {
        padding: 4px 0;
        font-size: 0.7rem;
    }
    #main-header .navbar {
        top: 34px;
        padding: 6px 0;
    }
    #main-header .navbar-brand img {
        height: 30px;
    }
    #main-header .navbar-brand span {
        font-size: 0.85rem;
    }
    #main-header .nav-link {
        font-size: 0.8rem;
        padding: 4px 10px !important;
    }
    #main-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 10px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        z-index: 1050;
        width: 100%;
    }
    #main-header .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }
    #main-header .nav-link {
        padding: 10px 16px !important;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    #main-header .nav-link:last-child {
        border-bottom: none;
    }
    .btn-donate {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
        margin-top: 4px;
        border-radius: 8px;
        white-space: normal;
    }
    #main-header .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #f8f9fa !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        padding: 4px 0 !important;
        margin-top: 0 !important;
    }
    #main-header .dropdown-item {
        padding: 10px 20px !important;
        border-bottom: 1px solid #eee;
    }
    #main-header .dropdown-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 78px;
    }
    .top-bar {
        padding: 4px 0;
        font-size: 0.65rem;
    }
    .top-bar-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 4px 0;
    }
    .top-bar-left {
        justify-content: center;
        gap: 0 8px;
        flex-wrap: wrap;
    }
    .top-bar-item {
        font-size: 0.65rem;
    }
    .top-bar-item i {
        font-size: 0.6rem;
        width: 14px;
    }
    .top-bar-divider {
        display: none;
    }
    .top-bar-right {
        justify-content: center;
        gap: 6px;
    }
    .top-bar-social {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    #main-header .navbar {
        top: 32px;
        padding: 4px 0;
        min-height: 44px;
    }
    #main-header .navbar-brand img {
        height: 26px;
    }
    #main-header .navbar-brand span {
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.2;
    }
    #main-header .btn-donate {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    .navbar-toggler {
        padding: 2px 6px !important;
        font-size: 0.9rem !important;
    }
    .navbar-toggler-icon {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ============================================================ */
/* SECTION 3: HERO SLIDER (Image Slider na Zoom) */
/* ============================================================ */
.hero-slider-section {
    position: relative;
    height: 95vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}
.hero-slider-section .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slider-section .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-slider-section .slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-slider-section .slide .slide-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-slider-section .slide.active .slide-bg {
    animation: zoomInOut 12s ease-in-out infinite alternate;
}
@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}
.hero-slider-section .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.hero-slider-section .slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px 30px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.hero-slider-section .slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
.hero-slider-section .slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-slider-section .slide-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-slider-section .slide-content h1 span {
    color: var(--secondary-color);
}
.hero-slider-section .slide-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.hero-slider-section .slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.hero-slider-section .btn-slide-primary {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}
.hero-slider-section .btn-slide-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}
.hero-slider-section .btn-slide-secondary {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.hero-slider-section .btn-slide-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Slider controls */
.hero-slider-section .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}
.hero-slider-section .slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.hero-slider-section .slider-dots .dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}
.hero-slider-section .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider-section .slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}
.hero-slider-section .slider-arrow.prev {
    left: 20px;
}
.hero-slider-section .slider-arrow.next {
    right: 20px;
}

/* ============================================================ */
/* HERO SLIDER – RESPONSIVE */
/* ============================================================ */
@media (max-width: 991.98px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 400px;
        max-height: 700px;
    }
    .hero-slider-section .slide-content h1 {
        font-size: 2.4rem;
    }
    .hero-slider-section .slide-content p {
        font-size: 1rem;
        max-width: 90%;
    }
    .hero-slider-section .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .hero-slider-section .slider-arrow.prev {
        left: 10px;
    }
    .hero-slider-section .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 60vh;
        min-height: 350px;
        max-height: 600px;
    }
    .hero-slider-section .slide-content {
        padding: 20px 15px;
    }
    .hero-slider-section .slide-content h1 {
        font-size: 1.8rem;
    }
    .hero-slider-section .slide-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .hero-slider-section .btn-slide-primary,
    .hero-slider-section .btn-slide-secondary {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    .hero-slider-section .slide-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .hero-slider-section .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    .hero-slider-section .slider-arrow.prev {
        left: 5px;
    }
    .hero-slider-section .slider-arrow.next {
        right: 5px;
    }
    .hero-slider-section .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    .hero-slider-section .slider-dots {
        gap: 8px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider-section {
        height: 55vh;
        min-height: 300px;
        max-height: 500px;
    }
    .hero-slider-section .slide-content {
        padding-top: 40px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-slider-section .slide-content h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .hero-slider-section .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 16px;
        padding: 0 5px;
    }
    .hero-slider-section .btn-slide-primary,
    .hero-slider-section .btn-slide-secondary {
        padding: 8px 16px;
        font-size: 0.75rem;
        flex: 0 1 auto;
        min-width: 100px;
        width: auto;
        white-space: nowrap;
    }
    .hero-slider-section .slide-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .hero-slider-section .slide-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-bottom: 12px;
    }
    .hero-slider-section .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
    .hero-slider-section .slider-arrow.prev {
        left: 5px;
    }
    .hero-slider-section .slider-arrow.next {
        right: 5px;
    }
}

/* ============================================================ */
/* SECTION 4: SIMPLE CARDS / STATS */
/* ============================================================ */
.stats-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    margin-top: -40px;
    z-index: 5;
}
.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.stats-card .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.stats-card .stats-icon.green {
    background: rgba(110, 142, 79, 0.12);
    color: var(--primary-color);
}
.stats-card .stats-icon.blue {
    background: rgba(157, 190, 227, 0.15);
    color: var(--secondary-color);
}
.stats-card .stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 4px;
}
.stats-card .stats-number .plus {
    font-size: 2rem;
    color: var(--primary-color);
}
.stats-card .stats-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Stats responsive */
@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-section {
        margin-top: -20px;
        padding: 40px 0;
    }
    .stats-card .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        margin-top: -10px;
        padding: 30px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stats-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    .stats-card .stats-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .stats-card .stats-number {
        font-size: 1.6rem;
    }
    .stats-card .stats-number .plus {
        font-size: 1.3rem;
    }
    .stats-card .stats-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .stats-card {
        padding: 15px 8px;
    }
    .stats-card .stats-number {
        font-size: 1.3rem;
    }
    .stats-card .stats-label {
        font-size: 0.65rem;
    }
}





/* ============================================================ */
/* FIX: SIMU - HEADER MENU (NAVBAR) IONEKANE */
/* ============================================================ */

@media (max-width: 576px) {
    /* Hakikisha navbar ina z-index ya juu */
    #main-header .navbar {
        z-index: 9999 !important;
        position: fixed !important;
        top: 44px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        padding: 8px 0 !important;
        min-height: 54px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
    }

    /* Hakikisha collapse menu inaonekana */
    #main-header .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        padding: 15px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
        border-radius: 0 0 16px 16px !important;
        z-index: 99999 !important;
        display: none !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        width: 100% !important;
    }

    /* Inapofunguliwa */
    #main-header .navbar-collapse.show {
        display: block !important;
    }

    /* Nav links */
    #main-header .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 2px !important;
    }

    #main-header .nav-link {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid #f0f0f0 !important;
        width: 100% !important;
        display: block !important;
        color: #333 !important;
    }

    #main-header .nav-link:last-child {
        border-bottom: none !important;
    }

    /* Donate button kwenye menu */
    #main-header .btn-donate {
        width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        margin-top: 8px !important;
    }

    /* Logo - ionekane vizuri */
    #main-header .navbar-brand img {
        height: 32px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #main-header .navbar-brand span {
        font-size: 0.8rem !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hamburger toggle - ionekane vizuri */
    #main-header .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: none !important;
        padding: 8px !important;
        background: transparent !important;
        color: var(--primary-color) !important;
        font-size: 1.4rem !important;
        z-index: 99999 !important;
    }

    #main-header .navbar-toggler .navbar-toggler-icon {
        width: 28px !important;
        height: 28px !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(110, 142, 79, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Dropdown kwa simu */
    #main-header .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #f8f9fa !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        padding: 4px 0 !important;
        margin-top: 0 !important;
    }

    #main-header .dropdown-item {
        padding: 10px 20px !important;
        border-bottom: 1px solid #eee !important;
        font-size: 0.85rem !important;
    }

    #main-header .dropdown-item:last-child {
        border-bottom: none !important;
    }
}

/* ============================================================ */
/* FIX: SIMU - BUTTONS ZA HERO ZIWE INLINE (HORIZONTAL) */
/* ============================================================ */

@media (max-width: 576px) {
    /* Buttons container */
    .hero-slider-section .slide-buttons,
    .hero-slider-section .d-flex,
    .hero-slider-section .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Kila button */
    .hero-slider-section .btn,
    .hero-slider-section .btn-lg,
    .hero-slider-section .btn-slide-primary,
    .hero-slider-section .btn-slide-secondary {
        flex: 0 1 auto !important;
        min-width: 120px !important;
        max-width: 180px !important;
        width: auto !important;
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        border-radius: 50px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    /* Hakikisha buttons ziko juu ya dots */
    .hero-slider-section .slide-content {
        z-index: 5 !important;
        position: relative !important;
    }

    .hero-slider-section .slider-dots {
        position: absolute !important;
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
        display: flex !important;
        gap: 8px !important;
    }

    .hero-slider-section .slider-dots .dot {
        width: 10px !important;
        height: 10px !important;
        margin: 0 !important;
    }

    /* Nafasi kati ya buttons na dots */
    .hero-slider-section .slide-content .slide-buttons {
        margin-bottom: 20px !important;
    }

    .top-bar-social {
        display: none;
    }
}


/* ============================================================ */
/* SECTION 5: ABOUT SECTION STYLES */
/* ============================================================ */

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Image */
.about-image {
    flex: 1 1 45%;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(110, 142, 79, 0.3);
}

/* Content */
.about-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.about-badge {
    display: inline-block;
    background: rgba(110, 142, 79, 0.1);
    color: var(--primary-color);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-color);
}

/* Text */
.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Full text - hidden by default */
.about-text-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.about-text-full.open {
    max-height: 600px;
    opacity: 1;
}

/* Load More Button */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-load-more:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(110, 142, 79, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more.active i {
    transform: rotate(180deg);
}

.btn-load-more .btn-text {
    transition: all 0.3s ease;
}

/* ============================================================ */
/* ABOUT - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    .about-wrapper {
        gap: 30px;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .about-image img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    .about-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .about-image {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }
    .about-image img {
        height: 250px;
    }
    .about-content {
        flex: 1 1 100%;
        min-width: 0;
        text-align: center;
    }
    .about-content h2 {
        font-size: 1.7rem;
    }
    .about-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    .about-image-badge {
        bottom: 20px;
        right: 0;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .btn-load-more {
        padding: 10px 24px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 30px 0;
    }
    .about-image img {
        height: 200px;
    }
    .about-content h2 {
        font-size: 1.4rem;
    }
    .about-content p {
        font-size: 0.85rem;
    }
    .about-image-badge {
        bottom: 15px;
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    .btn-load-more {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}




/* ============================================================ */
/* SECTION 6: SERVICES SECTION STYLES */
/* ============================================================ */

.services-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================================ */
/* SECTION HEADER */
/* ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(110, 142, 79, 0.1);
    color: var(--primary-color);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================================ */
/* SERVICES GRID */
/* ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================================ */
/* SERVICE CARD */
/* ============================================================ */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Image */
.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(110, 142, 79, 0.3);
}

/* Body */
.service-body {
    padding: 20px 20px 25px;
}

.service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.service-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================================ */
/* VIEW ALL SERVICES BUTTON */
/* ============================================================ */

.services-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 45px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(110, 142, 79, 0.3);
}

.btn-view-all:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(110, 142, 79, 0.4);
    color: #ffffff;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ============================================================ */
/* SERVICES - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .service-image {
        height: 150px;
    }
    .service-body {
        padding: 15px 15px 20px;
    }
    .service-body h3 {
        font-size: 0.95rem;
    }
    .service-body p {
        font-size: 0.8rem;
    }
    .btn-view-all {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 30px 0;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .service-image {
        height: 120px;
    }
    .service-body {
        padding: 12px 12px 16px;
    }
    .service-body h3 {
        font-size: 0.8rem;
    }
    .service-body p {
        font-size: 0.7rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .service-link {
        font-size: 0.7rem;
    }
    .service-overlay {
        top: 8px;
        left: 8px;
        padding: 2px 10px;
        font-size: 0.6rem;
    }
    .section-header {
        margin-bottom: 25px;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .section-header p {
        font-size: 0.8rem;
    }
    .services-footer {
        margin-top: 30px;
    }
    .btn-view-all {
        padding: 10px 24px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}




/* ============================================================ */
/* SECTION 7: WHY CHOOSE US STYLES */
/* ============================================================ */

.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================================ */
/* WHY CHOOSE US GRID */
/* ============================================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================================ */
/* WHY CHOOSE US ITEM */
/* ============================================================ */

.why-item {
    background: #ffffff;
    padding: 35px 25px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Decorative line at top */
.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Icon */
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(110, 142, 79, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
}

/* Title */
.why-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* Description */
.why-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================ */
/* WHY CHOOSE US - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 60px 0;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-item {
        padding: 30px 20px 25px;
    }
    .why-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .why-item {
        padding: 25px 15px 20px;
        border-radius: 12px;
    }
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    .why-item h3 {
        font-size: 0.9rem;
    }
    .why-item p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
    .section-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 30px 0;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .why-item {
        padding: 18px 12px 15px;
        border-radius: 10px;
    }
    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .why-item h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    .why-item p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    .section-header {
        margin-bottom: 25px;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .section-header p {
        font-size: 0.8rem;
    }
}


/* ============================================================ */
/* SECTION 8: COUNTER SECTION STYLES */
/* ============================================================ */

.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    transform: rotate(15deg);
    pointer-events: none;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.counter-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* ============================================================ */
/* COUNTER GRID */
/* ============================================================ */

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* ============================================================ */
/* COUNTER ITEM */
/* ============================================================ */

.counter-item {
    padding: 20px;
    color: #ffffff;
}

.counter-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-icon {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.counter-number .counter {
    display: inline-block;
}

.counter-number .counter-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================================================ */
/* COUNTER - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .counter-section {
        padding: 60px 0;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .counter-number {
        font-size: 2.8rem;
    }
    .counter-number .counter-plus {
        font-size: 2rem;
    }
    .counter-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 40px 0;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .counter-item {
        padding: 15px 10px;
    }
    .counter-number {
        font-size: 2.2rem;
    }
    .counter-number .counter-plus {
        font-size: 1.6rem;
    }
    .counter-label {
        font-size: 0.85rem;
    }
    .counter-icon {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 30px 0;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .counter-item {
        padding: 12px 8px;
    }
    .counter-number {
        font-size: 1.7rem;
    }
    .counter-number .counter-plus {
        font-size: 1.2rem;
    }
    .counter-label {
        font-size: 0.7rem;
    }
    .counter-icon {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 380px) {
    .counter-grid {
        gap: 6px;
    }
    .counter-number {
        font-size: 1.4rem;
    }
    .counter-label {
        font-size: 0.6rem;
    }
}




/* ============================================================ */
/* SECTION 10: STAFF SECTION STYLES */
/* ============================================================ */

.staff-section {
    padding: 80px 0;
    background: #ffffff;
}

.staff-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================================ */
/* STAFF GRID */
/* ============================================================ */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================================ */
/* STAFF CARD */
/* ============================================================ */

.staff-card {
    background: #ffffff;
    padding: 30px 20px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Avatar */
.staff-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.staff-card:hover .staff-avatar {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Name */
.staff-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

/* Position */
.staff-position {
    display: inline-block;
    background: rgba(110, 142, 79, 0.08);
    color: var(--primary-color);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Bio */
.staff-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Social Icons */
.staff-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.staff-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f2f5;
    color: #555;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.staff-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================ */
/* STAFF FOOTER */
/* ============================================================ */

.staff-footer {
    text-align: center;
    margin-top: 50px;
}

.staff-footer .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 45px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.staff-footer .btn-view-all:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(110, 142, 79, 0.3);
}

.staff-footer .btn-view-all i {
    transition: transform 0.3s ease;
}

.staff-footer .btn-view-all:hover i {
    transform: translateX(5px);
}

/* ============================================================ */
/* STAFF - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .staff-section {
        padding: 60px 0;
    }
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .staff-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .staff-section {
        padding: 40px 0;
    }
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .staff-card {
        padding: 20px 15px 18px;
        border-radius: 12px;
    }
    .staff-avatar {
        width: 65px;
        height: 65px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .staff-card h3 {
        font-size: 0.95rem;
    }
    .staff-position {
        font-size: 0.65rem;
        padding: 2px 10px;
    }
    .staff-card p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    .staff-social a {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .staff-footer .btn-view-all {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .staff-section {
        padding: 30px 0;
    }
    .staff-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .staff-card {
        padding: 15px 10px 14px;
        border-radius: 10px;
    }
    .staff-avatar {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .staff-card h3 {
        font-size: 0.75rem;
    }
    .staff-position {
        font-size: 0.55rem;
        padding: 1px 8px;
        margin-bottom: 6px;
    }
    .staff-card p {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }
    .staff-social a {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    .staff-footer {
        margin-top: 25px;
    }
    .staff-footer .btn-view-all {
        padding: 8px 20px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .section-header p {
        font-size: 0.8rem;
    }
}




/* ============================================================ */
/* SECTION 9: CTA / DONATE BANNER STYLES */
/* ============================================================ */

.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(157, 190, 227, 0.3);
}

/* Decorative shapes */
.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 30%;
    height: 120%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(4px);
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 30px;
}

/* Donate Button - Inatumia animation ya blinkZoom */
.btn-donate-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: blinkZoom 2s infinite;
}

.btn-donate-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-donate-cta i {
    color: #e74c3c;
}

/* ============================================================ */
/* CTA - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }
    .cta-wrapper {
        padding: 50px 30px;
        border-radius: 20px;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
    .btn-donate-cta {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 16px;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .btn-donate-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 0;
    }
    .cta-wrapper {
        padding: 30px 15px;
        border-radius: 12px;
    }
    .cta-content h2 {
        font-size: 1.4rem;
    }
    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .cta-badge {
        font-size: 0.7rem;
        padding: 3px 14px;
    }
    .btn-donate-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}



/* ============================================================ */
/* SECTION 11: FOOTER STYLES */
/* ============================================================ */

.main-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    margin-top: 0;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================================ */
/* FOOTER TOP */
/* ============================================================ */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================ */
/* FOOTER COLUMN */
/* ============================================================ */

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Logo */
.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* ============================================================ */
/* SOCIAL ICONS */
/* ============================================================ */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================ */
/* CONTACT LIST */
/* ============================================================ */

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li i {
    width: 18px;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: 2px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #ffffff;
}

/* ============================================================ */
/* FOOTER BOTTOM */
/* ============================================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 0;
}

.footer-credit i {
    color: #e74c3c;
}

/* ============================================================ */
/* FOOTER - MOBILE RESPONSIVE */
/* ============================================================ */

@media (max-width: 991.98px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }
    .main-footer {
        padding: 40px 0 0;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding-bottom: 25px;
    }
    .footer-col h4 {
        font-size: 1rem;
    }
    .footer-col h4::after {
        width: 25px;
    }
    .footer-col ul li a {
        font-size: 0.85rem;
    }
    .footer-contact-list li {
        font-size: 0.85rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px 0 20px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 20px;
    }
    .main-footer {
        padding: 30px 0 0;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact-list li {
        justify-content: center;
    }
    .footer-logo {
        height: 38px;
    }
    .footer-col p {
        font-size: 0.85rem;
    }
    .footer-col ul li a {
        font-size: 0.8rem;
    }
    .footer-contact-list li {
        font-size: 0.8rem;
    }
}




/* ============================================================ */
/* WHATSAPP CHAT BUTTON - FLOATING BOTTOM LEFT */
/* ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: blinkLight 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Pulse ring */
.whatsapp-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    pointer-events: none;
    animation: pulseRing 2s infinite;
}

/* Light blink animation */
@keyframes blinkLight {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 30px 15px rgba(37, 211, 102, 0.15);
    }
}

/* Pulse ring animation */
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ============================================================ */
/* RESPONSIVE - SIMU */
/* ============================================================ */

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .whatsapp-pulse {
        width: 62px;
        height: 62px;
        top: -6px;
        left: -6px;
    }
}



