/* Video Testimonials Section */
.video-testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-card:hover .video-wrapper img {
    transform: scale(1.05);
}

.video-card:hover .play-button {
    background: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    text-align: left;
}

.video-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Text Reviews Section */
.text-reviews {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eafff3 0%, #f8f9fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,168,89,0.07);
    margin: 3rem 0 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.reviews-header {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.reviews-subtitle {
    color: var(--secondary-orange);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    min-height: 260px;
}

.reviews-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s, transform 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.review-content {
    background: #fff;
    padding: 2.7rem 2rem 2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,168,89,0.10);
    position: relative;
    min-width: 0;
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,168,89,0.13);
}

blockquote {
    color: #1a5d2b;
    font-size: 1.13rem;
    line-height: 1.8;
    margin: 1.5rem 0 1rem 0;
    font-style: italic;
    font-family: 'Merriweather', serif;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-top: 1.2rem;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-orange);
    box-shadow: 0 2px 8px rgba(255,102,0,0.13);
}

.reviewer-details h4 {
    color: var(--primary-green);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.reviewer-details p {
    color: var(--secondary-orange);
    font-size: 0.98rem;
    margin: 0;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.prev-btn, .next-btn {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,168,89,0.13);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.prev-btn:hover, .next-btn:hover, .prev-btn:focus, .next-btn:focus {
    background: var(--secondary-orange);
    color: #fff;
    transform: scale(1.12);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eafff3;
    border: 2px solid var(--primary-green);
    transition: background 0.2s, border 0.2s, transform 0.2s;
    cursor: pointer;
}

.indicator.active {
    background: var(--secondary-orange);
    border: 2px solid var(--secondary-orange);
    transform: scale(1.18);
}

@media (max-width: 900px) {
    .text-reviews {
        padding: 2.2rem 0.5rem;
    }
    .review-content {
        padding: 1.7rem 1.1rem 1.2rem 1.1rem;
    }
}

@media (max-width: 600px) {
    .reviews-header {
        font-size: 1.3rem;
    }
    .reviews-subtitle {
        font-size: 1.01rem;
    }
    .review-content {
        padding: 1.2rem 0.5rem 0.9rem 0.5rem;
        max-width: 98vw;
    }
    .reviewer-info {
        gap: 0.5rem;
    }
    .carousel-controls {
        gap: 0.5rem;
    }
}

/* Back to Home Button */
.back-to-home {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: var(--secondary-orange);
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 1.1rem;
}

/* Video Modal */
.video-modal {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: black;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-modal .close-modal:hover {
    background: var(--primary-green);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .video-testimonials,
    .text-reviews {
        padding: 4rem 1rem;
    }

    .testimonials-container h2,
    .reviews-container h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .back-to-home {
        top: 80px;
        left: 10px;
    }

    .back-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .video-modal {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .testimonials-container h2,
    .reviews-container h2 {
        font-size: 1.8rem;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    .review-content {
        padding: 1.5rem;
    }

    blockquote {
        font-size: 1rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Image Gallery Section */
.image-gallery {
    padding: 4rem 2rem 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #eafff3 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,168,89,0.07);
    margin: 3rem 0 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.image-gallery h2 {
    color: var(--primary-green);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-align: center;
}
.image-gallery .section-subtitle {
    color: var(--secondary-orange);
    font-size: 1.18rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.2rem;
}
.gallery-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 1.5rem;
}
.gallery-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,168,89,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    max-width: 270px;
    min-width: 220px;
    flex: 1 1 220px;
    border: 2.5px solid transparent;
}
.gallery-card:hover {
    box-shadow: 0 8px 32px rgba(0,168,89,0.18), 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.04);
    border: 2.5px solid var(--secondary-orange);
}
.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 2px 8px rgba(0,168,89,0.07);
}
.gallery-card img:hover {
    transform: scale(1.05);
    filter: brightness(1.08) saturate(1.1);
}
@media (max-width: 900px) {
    .gallery-flex {
        gap: 1.2rem;
    }
    .gallery-card {
        max-width: 48vw;
        min-width: 140px;
    }
    .gallery-card img {
        height: 140px;
    }
}
@media (max-width: 600px) {
    .image-gallery {
        padding: 2.2rem 0.5rem 1.5rem 0.5rem;
    }
    .gallery-flex {
        gap: 0.7rem;
    }
    .gallery-card {
        max-width: 98vw;
        min-width: 90px;
    }
    .gallery-card img {
        height: 210px;
    }
}

/* Scroll to Top Button styles */
#scrollToTop.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: #1a5d2b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
}

#scrollToTop.scroll-to-top:hover {
    background: #218838;
}

/* --- Modern Responsive Navigation Bar --- */
#navigationBar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border-bottom: 1.5px solid rgba(0,0,0,0.04);
    border-radius: 0 0 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: #fff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.logo-caption {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
    letter-spacing: 1px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s;
}

nav ul li {
    position: relative;
}

nav ul li a, .dropdown a {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    background: transparent;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    font-family: 'Merriweather', serif;
}
nav ul li a::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
nav ul li a:hover, nav ul li a:focus {
    color: var(--primary-green);
    background: rgba(0,168,89,0.07);
    box-shadow: 0 2px 12px 0 rgba(0,168,89,0.07);
    transform: translateY(-2px) scale(1.04);
}
nav ul li a:hover::before, nav ul li a:focus::before {
    transform: scaleX(1);
}
nav ul li a.donate {
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 12px 0 rgba(0,168,89,0.10);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
nav ul li a.donate:hover, nav ul li a.donate:focus {
    background: linear-gradient(90deg, var(--secondary-orange), var(--primary-green));
    color: #fff;
    box-shadow: 0 4px 18px 0 rgba(255,102,0,0.13);
    transform: scale(1.06);
}
.dropdown a:hover, .dropdown a:focus {
    background: var(--primary-green);
    color: #fff;
    padding-left: 2.2rem;
}
.dropdown {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%) scaleY(0.95);
    min-width: 220px;
    background: rgba(255,255,255,0.98);
    border-radius: 14px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    padding: 0.7rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(.4,0,.2,1), transform 0.32s cubic-bezier(.4,0,.2,1), max-height 0.4s ease-out;
    z-index: 100;
    border: 1px solid rgba(0,168,89,0.07);
    max-height: 0;
    overflow: hidden;
}

nav ul li:hover .dropdown, nav ul li:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1);
    max-height: 500px;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 900px) {
    #navigationBar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 1.2rem;
    }
    nav ul {
        flex-direction: column;
        gap: 1.2rem;
    background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        padding: 2rem 1rem 1rem 1rem;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 8px 32px rgba(26,93,43,0.13);
        display: none;
        max-height: 0;
    overflow: hidden;
        z-index: 2000;
    }
    nav ul.open {
        display: flex;
        max-height: 600px;
        animation: accordionDown 0.4s cubic-bezier(.4,0,.2,1);
    }
    @keyframes accordionDown {
        from { max-height: 0; opacity: 0; }
        to { max-height: 600px; opacity: 1; }
    }
}

/* Modern Footer (matches landing page) */
footer {
    background: linear-gradient(90deg, #f8f9fa 0%, #eafff3 100%);
    color: #1a5d2b;
    padding: 3.5rem 0 1.5rem 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 24px rgba(0,168,89,0.08);
    margin-top: 4rem;
    font-family: 'Merriweather', serif;
}

.footer-container-modern {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.5fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--primary-green);
    box-shadow: 0 2px 12px rgba(0,168,89,0.13);
    background: #fff;
}

.footer-tagline {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.footer-logo-section .donate.nav-link {
    margin-left: 0;
    margin-top: 1.1rem;
    align-self: flex-start;
    width: max-content;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
    color: #fff;
    font-size: 1.18rem;
    font-family: 'Merriweather', serif;
    font-weight: 800;
    letter-spacing: 0.7px;
    border-radius: 10px;
    padding: 0.7rem 2.2rem;
    border: none;
    box-shadow: 0 4px 18px 0 rgba(0,168,89,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.footer-logo-section .donate.nav-link:hover {
    background: linear-gradient(90deg, var(--secondary-orange), var(--primary-green));
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 8px 28px 0 rgba(255,102,0,0.18);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1.2fr 1fr;
    gap: 1.5rem;
}

.footer-links-col h4 {
    color: var(--secondary-orange);
    font-size: 1.13rem;
    margin-bottom: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links-col h4:hover {
    color: var(--primary-green);
    text-decoration: underline wavy 2px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 0.5rem;
}

.footer-links-col a {
    color: #1a5d2b;
    text-decoration: none;
    font-size: 1.04rem;
    font-weight: 600;
    transition: color 0.2s, text-decoration 0.2s, letter-spacing 0.2s;
    letter-spacing: 0.2px;
    border-bottom: 2px solid transparent;
}

.footer-links-col a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--secondary-orange);
}

.footer-news-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-newsletter h4,
.footer-newsletter p {
    color: var(--primary-green);
}

.newsletter-form {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1.5px solid var(--primary-green);
    font-size: 1rem;
    outline: none;
    width: 180px;
    background: #fff;
    color: #1a5d2b;
    transition: border 0.2s;
}

.newsletter-form input[type="email"]:focus {
    border: 1.5px solid var(--secondary-orange);
}

.newsletter-form button {
    background: var(--secondary-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin: 0.5rem 0 0.5rem 0;
}

.newsletter-form button:hover {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.06);
}

.footer-contact h4 {
    color: var(--primary-green);
    font-size: 1.13rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-contact h4:hover {
    color: var(--secondary-orange);
    text-decoration: underline wavy 2px;
}

.footer-contact p {
    margin: 0.2rem 0;
    color: #1a5d2b;
    font-size: 1rem;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.7rem;
}

.footer-social-icons a {
    color: var(--primary-green);
    font-size: 1.35rem;
    transition: color 0.2s, transform 0.2s;
    border-radius: 50%;
    padding: 0.3rem;
    background: #eafff3;
}

.footer-social-icons a:hover {
    color: #fff;
    background: var(--secondary-orange);
    transform: scale(1.13);
}

.footer-bottom {
    text-align: center;
    color: var(--primary-green);
    font-size: 1.08rem;
    margin-top: 2.5rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-news-contact {
        flex-direction: row;
        gap: 2rem;
    }
    .footer-logo-section {
        flex-direction: row;
        align-items: center;
        gap: 1.2rem;
    }
    .footer-logo-section .donate.nav-link {
        align-self: center;
        margin-top: 1.1rem;
    }
}

@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    .footer-news-contact {
        flex-direction: column;
        gap: 1.2rem;
    }
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    .footer-bottom {
        font-size: 0.95rem;
    }
    .footer-logo-section .donate.nav-link {
        width: 100%;
        max-width: 320px;
        margin-top: 1rem;
        align-self: center;
        text-align: center;
        font-size: 1.05rem;
        padding: 0.7rem 0;
    }
    .footer-social-icons {
        gap: 0.5rem;
    }
    .gallery-categories-row {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 100vw;
        max-width: 100vw;
    }
    .gallery-category {
        min-width: 100vw;
        max-width: 100vw;
        width: 100vw;
        scroll-snap-align: start;
        padding: 0.5rem 0.1rem 0.5rem 0.1rem;
        box-sizing: border-box;
    }
    .gallery-flex {
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }
    .gallery-carousel {
        flex-direction: column;
        align-items: center;
    }
    .gallery-carousel-image {
        max-width: 98vw;
        height: 210px;
    }
    .gallery-carousel-btn.prev {
        left: 2px;
    }
    .gallery-carousel-btn.next {
        right: 2px;
    }
}

/* --- Navigation Bar Enhancements --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
        font-size: 2rem;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 2001;
    transition: color 0.2s, transform 0.2s;
}
.menu-toggle.active {
    color: var(--secondary-orange);
    transform: scale(1.1);
}
.menu-toggle .fa-times {
    display: none;
}
.menu-toggle.active .fa-bars {
    display: none;
}
.menu-toggle.active .fa-times {
    display: inline;
}
.donate.nav-link {
    background: linear-gradient(90deg, #ffb347 0%, #ff7f50 100%);
    color: #fff !important;
    font-size: 1.22rem;
    font-family: 'Merriweather', serif;
    font-weight: 800;
    letter-spacing: 0.7px;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    margin-left: 1rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s, border 0.2s;
    position: relative;
    overflow: hidden;
    outline: none;
}
.donate.nav-link:hover, .donate.nav-link:focus {
    background: linear-gradient(90deg, #ff7f50 0%, #ffb347 100%);
    color: #fff !important;
    box-shadow: 0 8px 28px 0 rgba(255,102,0,0.18);
    transform: scale(1.09);
    border: 2.5px solid var(--secondary-orange);
}

/* --- Video Modal Styles --- */
.modal-backdrop {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}
.modal-backdrop.active {
    display: flex;
    opacity: 1;
}
.video-modal {
    background: #fff;
    border-radius: 18px;
    max-width: 700px;
    width: 95vw;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    font-family: 'Merriweather', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes scaleIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.video-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.video-modal .close-modal:hover {
    color: var(--secondary-orange);
}
.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 2px 12px rgba(26,93,43,0.10);
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #000;
}
@media (max-width: 700px) {
    .video-modal {
        max-width: 98vw;
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .video-container {
        aspect-ratio: 16/9;
    }
}

/* Image Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}
.modal-backdrop.active {
    display: flex;
    opacity: 1;
}
.image-modal {
    background: #fff;
    border-radius: 18px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.3s cubic-bezier(.4,0,.2,1);
}
.image-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.image-modal .close-modal:hover {
    color: var(--secondary-orange);
}
.modal-image {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,93,43,0.10);
    margin-top: 1.2rem;
    background: #f8f9fa;
    object-fit: contain;
}
@media (max-width: 700px) {
    .image-modal {
        max-width: 98vw;
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .modal-image {
        max-width: 95vw;
        max-height: 60vh;
    }
}
@keyframes scaleIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

html, body {
    font-family: 'Merriweather', serif;
}
:root {
    --primary-green: rgb(0,168,89);
    --secondary-orange: rgb(255,102,0);
}

.gallery-categories-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) #e6e6e6;
    margin-bottom: 2.5rem;
}
.gallery-categories-row::-webkit-scrollbar {
    height: 8px;
}
.gallery-categories-row::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
}
.gallery-categories-row::-webkit-scrollbar-track {
    background: #e6e6e6;
    border-radius: 6px;
}
.gallery-category {
    position: relative;
    min-width: 320px;
    max-width: 420px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,168,89,0.07);
    margin-bottom: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1rem 1.2rem 1rem;
}
.gallery-category-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}
.gallery-carousel {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-carousel-image {
    width: 100%;
    max-width: 340px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,168,89,0.07);
    background: #f8f9fa;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-carousel-image:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,168,89,0.18);
}
.gallery-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,168,89,0.13);
}
.gallery-carousel-btn:hover {
    background: var(--secondary-orange);
    color: #fff;
}
.gallery-carousel-btn.prev {
    left: -18px;
}
.gallery-carousel-btn.next {
    right: -18px;
}
@media (max-width: 900px) {
    .gallery-category {
        min-width: 200px;
        max-width: 320px;
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    }
    .gallery-carousel-image {
        max-width: 220px;
        height: 120px;
    }
}
@media (max-width: 600px) {
    .gallery-category {
        min-width: 98vw;
        max-width: 98vw;
        padding: 0.5rem 0.1rem 0.5rem 0.1rem;
    }
    .gallery-carousel-image {
        max-width: 98vw;
        height: 210px;
    }
    .gallery-carousel-btn.prev {
        left: 2px;
    }
    .gallery-carousel-btn.next {
        right: 2px;
    }
}

