/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #8B9A2B;
    --primary-dark: #6d7a1f;
    --primary-light: #a8b84a;
    --primary-soft: #e8ecd0;
    --primary-pale: #f4f6e8;
    --secondary: #2d5a27;
    --accent: #4a7a20;
    --white: #ffffff;
    --black: #1a1a1a;
    --dark: #2c2c2c;
    --gray: #666666;
    --gray-light: #999999;
    --light-gray: #f9faf4;
    --cream: #fefef9;
    --border: #e8e8dc;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-gray);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== CUSTOM CURSOR & CLICK BUBBLES ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    cursor: default;
}

/* Cursor dot follower */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* Cursor states */
.cursor-dot.clicking {
    transform: translate(-50%, -50%) scale(0.5);
    background: #fff;
}

.cursor-ring.clicking {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
}

.cursor-dot.hovering {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
}

.cursor-ring.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--primary-light);
    opacity: 0.3;
}

/* Click bubble particles */
.click-bubble {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    animation: clickBubbleFloat 0.8s ease-out forwards;
}

@keyframes clickBubbleFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) translateY(-30px);
    }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ===== FLOATING DONATE BUTTON (LEFT SIDE) — REMOVED ===== */
.floating-donate {
    display: none;
}

.floating-donate-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 30px 30px 0;
    box-shadow: 4px 4px 20px rgba(139, 154, 43, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    writing-mode: horizontal-tb;
}

.floating-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.floating-donate-btn:hover::before {
    left: 100%;
}

.floating-donate-btn:hover {
    padding-left: 22px;
    padding-right: 28px;
    box-shadow: 6px 6px 30px rgba(139, 154, 43, 0.5);
    transform: translateX(4px);
}

.floating-donate-btn i {
    font-size: 16px;
    animation: floatingHeartBeat 1.5s ease-in-out infinite;
}

@keyframes floatingHeartBeat {
    0%, 100% { transform: scale(1); }
    20% { transform: scale(1.2); }
    40% { transform: scale(1); }
    60% { transform: scale(1.15); }
    80% { transform: scale(1); }
}

/* Mobile floating donate */
@media (max-width: 768px) {
    .floating-donate-btn {
        padding: 12px 16px 12px 14px;
        font-size: 11px;
        gap: 7px;
    }
    .floating-donate-btn i {
        font-size: 14px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Heading Typography */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.cta-content h2,
.banner-content h1,
.donate-form-card h2,
.contact-form-wrapper h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Body Typography */
p, span, a, li, input, select, textarea, button, label,
.btn, .nav-menu > li > a, .info-text strong, .info-text span,
.section-tag, .section-desc, .hero-subtitle, .hero-desc,
.cause-content p, .how-item p, .event-content p,
.footer-col p, .footer-col ul li a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Preloader Background Animation */
#preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 154, 43, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(109, 122, 31, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 154, 43, 0.03) 0%, transparent 50%);
    animation: preloaderBgPulse 3s ease-in-out infinite;
}

@keyframes preloaderBgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Curtain reveal lines */
#preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 49.5%,
        rgba(139, 154, 43, 0.03) 49.5%,
        rgba(139, 154, 43, 0.03) 50.5%,
        transparent 50.5%
    );
    background-size: 80px 100%;
    animation: preloaderLines 2s linear infinite;
}

@keyframes preloaderLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(80px); }
}

.loader {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Main ring container */
.loader-inner {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 24px;
}

/* Outer ring */
.loader-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #8B9A2B;
    border-right-color: #8B9A2B;
    animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 15px rgba(139, 154, 43, 0.2);
}

/* Inner ring */
.loader-inner::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #6d7a1f;
    border-left-color: #6d7a1f;
    animation: loaderSpin 2s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
    box-shadow: 0 0 10px rgba(109, 122, 31, 0.15);
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Center logo */
.loader-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: loaderLogoPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(139, 154, 43, 0.25);
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 20px rgba(139, 154, 43, 0.25); }
    50% { transform: translate(-50%, -50%) scale(0.9); box-shadow: 0 2px 10px rgba(139, 154, 43, 0.15); }
}

/* Brand text */
.loader p {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    animation: loaderTextReveal 1.5s ease forwards;
}

@keyframes loaderTextReveal {
    0% { opacity: 0; transform: translateY(10px); letter-spacing: 8px; }
    100% { opacity: 1; transform: translateY(0); letter-spacing: 3px; }
}

.loader-tagline {
    color: #8B9A2B;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    animation: loaderTagline 1s ease 0.5s forwards;
}

@keyframes loaderTagline {
    0% { opacity: 0; }
    100% { opacity: 0.8; }
}

/* Progress bar */
.loader-progress {
    width: 180px;
    height: 3px;
    background: rgba(139, 154, 43, 0.1);
    border-radius: 3px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #8B9A2B, transparent);
    animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating particles in preloader */
.loader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.loader-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #8B9A2B;
    border-radius: 50%;
    opacity: 0;
    animation: loaderParticle 4s ease-in-out infinite;
}

.loader-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.loader-particles span:nth-child(2) { left: 80%; top: 30%; animation-delay: 0.5s; }
.loader-particles span:nth-child(3) { left: 30%; top: 70%; animation-delay: 1s; }
.loader-particles span:nth-child(4) { left: 70%; top: 80%; animation-delay: 1.5s; }
.loader-particles span:nth-child(5) { left: 50%; top: 10%; animation-delay: 2s; }
.loader-particles span:nth-child(6) { left: 90%; top: 60%; animation-delay: 2.5s; }

@keyframes loaderParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.4; transform: translateY(-20px) scale(1); }
}

/* End of preloader styles */

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4);
    border: 2px solid rgba(255,255,255,0.6);
    animation: none;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: backToTopBorder 2s linear infinite;
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 35px rgba(139, 154, 43, 0.5);
    border-color: #fff;
}

@keyframes backToTopBorder {
    0% { border-color: rgba(255,255,255,0.3); box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4); }
    50% { border-color: rgba(255,255,255,0.9); box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4), 0 0 15px rgba(255,255,255,0.3); }
    100% { border-color: rgba(255,255,255,0.3); box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4); }
}

/* ===== HEADER ===== */
.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* -- Header Main (Logo + Info) -- */
.header-main {
    background: var(--white);
    padding: 0;
}

.header-flex {
    display: flex;
    align-items: center;
    min-height: 100px;
}

/* Logo */
.logo-col {
    flex-shrink: 0;
    padding-right: 40px;
    display: flex;
    align-items: center;
    align-self: stretch;
    border-right: 1px solid rgba(0,0,0,0.07);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    padding: 4px;
    background: var(--primary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-link:hover img {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(139, 154, 43, 0.35);
}

/* Info */
.info-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 35px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-block:hover .info-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 11px;
    color: #999;
    line-height: 1;
    margin-bottom: 2px;
}

.info-text strong {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

/* Social */
.social-row {
    display: flex;
    gap: 8px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-row a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(139, 154, 43, 0.4);
}

.social-row .social-wa {
    background: #25d366;
}

.social-row .social-wa:hover {
    background: #1da851;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* -- Header Nav -- */
.header-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-main {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu > li > a i.fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Active / Hover underline */
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 10px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover {
    background: rgba(255,255,255,0.1);
}

.nav-menu > li > a:active {
    transform: scale(0.96);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 22px;
    font-size: 13px;
    color: #333;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 26px;
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: #fff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #fff;
}

.nav-cta-btn:active {
    transform: translateY(0) scale(0.96);
}

.nav-cta-btn i {
    color: #e74c3c;
    animation: heartPulse 1.2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-toggle.active {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1002;
}

.mobile-toggle.active span {
    background: var(--primary);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* -- Sticky State -- */
.site-header.sticky .header-main {
    display: none;
}

.site-header.sticky .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: stickySlide 0.35s ease;
}

@keyframes stickySlide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* (nav styles are above in HEADER section) */

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(139, 154, 43, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 154, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 42px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero::before,
.hero::after {
    content: none;
}

.hero-ambient {
    display: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    overflow: hidden;
    z-index: 1;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide::before,
.hero-slide::after {
    content: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    flex: 0 1 800px;
}

/* Full-width hero content (no right photo panel) */
.hero-content-full {
    max-width: 860px;
    flex: 0 1 860px;
    text-align: center;
}

.hero-content-full .hero-btns {
    justify-content: center;
}

.hero-content-full .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: inline-flex;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 0;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Hero visual photo panel — removed, kept for reference */
.hero-visual {
    display: none;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 44px 28px;
    border-radius: 34px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
    transform: rotate(-3deg);
}

.hero-photo-card {
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    animation: heroPhotoFloat 6s ease-in-out infinite;
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02);
}

.hero-photo-card span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(8px);
}

.hero-photo-main {
    width: 300px;
    height: 390px;
    right: 58px;
    top: 58px;
}

.hero-photo-top {
    width: 178px;
    height: 132px;
    right: 0;
    top: 18px;
    animation-delay: -2s;
}

.hero-photo-bottom {
    width: 206px;
    height: 150px;
    left: 0;
    bottom: 70px;
    animation-delay: -4s;
}

.hero-impact-card {
    position: absolute;
    right: 8px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 22px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(14px);
}

.hero-impact-card strong,
.hero-impact-card span {
    display: block;
}

.hero-impact-card strong {
    font-size: 14px;
    line-height: 1.2;
}

.hero-impact-card span {
    font-size: 12px;
    opacity: 0.78;
    line-height: 1.4;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btns .btn-primary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    padding: 15px 35px;
    position: relative;
    overflow: hidden;
}

.hero-btns .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(1);
}

.hero-btns .btn-primary:hover::before {
    transform: scaleX(0);
}

.hero-nav button {
    position: absolute;
    z-index: 6;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-nav button:hover {
    background: var(--primary);
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-dots {
    position: absolute;
    z-index: 6;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

@keyframes heroAmbientMove {
    0% { transform: translate3d(-18px, 0, 0) scale(1); }
    100% { transform: translate3d(24px, -16px, 0) scale(1.05); }
}

@keyframes heroRibbonSweep {
    0%, 100% { background-position: -140% 0, 120% 0, 0 0, 0 0; }
    50% { background-position: 160% 0, -100% 0, 47px 0, 0 47px; }
}

@keyframes heroMeshDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(38px, -26px, 0); }
}

@keyframes heroTextureShift {
    0% { transform: translate3d(-16px, 10px, 0); opacity: 0.26; }
    100% { transform: translate3d(18px, -12px, 0); opacity: 0.42; }
}

@keyframes heroSweep {
    0%, 100% { background-position: -120% 0, 0 0, 0 0; }
    50% { background-position: 160% 0, 46px 0, 0 46px; }
}

@keyframes heroGridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(36px, -24px, 0); }
}

@keyframes heroPhotoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* ===== QUICK DONATE STRIP ===== */
.quick-donate-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.quick-donate-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}

.quick-donate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.qd-text h3 {
    color: var(--white);
    font-size: 22px;
}

.qd-text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.qd-amounts {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.qd-amounts input {
    padding: 8px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    width: 140px;
    outline: none;
}

.qd-amounts input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    background: var(--primary-pale);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--primary-soft);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}


/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--primary-pale);
    border-radius: 8px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--primary-soft);
    transform: translateX(5px);
}

.about-feature i {
    color: var(--primary);
    font-size: 20px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
}

/* ===== STATS SECTION - ANIMATED BORDERS ===== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 20, 8, 0.93), rgba(45, 90, 39, 0.88));
}

.stats-section .container {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 35px 20px;
    border-radius: var(--radius);
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-light), transparent, var(--primary));
    background-size: 200% 200%;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* ===== CAUSES SECTION ===== */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cause-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 4px solid var(--primary);
    position: relative;
}

.cause-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(139, 154, 43, 0.20);
}

.cause-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.cause-image::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.08);
}

.cause-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Icon badge over image */
.cause-icon-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.cause-card:hover .cause-icon-badge {
    transform: scale(1.15) rotate(-8deg);
}

.cause-content {
    padding: 26px 26px 24px;
}

.cause-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.cause-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.65;
}

/* Progress */
.cause-progress {
    margin-bottom: 22px;
}

.cause-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cause-raised-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cause-pct-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

.progress-bar {
    height: 10px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bar-color, var(--secondary)), var(--bar-color, var(--primary)));
    border-radius: 10px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Shimmer shine on filled bar */
.progress-fill .progress-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: progressShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes progressShine {
    0%   { left: -60%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}

.raised-amount {
    color: var(--primary-dark);
    font-weight: 700;
}

.goal-amount {
    color: var(--gray);
}

/* Live pulse dot next to raised amount */
.raised-amount::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    margin-right: 5px;
    vertical-align: middle;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.6; }
}


/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--cream);
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B9A2B' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='2'/%3E%3Ccircle cx='13' cy='13' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connector line between steps */
.how-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    opacity: 0.3;
    z-index: 0;
}

.how-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.35s ease;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
    border: 1px solid var(--border);
}

.how-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.how-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(139, 154, 43, 0.08);
}

.how-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.how-item:hover .how-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.how-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.how-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== CALCULATOR SECTION ===== */
.calculator-grid {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 154, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.calc-input {
    margin-bottom: 30px;
}

.calc-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.calc-input input[type="number"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    margin-bottom: 15px;
}

.calc-input input[type="number"]:focus {
    border-color: var(--primary);
}

.calc-input input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: var(--border);
    border-radius: 5px;
    outline: none;
}

.calc-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.calc-result-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.calc-result-item:hover {
    background: var(--primary-pale);
    transform: translateY(-3px);
    border-color: var(--primary-soft);
}

.calc-result-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.calc-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.calc-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 6px;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 58px 44px 54px;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 50% 0%, rgba(139,154,43,0.09), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(22, 41, 18, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(139,154,43,0.13);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 0 0 4px 4px;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(139,154,43,0.08);
    border-radius: 16px;
    pointer-events: none;
}

.testimonial-quote {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.testimonial-avatar {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 82px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 24%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(145deg, #8B9A2B 0%, #4a7a20 52%, #1f3f20 100%);
    border: 4px solid #fff;
    box-shadow:
        0 18px 42px rgba(45, 90, 39, 0.24),
        0 0 0 7px rgba(139,154,43,0.14);
    isolation: isolate;
    overflow: visible;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.24), transparent 55%);
    z-index: -1;
}

.testimonial-author .testimonial-avatar span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28);
}

.testimonial-avatar i {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff !important;
    font-size: 12px;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    animation: none !important;
}

.testimonial-avatar-donor {
    background:
        radial-gradient(circle at 30% 24%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(145deg, #a7a92f 0%, #5d7e22 48%, #1f3f20 100%);
}

.testimonial-avatar-volunteer {
    background:
        radial-gradient(circle at 30% 24%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(145deg, #2d5a27 0%, #6d7a1f 52%, #9aa83a 100%);
}

.testimonial-avatar-beneficiary {
    background:
        radial-gradient(circle at 30% 24%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(145deg, #244d22 0%, #4a7a20 50%, #8B9A2B 100%);
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== EVENTS SECTION ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: none;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border-left: none;
}

.event-date {
    min-width: 80px;
    padding: 20px 15px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 8px 25px rgba(139, 154, 43, 0.3);
    position: relative;
}

.event-date .day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.event-date .month {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.event-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--black);
}

.event-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}

.event-content p i {
    color: var(--primary);
    margin-right: 5px;
    width: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #1a3315, #2d5a27, #4a7a20, #1a3315);
    background-size: 400% 400%;
    animation: bgGradientMove 8s ease infinite;
    opacity: 0.94;
}

@keyframes bgGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PARTNERS ===== */
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
    padding: 25px 30px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.partner-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.partner-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}


/* ===== FOOTER ===== */
.footer {
    background: #0a1508;
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-top {
    padding: 70px 0 40px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 43, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    height: 420px;
    isolation: isolate;
    overflow: hidden;
    background-color: #173e24;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(205, 232, 93, 0.34), transparent 27%),
        radial-gradient(circle at 84% 28%, rgba(96, 181, 96, 0.28), transparent 28%),
        radial-gradient(circle at 58% 88%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #12331f 0%, #245a32 46%, #879a24 100%);
    background-size: 140% 140%, 130% 130%, 120% 120%, cover;
    background-position: center;
    display: flex;
    align-items: center;
    animation: bannerMeshShift 14s ease-in-out infinite alternate;
}

.page-banner::before,
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-banner::before {
    z-index: 1;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.16) 45%, transparent 56%),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 280% 100%, 86px 86px, 86px 86px;
    mix-blend-mode: screen;
    opacity: 0.48;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    animation: bannerLightSweep 10s ease-in-out infinite, bannerGridDrift 20s linear infinite;
}

.page-banner::after {
    z-index: 2;
    background:
        radial-gradient(circle at 10% 85%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 28% 25%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
        radial-gradient(circle at 70% 18%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 72%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
        linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.22));
    opacity: 0.8;
    animation: bannerSparkDrift 8s ease-in-out infinite alternate;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(10, 32, 18, 0.78), rgba(18, 55, 28, 0.48), rgba(83, 105, 22, 0.68)),
        linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.26));
    animation: bannerGradientFlow 12s ease-in-out infinite;
}

.banner-motifs {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.62;
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.banner-motif-track {
    position: absolute;
    left: 0;
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding-inline: 56px;
    animation: bannerMotifMarquee 36s linear infinite;
    will-change: transform;
}

.banner-motif-track:first-child {
    top: 30px;
}

.banner-motif-track-alt {
    bottom: 30px;
    animation-direction: reverse;
    animation-duration: 42s;
}

.banner-motifs span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: max-content;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.66);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
}

.banner-motifs i {
    color: rgba(255,255,255,0.74) !important;
    font-size: 15px;
    animation: none !important;
}

.page-banner .container {
    position: relative;
    z-index: 5;
}

.banner-content {
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 48px 0 42px;
}

.banner-icon {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 34%),
        rgba(255,255,255,0.12);
    box-shadow: 0 22px 56px rgba(0,0,0,0.22), inset 0 0 28px rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    animation: bannerIconFloat 4.5s ease-in-out infinite;
}

.banner-icon::before,
.banner-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    animation: bannerIconRing 4.8s ease-in-out infinite;
}

.banner-icon::after {
    inset: -20px;
    opacity: 0.5;
    animation-delay: -2.2s;
}

.banner-icon i {
    position: relative;
    z-index: 1;
    font-size: 30px;
    color: var(--white) !important;
    animation: none !important;
}

.banner-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0;
    text-shadow: 0 12px 30px rgba(0,0,0,0.24);
    overflow-wrap: anywhere;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 14px;
    opacity: 0.95;
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0;
}

@keyframes bannerMeshShift {
    0% { background-position: 0% 42%, 100% 30%, 50% 100%, center; }
    100% { background-position: 18% 20%, 78% 52%, 42% 76%, center; }
}

@keyframes bannerGradientFlow {
    0%, 100% { opacity: 1; filter: saturate(1); }
    50% { opacity: 0.9; filter: saturate(1.16); }
}

@keyframes bannerLightSweep {
    0%, 100% { background-position: -120% 0, 0 0, 0 0; }
    50% { background-position: 160% 0, 46px 0, 0 36px; }
}

@keyframes bannerGridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(38px, -22px, 0); }
}

@keyframes bannerSparkDrift {
    0% { transform: translate3d(-8px, 4px, 0); opacity: 0.55; }
    100% { transform: translate3d(10px, -8px, 0); opacity: 0.9; }
}

@keyframes bannerIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes bannerIconRing {
    0%, 100% { transform: scale(0.94); opacity: 0.38; }
    50% { transform: scale(1.1); opacity: 0.72; }
}

@keyframes bannerMotifMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero::before,
    .hero::after,
    .hero-ambient,
    .hero-slide::before,
    .hero-photo-card {
        animation: none;
    }

    .page-banner::before,
    .page-banner::after,
    .banner-overlay,
    .page-banner,
    .banner-icon,
    .banner-icon::before,
    .banner-icon::after,
    .banner-motif-track {
        animation: none;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 360px;
    }

    .banner-content {
        padding: 34px 0 30px;
    }

    .banner-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
    }

    .banner-icon i {
        font-size: 24px;
    }

    .breadcrumb {
        max-width: 100%;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .banner-motif-track:first-child {
        top: 24px;
    }

    .banner-motif-track-alt {
        bottom: 24px;
    }

    .banner-motifs span {
        font-size: 11px;
        padding: 8px 11px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 330px;
    }

    .banner-icon {
        width: 52px;
        height: 52px;
    }

    .banner-icon i {
        font-size: 21px;
    }

    .banner-motif-track-alt {
        display: none;
    }
}

/* ===== DONATE PAGE ===== */
.donate-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.donate-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.donate-form-card h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.donate-form-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--black);
}

.required-mark {
    color: #e74c3c;
    font-weight: 800;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    display: none;
    margin: 18px 0;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-message.success,
.form-message.error,
.form-message.info {
    display: block;
}

.form-message.success {
    color: #23631f;
    background: #eef8ea;
    border: 1px solid #cde7c5;
}

.form-message.error {
    color: #b42318;
    background: #fff1f0;
    border: 1px solid #ffd1cc;
}

.form-message.info {
    color: var(--primary-dark);
    background: var(--primary-pale);
    border: 1px solid var(--primary-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 154, 43, 0.1);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.captcha-group {
    padding: 16px;
    border-radius: 10px;
    background: var(--primary-pale);
    border: 1px solid var(--primary-soft);
}

.captcha-group input {
    max-width: 220px;
    background: #fff;
}

.captcha-group small {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.amount-option {
    padding: 8px 18px;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.amount-option:hover,
.amount-option.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    width: auto;
    accent-color: var(--primary);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary);
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.payment-methods p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: var(--gray);
}

.payment-icons img {
    height: 24px;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 i {
    color: var(--primary);
}

.why-donate-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.why-donate-list li:last-child {
    border-bottom: none;
}

.why-donate-list li i {
    color: var(--primary);
    font-size: 12px;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
}

.impact-amount {
    font-weight: 700;
    color: var(--primary);
    min-width: 70px;
}

.impact-desc {
    font-size: 13px;
    color: var(--gray);
}

.bank-details p {
    font-size: 13px;
    margin-bottom: 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.modal-icon.success {
    background: rgba(139, 154, 43, 0.1);
    color: var(--primary);
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-note {
    font-size: 13px;
    color: var(--gray);
    margin: 15px 0;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
    background: linear-gradient(180deg, #fafbf5 0%, #fff 50%, #f8f9f4 100%);
}

.gallery-counts {
    margin: 12px auto 0;
    max-width: 680px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 24px;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(139, 154, 43, 0.15);
}

.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139, 154, 43, 0.30);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #eef0e6;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(109, 122, 31, 0.18);
    z-index: 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-item video {
    display: block;
}

.gallery-video-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.60);
    color: var(--white);
    display: grid;
    place-items: center;
    z-index: 2;
    backdrop-filter: blur(6px);
    font-size: 14px;
}

.gallery-category-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.62);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(6px);
}

.gallery-document {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

.gallery-document i { font-size: 54px; }
.gallery-document span { font-weight: 700; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 10, 0.82), rgba(139, 154, 43, 0.72));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    margin-bottom: 10px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}

.gallery-overlay span {
    font-size: 12px;
    font-weight: 600;
    max-width: 90%;
    text-align: center;
    line-height: 1.4;
}

.gallery-item.hidden,
.gallery-item.gallery-hidden {
    display: none;
}

/* Load More Button */
.gallery-load-more-wrap {
    margin-top: 48px;
}

.gallery-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(139, 154, 43, 0.12);
    position: relative;
    overflow: hidden;
}

.gallery-load-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}

.gallery-load-more-btn:hover::before { transform: scaleX(1); }

.gallery-load-more-btn .glm-text,
.gallery-load-more-btn .glm-count,
.gallery-load-more-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

.gallery-load-more-btn:hover .glm-text,
.gallery-load-more-btn:hover .glm-count,
.gallery-load-more-btn:hover i {
    color: #fff;
}

.gallery-load-more-btn .glm-count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
}

.gallery-load-more-btn i {
    font-size: 13px;
    transition: transform 0.3s ease, color 0.35s ease;
}

.gallery-load-more-btn:hover i { transform: translateY(3px); }

.gallery-load-more-btn:hover {
    box-shadow: 0 8px 30px rgba(139, 154, 43, 0.30);
    transform: translateY(-2px);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox img,
.lightbox video {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox video {
    display: none;
}

.lightbox p {
    color: var(--white);
    margin-top: 15px;
    font-size: 16px;
}

.lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
}

.lightbox button:hover {
    color: var(--primary);
}

.lightbox-close { top: 20px; right: 30px; font-size: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ===== EVENTS PAGE ===== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-detail-card {
    display: grid;
    grid-template-columns: 100px 250px 1fr;
    gap: 25px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    align-items: center;
    transition: var(--transition);
}

.event-detail-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.event-detail-date {
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 20px 15px;
    border-radius: var(--radius);
}

.event-detail-date .day {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.event-detail-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.event-detail-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.event-detail-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.event-meta span {
    font-size: 13px;
    color: var(--gray);
}

.event-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.event-detail-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.event-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Past Events */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.past-event-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 250px;
}

.past-event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.past-event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.past-date {
    font-size: 12px;
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 5px;
}

.past-event-info h4 {
    font-size: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--gray);
}

.contact-social-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-social-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link.facebook { background: #f0f2ff; color: #1877f2; }
.social-link.twitter { background: #e8f5fd; color: #1da1f2; }
.social-link.instagram { background: #fef0f5; color: #e4405f; }
.social-link.youtube { background: #fef0f0; color: #ff0000; }
.social-link.whatsapp { background: #f0fef4; color: #25d366; }

/* Map */
.map-section iframe {
    display: block;
}

/* ===== ABOUT PAGE EXTRAS ===== */
.about-highlights {
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.highlight-item i {
    color: var(--primary);
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent);
}

.mission-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-grid.team-grid-single {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
}

.team-grid-single .leadership-card {
    position: relative;
    border: 1px solid rgba(139, 154, 43, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--white) 0%, #fbfcf4 100%);
    box-shadow: 0 22px 55px rgba(26, 26, 26, 0.11);
}

.team-grid-single .leadership-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(139, 154, 43, 0.12);
    border-radius: 14px;
    pointer-events: none;
    z-index: 2;
}

.team-grid-single .leadership-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(26, 26, 26, 0.15);
}

.team-grid-single .team-image {
    height: auto;
    aspect-ratio: 1 / 1.08;
    background: var(--primary-pale);
}

.team-grid-single .team-image img {
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.team-grid-single .leadership-card:hover .team-image img {
    transform: scale(1.05);
}

.team-grid-single .team-social {
    bottom: 16px;
    background: none;
    z-index: 3;
}

.team-grid-single .team-social a {
    width: 44px;
    height: 44px;
    color: #0a66c2;
    box-shadow: 0 10px 24px rgba(10, 102, 194, 0.22);
}

.leader-role-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.12);
}

/* ═══════════════════════════════════════════════════
   VOL-SECTION — dark forest green, split layout
   ═══════════════════════════════════════════════════ */
.vol-section {
    position: relative;
    background: linear-gradient(140deg, #0e2410 0%, #1a3d1a 40%, #0d2214 100%);
    overflow: hidden;
    padding: 100px 0 110px;
}

.vol-section-bg { position: absolute; inset: 0; pointer-events: none; }

.vol-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(139,154,43,0.12); }
.vol-ring-1 { width: 600px; height: 600px; top: -200px; right: -200px; animation: volRingSpin 28s linear infinite; }
.vol-ring-2 { width: 400px; height: 400px; top: -100px; right: -100px; animation: volRingSpin 20s linear infinite reverse; border-color: rgba(168,184,74,0.08); }
.vol-ring-3 { width: 280px; height: 280px; bottom: -80px; left: -60px; animation: volRingSpin 16s linear infinite; }

@keyframes volRingSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.04); }
    100% { transform: rotate(360deg) scale(1); }
}

.vol-fp {
    position: absolute;
    left: var(--vp-x); top: var(--vp-y);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(168,184,74,var(--vp-s));
    animation: volFpFloat var(--vp-d) ease-in-out infinite alternate;
}
@keyframes volFpFloat {
    0%   { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-18px) scale(1.4); opacity: 0.15; }
}

.vol-layout {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vol-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-light);
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 20px;
}

.vol-heading {
    font-family: 'Playfair Display', serif;
    font-size: 46px; font-weight: 800; line-height: 1.15;
    color: #fff; margin-bottom: 20px;
}
.vol-heading em { font-style: italic; color: var(--primary-light); }

.vol-para { font-size: 16px; color: rgba(255,255,255,0.70); line-height: 1.75; margin-bottom: 36px; }

.vol-stats {
    display: flex; align-items: center;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.vol-stat-item { flex: 1; text-align: center; }
.vol-stat-n { display: block; font-size: 30px; font-weight: 800; color: var(--primary-light); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 4px; }
.vol-stat-l { font-size: 12px; color: rgba(255,255,255,0.50); font-weight: 500; }
.vol-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

.vol-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 30px; border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-weight: 700; font-size: 15px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(109,122,31,0.35);
}
.vol-cta-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: transform 0.3s ease;
}
.vol-cta-btn:hover { box-shadow: 0 12px 40px rgba(109,122,31,0.55); transform: translateY(-3px); color: #fff; }
.vol-cta-btn:hover .vol-cta-arrow { transform: translateX(4px); }

.vol-photo-wrap { position: relative; }
.vol-photo-inner {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 2px solid rgba(139,154,43,0.25);
}
.vol-photo-inner img {
    width: 100%; height: 480px;
    object-fit: cover; object-position: center;
    display: block; transition: transform 0.7s ease;
}
.vol-photo-inner:hover img { transform: scale(1.04); }

.vol-corner { position: absolute; width: 40px; height: 40px; z-index: 2; }
.vol-c-tl { top: -2px; left: -2px; border-top: 3px solid var(--primary-light); border-left: 3px solid var(--primary-light); border-radius: 4px 0 0 0; }
.vol-c-br { bottom: -2px; right: -2px; border-bottom: 3px solid var(--primary-light); border-right: 3px solid var(--primary-light); border-radius: 0 0 4px 0; }

.vol-photo-tag {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.vol-photo-tag i { color: var(--primary-light); }

.vol-float-card {
    position: absolute; top: -28px; right: -28px;
    display: flex; align-items: center; gap: 12px;
    background: #fff; border-radius: 16px; padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25); z-index: 3;
    animation: volCardFloat 4s ease-in-out infinite alternate;
}
@keyframes volCardFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
.vol-fc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
}
.vol-fc-text strong { display: block; font-size: 14px; color: var(--black); font-weight: 700; }
.vol-fc-text span   { font-size: 12px; color: var(--gray); }

@media (max-width: 1024px) {
    .vol-layout { grid-template-columns: 1fr; gap: 48px; }
    .vol-heading { font-size: 36px; }
    .vol-photo-inner img { height: 360px; }
    .vol-float-card { top: -20px; right: -10px; }
}
@media (max-width: 640px) {
    .vol-section { padding: 70px 0 80px; }
    .vol-heading { font-size: 28px; }
    .vol-stats { flex-direction: column; gap: 16px; }
    .vol-stat-sep { width: 60px; height: 1px; }
    .vol-float-card { display: none; }
}

/* ═══════════════════════════════════════════════════
   DOCS-SECTION — deep charcoal, glowing cards
   ═══════════════════════════════════════════════════ */
.docs-section {
    position: relative;
    background: #111820;
    overflow: hidden;
    padding: 100px 0 110px;
}
.docs-section-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.docs-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.docs-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; }
.docs-orb-1 { width: 500px; height: 500px; top: -150px; left: -100px;  background: #8B9A2B; animation: docOrbPulse 12s ease-in-out infinite alternate; }
.docs-orb-2 { width: 400px; height: 400px; bottom: -120px; right: -80px; background: #2d5a27; animation: docOrbPulse 16s ease-in-out infinite alternate-reverse; }
.docs-orb-3 { width: 260px; height: 260px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #4a7a20; animation: docOrbPulse 10s ease-in-out infinite alternate; opacity: 0.10; }
@keyframes docOrbPulse {
    0%   { transform: scale(1); }
    100% { transform: scale(1.2); }
}
.docs-orb-3 { animation: docOrbPulse3 10s ease-in-out infinite alternate; }
@keyframes docOrbPulse3 {
    0%   { transform: translate(-50%,-50%) scale(1); }
    100% { transform: translate(-50%,-50%) scale(1.2); }
}

.docs-section > .container { position: relative; z-index: 1; }
.docs-section-header { text-align: center; margin-bottom: 60px; }

.docs-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-light);
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
}
.docs-heading { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.docs-subtext { font-size: 16px; color: rgba(255,255,255,0.50); line-height: 1.7; }

.docs-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-bottom: 36px; }

.docs-card {
    position: relative; border-radius: 20px; padding: 32px 26px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.38s ease, border-color 0.3s ease, box-shadow 0.38s ease;
}
.docs-card:hover { transform: translateY(-8px); border-color: rgba(139,154,43,0.30); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

.docs-card-glow {
    position: absolute; width: 200px; height: 200px; border-radius: 50%;
    top: -60px; right: -60px; opacity: 0; filter: blur(50px);
    transition: opacity 0.5s ease; pointer-events: none;
}
.docs-card:hover .docs-card-glow { opacity: 1; }
.docs-card-legal   .docs-card-glow { background: rgba(139,154,43,0.40); }
.docs-card-tax     .docs-card-glow { background: rgba(74,122,32,0.40); }
.docs-card-finance .docs-card-glow { background: rgba(45,90,39,0.45); }

.docs-card-legal::before   { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, #8B9A2B, #a8b84a); border-radius:20px 20px 0 0; }
.docs-card-tax::before     { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, #4a7a20, #6fa832); border-radius:20px 20px 0 0; }
.docs-card-finance::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, #2d5a27, #4a7a20); border-radius:20px 20px 0 0; }

.docs-card-header { display:flex; align-items:center; gap:14px; margin-bottom:24px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,0.07); }

.docs-card-icon { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; color:#fff; flex-shrink:0; }
.docs-card-legal   .docs-card-icon { background: linear-gradient(135deg, #8B9A2B, #6d7a1f); }
.docs-card-tax     .docs-card-icon { background: linear-gradient(135deg, #4a7a20, #3a6018); }
.docs-card-finance .docs-card-icon { background: linear-gradient(135deg, #2d5a27, #1e3d1b); border: 1px solid rgba(255,255,255,0.10); }

.docs-card-title-wrap { flex: 1; }
.docs-card-title-wrap h3 { font-size:16px; font-weight:700; color:#fff; margin:0 0 3px; font-family:'Playfair Display',serif; }
.docs-card-title-wrap span { font-size:11px; color:rgba(255,255,255,0.38); }

.docs-card-count { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:800; color:rgba(255,255,255,0.45); flex-shrink:0; }

.docs-items-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.docs-items-list li { display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:10px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); transition:background 0.25s ease; }
.docs-items-list li:hover { background:rgba(139,154,43,0.09); border-color:rgba(139,154,43,0.18); }

.di-num { font-size:11px; font-weight:700; color:rgba(255,255,255,0.22); width:20px; flex-shrink:0; }
.di-info { flex:1; display:flex; flex-direction:column; gap:2px; }
.di-info strong { font-size:12.5px; color:rgba(255,255,255,0.88); font-weight:600; line-height:1.3; }
.di-info span   { font-size:10.5px; color:rgba(255,255,255,0.33); }

.di-badge { font-size:10px; font-weight:700; padding:3px 9px; border-radius:999px; white-space:nowrap; display:inline-flex; align-items:center; gap:4px; flex-shrink:0; }
.di-green  { background:rgba(76,175,80,0.15);  color:#81c784; border:1px solid rgba(76,175,80,0.25); }
.di-blue   { background:rgba(33,150,243,0.12); color:#64b5f6; border:1px solid rgba(33,150,243,0.22); }
.di-orange { background:rgba(255,152,0,0.12);  color:#ffb74d; border:1px solid rgba(255,152,0,0.22); }

.docs-request-bar { display:flex; align-items:center; gap:20px; background:rgba(139,154,43,0.09); border:1px solid rgba(139,154,43,0.22); border-radius:16px; padding:22px 28px; }
.drb-icon { width:50px; height:50px; border-radius:14px; background:linear-gradient(135deg,var(--primary),var(--primary-dark)); display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff; flex-shrink:0; }
.drb-text { flex:1; }
.drb-text strong { display:block; font-size:15px; font-weight:700; color:#fff; margin-bottom:3px; }
.drb-text p { font-size:13px; color:rgba(255,255,255,0.48); margin:0; }
.drb-text a { color:var(--primary-light); }
.drb-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 22px; border-radius:50px; background:var(--primary); color:#fff; font-size:13px; font-weight:700; transition:all 0.3s ease; white-space:nowrap; flex-shrink:0; }
.drb-btn:hover { background:var(--primary-dark); transform:translateX(3px); color:#fff; }

@media (max-width: 1024px) { .docs-cards-grid { grid-template-columns: 1fr 1fr; } .docs-heading { font-size: 34px; } }
@media (max-width: 640px) {
    .docs-section { padding: 70px 0 80px; }
    .docs-cards-grid { grid-template-columns: 1fr; }
    .docs-heading { font-size: 26px; }
    .docs-request-bar { flex-direction: column; text-align: center; }
    .drb-btn { width: 100%; justify-content: center; }
}

.team-grid-single .team-info {
    padding: 26px 24px 30px;

}

.team-grid-single .team-info h4 {
    font-size: 21px;
    margin-bottom: 7px;
}

.team-grid-single .team-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary-pale);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.team-info span {
    font-size: 13px;
    color: var(--primary);
}

/* ===== SERVICES PAGE - CARD GRID ===== */
.services-cards-section {
    background: var(--light-gray);
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid rgba(139, 154, 43, 0.08);
}

/* Top gradient accent strip */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
    background-size: 200% 100%;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    height: 5px;
    animation: svcAccentSlide 2s linear infinite;
}

@keyframes svcAccentSlide {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Bottom corner blob */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 154, 43, 0.08), transparent 70%);
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.6);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(109, 122, 31, 0.16);
    border-color: rgba(139, 154, 43, 0.22);
}

.service-card-body {
    padding: 36px 28px 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-card-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-pale), #dde8a8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 22px;
    transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 18px rgba(139, 154, 43, 0.18);
    position: relative;
}

/* Dashed ring */
.service-card-icon::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 24px;
    border: 2px dashed rgba(139, 154, 43, 0.20);
    transition: transform 0.6s linear, opacity 0.3s ease;
    opacity: 0;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 28px rgba(109, 122, 31, 0.35);
}

.service-card:hover .service-card-icon::after {
    opacity: 1;
    transform: rotate(180deg);
}

.service-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
    line-height: 1.35;
}

.service-card:hover .service-card-body h3 {
    color: var(--primary-dark);
}

.service-card-body p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--primary-pale);
    border: 1.5px solid rgba(139, 154, 43, 0.22);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-read-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}

.service-read-more span,
.service-read-more i {
    position: relative;
    z-index: 1;
}

.service-read-more:hover::before { transform: scaleX(1); }

.service-read-more:hover {
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(109, 122, 31, 0.30);
}

.service-read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.service-read-more:hover i { transform: translateX(4px); color: #fff; }

.service-card-footer {
    padding: 16px 28px;
    border-top: 1px solid var(--border);
    background: var(--light-gray);
    position: relative;
    z-index: 1;
}

.service-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.service-card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card-stats i {
    color: var(--primary);
    font-size: 12px;
}

/* ===== SERVICES PAGE - DETAIL BLOCKS (kept for alternate layout) ===== */
.service-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.service-block-grid.reverse {
    direction: rtl;
}

.service-block-grid.reverse > * {
    direction: ltr;
}

.service-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-block-content .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 154, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-block-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-block-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-block-content ul {
    margin-bottom: 20px;
}

.service-block-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 12px;
}

.service-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.service-stat {
    text-align: center;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.service-stat strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
}

.service-stat span {
    font-size: 12px;
    color: var(--gray);
}

/* WhatsApp is now in header social row */

/* ===== WHY CHOOSE US SECTION (kept for other pages) ===== */
.why-choose-section {
    background: var(--white);
    position: relative;
    border-top: 1px solid var(--border);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-choose-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 5px solid transparent;
    border-image: linear-gradient(to bottom, var(--primary), var(--primary-light)) 1;
    position: relative;
    overflow: hidden;
}

.why-choose-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-box:hover::before { transform: scaleX(1); }
.why-choose-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.why-choose-icon {
    width: 70px; height: 70px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px; color: var(--primary-dark);
    transition: all 0.4s ease;
}

.why-choose-box:hover .why-choose-icon { background: var(--primary); color: var(--white); transform: scale(1.1) rotateY(180deg); }
.why-choose-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--black); }
.why-choose-box p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== WAYS TO GIVE SECTION ===== */
.ways-section {
    position: relative;
    padding: 100px 0 110px;
    background: #f0f4e4;
    overflow: hidden;
}

/* ── Animated SVG background ── */
.ways-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ways-bg-wave {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wbg-e1 { animation: wBgFloat1 14s ease-in-out infinite alternate; }
.wbg-e2 { animation: wBgFloat2 18s ease-in-out infinite alternate-reverse; }
.wbg-e3 { animation: wBgFloat1 10s ease-in-out infinite alternate; }
.wbg-path1 { animation: wBgWave1 20s ease-in-out infinite alternate; transform-origin: center; }
.wbg-path2 { animation: wBgWave2 16s ease-in-out infinite alternate-reverse; transform-origin: center; }

@keyframes wBgFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 20px) scale(1.12); }
}
@keyframes wBgFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}
@keyframes wBgWave1 {
    0%   { d: path("M0,200 C180,120 360,280 540,200 S900,80 1080,200 S1350,320 1440,200 L1440,560 L0,560Z"); }
    100% { d: path("M0,260 C200,160 380,320 560,240 S880,100 1100,220 S1380,340 1440,240 L1440,560 L0,560Z"); }
}
@keyframes wBgWave2 {
    0%   { d: path("M0,320 C200,240 400,360 600,300 S900,200 1200,320 S1380,400 1440,360 L1440,560 L0,560Z"); }
    100% { d: path("M0,360 C180,280 420,400 640,320 S920,180 1180,300 S1400,380 1440,320 L1440,560 L0,560Z"); }
}

/* Dots grid */
.ways-dots-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    padding: 40px;
}

.ways-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.10;
    animation: wDotPulse 3s ease-in-out infinite;
    align-self: center; justify-self: center;
}
.ways-dot:nth-child(2n)   { animation-delay: 0.4s; opacity: 0.07; }
.ways-dot:nth-child(3n)   { animation-delay: 0.8s; opacity: 0.13; }
.ways-dot:nth-child(4n)   { animation-delay: 1.2s; }
.ways-dot:nth-child(5n)   { animation-delay: 1.6s; opacity: 0.06; }

@keyframes wDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.10; }
    50%       { transform: scale(1.8); opacity: 0.22; }
}

/* Hexagons */
.ways-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0.05;
}
.ways-hex-1 { width: 280px; height: 320px; top: -80px; right: 5%; animation: wHexSpin 30s linear infinite; }
.ways-hex-2 { width: 180px; height: 208px; bottom: -50px; left: 3%; animation: wHexSpin 22s linear infinite reverse; }
.ways-hex-3 { width: 100px; height: 116px; top: 40%; left: 50%; animation: wHexSpin 18s linear infinite; opacity: 0.04; }

@keyframes wHexSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ── Header ── */
.ways-section > .container { position: relative; z-index: 1; }

.ways-header {
    text-align: center;
    margin-bottom: 60px;
}

.ways-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(109, 122, 31, 0.30);
    animation: wTagGlow 3s ease-in-out infinite;
}

@keyframes wTagGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(109, 122, 31, 0.30); }
    50%       { box-shadow: 0 4px 28px rgba(109, 122, 31, 0.55); }
}

.ways-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.ways-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Grid — strict 3 columns ── */
.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ── Card ── */
.ways-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 38px 32px 30px;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 30px rgba(109, 122, 31, 0.08);
    border: 1.5px solid rgba(139, 154, 43, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition:
        transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.38s ease,
        border-color 0.3s ease;
    cursor: default;
    min-height: 280px;
}

/* Blob shape in BG corner */
.wc-shape {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    background: var(--card-accent-light, #e8ecd0);
    top: -50px;
    right: -50px;
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0.55;
    animation: wBlobMorph 8s ease-in-out infinite alternate;
}

@keyframes wBlobMorph {
    0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: scale(1) rotate(0deg); }
    50%  { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; transform: scale(1.1) rotate(15deg); }
    100% { border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%; transform: scale(0.95) rotate(-10deg); }
}

.ways-card:hover .wc-shape {
    transform: scale(1.6) rotate(20deg);
    opacity: 0.80;
}

/* Left accent strip */
.ways-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--card-accent, #8B9A2B), transparent);
    border-radius: 4px 0 0 4px;
    transition: width 0.35s ease;
}

.ways-card:hover::before { width: 6px; }

/* Bottom shimmer bar */
.ways-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--card-accent, #8B9A2B), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: wShimmer 2.5s linear infinite;
}

.ways-card:hover::after { opacity: 1; }

@keyframes wShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.ways-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.06),
        0 22px 55px rgba(109, 122, 31, 0.18);
    border-color: rgba(139, 154, 43, 0.22);
}

/* Top row: icon + number */
.wc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

/* Icon box */
.wc-icon-box {
    width: 66px; height: 66px;
    border-radius: 16px;
    background: var(--card-accent-light, #e8ecd0);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--card-accent, #8B9A2B);
    position: relative;
    z-index: 1;
    transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.ways-card:hover .wc-icon-box {
    background: var(--card-accent, #8B9A2B);
    color: #fff;
    border-radius: 50%;
    transform: rotate(-8deg) scale(1.12);
    box-shadow: 0 8px 24px rgba(109, 122, 31, 0.30);
}

/* Ghost number */
.wc-num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(139, 154, 43, 0.07);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    user-select: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.ways-card:hover .wc-num { color: rgba(139, 154, 43, 0.15); }

/* Title */
.ways-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.ways-card:hover h3 { color: var(--card-accent, #8B9A2B); }

/* Description */
.ways-card p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Footer row: button + pill */
.wc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

/* CTA button */
.wc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background: var(--card-accent, #8B9A2B);
    color: #fff;
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(109, 122, 31, 0.22);
    position: relative;
    overflow: hidden;
}

.wc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.wc-btn:hover::before { transform: translateX(100%); }

.wc-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 22px rgba(109, 122, 31, 0.38);
    color: #fff;
}

.wc-btn i { font-size: 11px; }

/* Category pill */
.wc-tag-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--card-accent, #8B9A2B);
    background: var(--card-accent-light, #e8ecd0);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Stagger delays */
.ways-card[data-delay="80"]  { animation-delay: 0.08s; }
.ways-card[data-delay="160"] { animation-delay: 0.16s; }
.ways-card[data-delay="240"] { animation-delay: 0.24s; }
.ways-card[data-delay="320"] { animation-delay: 0.32s; }
.ways-card[data-delay="400"] { animation-delay: 0.40s; }
.ways-card[data-delay="480"] { animation-delay: 0.48s; }
.ways-card[data-delay="560"] { animation-delay: 0.56s; }
.ways-card[data-delay="640"] { animation-delay: 0.64s; }
.ways-card[data-delay="720"] { animation-delay: 0.72s; }

/* ── Responsive ── */
@media (max-width: 1280px) {
    .ways-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .ways-title { font-size: 38px; }
}
@media (max-width: 1024px) {
    .ways-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (max-width: 768px) {
    .ways-section { padding: 70px 0 80px; }
    .ways-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .ways-title { font-size: 30px; }
    .ways-card { padding: 28px 22px 22px; min-height: 0; }
    .wc-icon-box { width: 52px; height: 52px; font-size: 20px; }
}
@media (max-width: 480px) {
    .ways-grid { grid-template-columns: 1fr; }
    .ways-title { font-size: 26px; }
}



/* ===== RECENT DONORS TICKER ===== */
.donors-ticker-section {
    padding: 30px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.donors-ticker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.donors-ticker-header i {
    color: var(--primary);
    font-size: 18px;
}

.donors-ticker-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.donors-ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.donors-ticker-wrapper::before,
.donors-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.donors-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.donors-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent);
}

.donors-ticker-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.donors-ticker-track:hover {
    animation-play-state: paused;
}

.donor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    white-space: nowrap;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.donor-item:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
}

.donor-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.donor-info {
    display: flex;
    flex-direction: column;
}

.donor-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.donor-amount {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a3315 0%, #2d5a27 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn {
    white-space: nowrap;
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    font-weight: 700;
}

.newsletter-form .btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

/* ===== MODERN FORM INPUTS ===== */
.form-group-modern {
    position: relative;
    margin-bottom: 24px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 154, 43, 0.08);
}

.form-group-modern label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 0 4px;
}

.form-group-modern input:focus ~ label,
.form-group-modern input:not(:placeholder-shown) ~ label,
.form-group-modern textarea:focus ~ label,
.form-group-modern textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}


/* ===== POLICY PAGES ===== */
.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 850px;
    margin: 0 auto;
}

.policy-updated {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
    padding: 10px 16px;
    background: var(--primary-pale);
    border-radius: 8px;
    display: inline-block;
}

.policy-updated i {
    color: var(--primary);
    margin-right: 6px;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 35px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-pale);
    font-family: 'Playfair Display', serif;
}

.policy-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul,
.policy-content ol {
    margin: 10px 0 20px 20px;
}

.policy-content ul li,
.policy-content ol li {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 6px;
    padding-left: 5px;
}

.policy-content ul li {
    list-style: disc;
}

.policy-content ol li {
    list-style: decimal;
}

.policy-content a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-dark);
}

.policy-contact {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 4px solid var(--primary);
}

.policy-contact p {
    margin-bottom: 8px;
    font-size: 14px;
}

.policy-contact i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

.policy-highlight {
    background: var(--primary-pale);
    border: 1px solid var(--primary-soft);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.policy-highlight i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.policy-highlight p {
    margin: 0;
    font-size: 14px;
    color: var(--dark);
}

.policy-box {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 25px;
    margin: 20px 0;
}

.policy-box h3 {
    margin-top: 0;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-box h3 i {
    color: var(--primary);
}

.policy-box-red {
    background: #fef5f5;
    border-color: #fde0e0;
}

.policy-box-red h3 {
    color: #c0392b;
}

.policy-box-red h3 i {
    color: #e74c3c;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-table th,
.policy-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.policy-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.policy-table tr:last-child td {
    border-bottom: none;
    font-weight: 600;
    background: var(--primary-pale);
}

.policy-table tr:nth-child(even) td {
    background: var(--light-gray);
}


/* ===== CHATBOT ===== */
.cb-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Trigger Button */
.cb-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cbTriggerPulse 3s ease-in-out infinite;
}

@keyframes cbTriggerPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(139, 154, 43, 0.4), 0 0 0 8px rgba(139, 154, 43, 0.12); }
}

.cb-trigger::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(139, 154, 43, 0.3);
    animation: cbRingSpin 8s linear infinite;
}

@keyframes cbRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cb-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 154, 43, 0.5);
    border-color: #fff;
}

.cb-trigger:hover::after {
    border-color: rgba(139, 154, 43, 0.6);
}

.cb-trigger .cb-icon-open {
    animation: cbIconBounce 2.5s ease-in-out infinite;
}

@keyframes cbIconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(5deg); }
}

.cb-trigger .cb-icon-close {
    display: none;
}

.cb-trigger.cb-active .cb-icon-open {
    display: none;
    animation: none;
}

.cb-trigger.cb-active .cb-icon-close {
    display: block;
}

.cb-trigger.cb-active {
    background: #555;
    border-color: rgba(255,255,255,0.3);
    animation: none;
}

.cb-trigger.cb-active::after {
    display: none;
}

.cb-notif {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    background: #e74c3c;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #fff;
}

/* Chat Panel */
.cb-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 370px;
    height: 500px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cb-panel.cb-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.cb-head {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: 24px 24px 0 0;
}

.cb-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-head-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.cb-head-meta strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.cb-head-meta span {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cb-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.cb-head-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s;
}

.cb-head-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Messages Area */
.cb-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f7f9f2;
}

.cb-messages::-webkit-scrollbar {
    width: 4px;
}

.cb-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Messages */
.cb-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: cbMsgIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cbMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cb-msg-bot {
    align-self: flex-start;
}

.cb-msg-user {
    align-self: flex-end;
}

.cb-msg-bubble {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-wrap;
    border-radius: 18px;
}

.cb-msg-bot .cb-msg-bubble {
    background: #fff;
    color: #333;
    border-radius: 4px 18px 18px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.cb-msg-user .cb-msg-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 18px 4px 18px 18px;
}

/* Quick Questions */
.cb-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 8px 0;
}

.cb-quick-btn {
    padding: 8px 14px;
    background: #fff;
    border: 1.5px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-dark);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s ease;
    font-family: inherit;
    line-height: 1.3;
}

.cb-quick-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 154, 43, 0.25);
}

/* Typing Indicator */
.cb-dots {
    display: flex;
    gap: 4px;
    padding: 3px 0;
}

.cb-dots i {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    animation: cbBounce 1.4s infinite;
}

.cb-dots i:nth-child(2) { animation-delay: 0.15s; }
.cb-dots i:nth-child(3) { animation-delay: 0.3s; }

@keyframes cbBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* Input Area */
.cb-input-area {
    padding: 14px 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    flex-shrink: 0;
    border-radius: 0 0 24px 24px;
}

.cb-input-area form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cb-input-area input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #eee;
    border-radius: 24px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #f9faf4;
}

.cb-input-area input:focus {
    border-color: var(--primary);
    background: #fff;
}

.cb-input-area input::placeholder {
    color: #aaa;
}

.cb-input-area button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.cb-input-area button:hover {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 480px) {
    .cb-panel {
        width: calc(100vw - 24px);
        right: -18px;
        height: 420px;
        bottom: 65px;
        border-radius: 20px;
    }
    .cb-head {
        border-radius: 20px 20px 0 0;
    }
    .cb-input-area {
        border-radius: 0 0 20px 20px;
    }
    .cb-wrapper {
        bottom: 20px;
        right: 16px;
    }
    .cb-trigger {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .hero-title { font-size: 42px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .causes-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid::before { display: none; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .event-detail-card { grid-template-columns: 80px 200px 1fr; }
    .past-events-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-results { grid-template-columns: repeat(2, 1fr); }
    .services-card-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; }
    .info-items { gap: 18px; }
    .info-item strong { font-size: 12px; }
    .site-logo img { width: 80px; height: 80px; }
    .nav-menu > li > a { padding: 14px 15px; font-size: 13px; }
    .header-info-row { padding-left: 20px; }
    .header-nav-row { padding-left: 20px; }
    .info-row { gap: 20px; }
    .logo-col { padding-right: 25px; }
    .info-col { padding-left: 25px; }
    .logo-link img { width: 75px; height: 75px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    
    .top-bar { padding: 12px 0; }
    .top-contact { display: none; }
    .top-social { display: none; }
    .info-items { display: none; }
    .info-social { display: none; }
    .header-info-row { display: none; }
    .header-wrapper { flex-direction: row; }
    .header-logo-area { border-right: none; padding: 8px 15px 8px 0; }
    .header-right-area { border-left: none; }
    .site-logo img { width: 55px; height: 55px; }
    .site-logo::before { display: none; }
    .header-nav-row { padding: 0 10px; }

    .info-col { display: flex; padding-left: 10px; }
    .info-row { gap: 10px; flex-wrap: wrap; }
    .info-block { gap: 5px; }
    .info-icon { width: 26px; height: 26px; font-size: 11px; }
    .info-text span { font-size: 8px; }
    .info-text strong { font-size: 10px; }
    .social-row { display: none; }
    .logo-col { border-right: none; padding-right: 10px; }
    .logo-link img { width: 50px; height: 50px; }
    .header-flex { min-height: auto; padding: 10px 0; }
    .nav-cta-btn { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 25px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu > li > a {
        padding: 14px 0;
        color: var(--black);
        width: 100%;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--primary);
        background: transparent;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
        border-left: 3px solid var(--primary);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li > a {
        padding: 12px 0;
        width: 100%;
        color: var(--black);
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        color: var(--primary);
        background: transparent;
    }

    .nav-cta { display: none; }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hero { height: 70vh; min-height: 500px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .hero-prev, .hero-next { display: none; }
    .hero .container { justify-content: center; }
    .hero-content { max-width: 680px; flex-basis: auto; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    
    .quick-donate-content { flex-direction: column; text-align: center; }
    .qd-amounts { justify-content: center; }
    
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image img { height: 300px; }
    .about-badge { right: 10px; bottom: -10px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 36px; }
    
    .causes-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .how-grid::before { display: none; }
    .services-card-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr 1fr; }
    
    .donate-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .event-detail-card { grid-template-columns: 1fr; }
    .event-detail-date { 
        display: flex; 
        gap: 10px; 
        align-items: center; 
        justify-content: center;
        padding: 12px;
    }
    
    .service-block-grid,
    .service-block-grid.reverse { 
        grid-template-columns: 1fr; 
        direction: ltr;
    }
    
    .mission-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    
    .cta-content h2 { font-size: 28px; }
    .page-banner { height: 360px; }
    .banner-content h1 { font-size: 32px; }
    
    .past-events-grid { grid-template-columns: 1fr 1fr; }
    
    .newsletter-content { flex-direction: column; text-align: center; gap: 20px; }
    .newsletter-form { flex-direction: column; max-width: 100%; }
    .newsletter-form input { text-align: center; }
    
    .whatsapp-float { bottom: 80px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    #backToTop { width: 50px; height: 50px; bottom: 80px; right: 20px; font-size: 16px; }
}

@media (max-width: 480px) {
    .page-banner { height: 330px; }
    .hero-title { font-size: 26px; }
    .hero-btns { flex-direction: column; }
    .hero-subtitle { font-size: 11px; letter-spacing: 1.5px; }
    .how-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 36px 18px 30px; }
    .testimonial-author { flex-direction: column; text-align: center; }
    .amount-options { justify-content: center; }
    .team-grid { grid-template-columns: 1fr; }
    .past-events-grid { grid-template-columns: 1fr; }
    .calc-results { grid-template-columns: 1fr 1fr; }
    .partners-grid { gap: 15px; }
    .partner-item { padding: 15px; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 20px 15px; }
}


/* ===== ANIMATED RED HEART ===== */
.fa-heart {
    color: #e74c3c !important;
    animation: heartBeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    56% { transform: scale(1); }
}

/* ===== RESPONSIVE HARDENING PASS ===== */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

.container {
    width: min(100% - 32px, 1200px);
    padding-left: 0;
    padding-right: 0;
}

.section-title,
.banner-content h1,
.hero-title {
    overflow-wrap: anywhere;
}

.donate-form,
.contact-form,
.sidebar-card,
.policy-card,
.content-card,
.service-card,
.cause-card,
.event-card,
.team-card {
    min-width: 0;
}

.policy-table,
.donation-summary,
.receipt-preview {
    overflow-x: auto;
}

@media (min-width: 1441px) {
    .container {
        width: min(100% - 56px, 1320px);
    }

    .hero-title {
        font-size: clamp(46px, 4vw, 68px);
    }

    .section-title {
        font-size: clamp(34px, 2.6vw, 46px);
    }
}

@media (max-width: 1200px) {
    .container {
        width: min(100% - 36px, 1080px);
    }

    .hero-title {
        font-size: clamp(38px, 4vw, 52px);
    }

    .section-title {
        font-size: clamp(30px, 3vw, 38px);
    }

    .hero .container,
    .about-grid,
    .contact-grid,
    .donate-grid {
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 28px, 760px);
    }

    .section {
        padding: 56px 0;
    }

    .hero {
        min-height: 560px;
        height: auto;
        padding: 110px 0 72px;
    }

    .hero-title {
        font-size: clamp(32px, 6vw, 44px);
    }

    .quick-donate,
    .newsletter-section,
    .cta-section {
        margin-left: 0;
        margin-right: 0;
    }

    .stats-grid,
    .causes-grid,
    .services-card-grid,
    .why-choose-grid,
    .past-events-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid.team-grid-single {
        grid-template-columns: minmax(280px, 420px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 560px);
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: clamp(25px, 8vw, 32px);
        line-height: 1.16;
    }

    .page-banner {
        height: auto;
        min-height: 300px;
        padding: 96px 0 56px;
    }

    .banner-content h1 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .hero {
        min-height: 520px;
        padding: 96px 0 60px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(29px, 9vw, 38px);
        line-height: 1.12;
    }

    .hero-desc,
    .section-header p,
    .about-content p {
        font-size: 15px;
    }

    .btn,
    .newsletter-form button,
    .amount-btn,
    .submit-btn {
        min-height: 44px;
    }

    .stats-grid,
    .causes-grid,
    .how-grid,
    .services-card-grid,
    .why-choose-grid,
    .past-events-grid,
    .team-grid,
    .gallery-grid,
    .footer-grid,
    .mission-grid,
    .calc-results {
        grid-template-columns: 1fr;
    }

    .team-grid.team-grid-single {
        grid-template-columns: minmax(0, 420px);
    }

    .team-grid-single .team-image {
        aspect-ratio: 1 / 1.04;
    }

    .quick-donate-card,
    .donation-form-card,
    .contact-form-card,
    .sidebar-card,
    .policy-card {
        padding: 22px;
    }

    .form-row,
    .amount-options,
    .hero-btns,
    .cta-buttons {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 18px, 340px);
    }

    .section {
        padding: 42px 0;
    }

    .hero-title {
        font-size: clamp(26px, 10vw, 32px);
    }

    .section-title {
        font-size: clamp(23px, 9vw, 28px);
    }

    .quick-donate-card,
    .donation-form-card,
    .contact-form-card,
    .sidebar-card,
    .policy-card,
    .team-info {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-menu {
        width: min(280px, 86vw);
    }

    .leader-role-badge {
        left: 14px;
        top: 14px;
        max-width: calc(100% - 28px);
        white-space: normal;
    }
}


/* ═══════════════════════════════════════════
   DONATION PACKAGES SECTION
   ═══════════════════════════════════════════ */
.donation-packages-section {
    background: linear-gradient(160deg, #0d1f12 0%, #152e18 40%, #0e2410 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
}

.donation-packages-section .section-tag { color: var(--primary-light); border-color: rgba(168,184,74,0.30); background: rgba(168,184,74,0.10); }
.donation-packages-section .section-title { color: #fff; }
.donation-packages-section .section-desc { color: rgba(255,255,255,0.55); }

/* ── Animated background ── */
.pkg-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Floating shapes */
.pkg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--primary);
}

.pkg-shape-1 {
    width: 360px; height: 360px;
    top: -100px; left: -80px;
    animation: pkgShapeFloat 16s ease-in-out infinite alternate;
}
.pkg-shape-2 {
    width: 240px; height: 240px;
    bottom: -60px; right: -60px;
    background: var(--primary-light);
    animation: pkgShapeFloat 12s ease-in-out infinite alternate-reverse;
}
.pkg-shape-3 {
    width: 120px; height: 120px;
    top: 35%; right: 15%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    border-radius: 0;
    opacity: 0.04;
    animation: pkgShapeSpin 22s linear infinite;
}
.pkg-shape-4 {
    width: 80px; height: 80px;
    top: 60%; left: 8%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 0;
    background: var(--primary-light);
    opacity: 0.05;
    animation: pkgShapeSpin 18s linear infinite reverse;
}
.pkg-shape-5 {
    width: 50px; height: 50px;
    top: 20%; right: 40%;
    opacity: 0.08;
    animation: pkgShapeFloat 8s ease-in-out infinite alternate;
}

@keyframes pkgShapeFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 25px) scale(1.1); }
}

@keyframes pkgShapeSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SVG Wave */
.pkg-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 200px;
}

.pkg-wave-1 { animation: pkgWaveShift1 14s ease-in-out infinite alternate; }
.pkg-wave-2 { animation: pkgWaveShift2 10s ease-in-out infinite alternate-reverse; }

@keyframes pkgWaveShift1 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}
@keyframes pkgWaveShift2 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(30px); }
}

/* Dot pattern */
.pkg-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(168, 184, 74, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
    animation: pkgDotDrift 20s linear infinite;
}

@keyframes pkgDotDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.donation-packages-section > .container {
    position: relative;
    z-index: 1;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 36px;
}

.pkg-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1.5px solid rgba(139, 154, 43, 0.12);
    transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 154, 43, 0.10);
    border-color: rgba(139, 154, 43, 0.35);
}

/* Featured badge */
.pkg-featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.30);
}

.pkg-card-featured {
    border-color: rgba(139, 154, 43, 0.35);
    box-shadow: 0 8px 30px rgba(139, 154, 43, 0.15);
    background: rgba(139, 154, 43, 0.06);
}

/* Card header */
.pkg-card-header {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.pkg-card-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.pkg-food::before   { background: linear-gradient(90deg, #8B9A2B, #a8b84a); }
.pkg-birthday::before { background: linear-gradient(90deg, #ff6b35, #ff9a5c); }
.pkg-animals::before { background: linear-gradient(90deg, #4a7a20, #6fa832); }
.pkg-extras::before  { background: linear-gradient(90deg, #6d7a1f, #9ab033); }
.pkg-grocery::before { background: linear-gradient(90deg, #2d5a27, #4a7a20); }

.pkg-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
    margin-bottom: 8px;
}

.pkg-food .pkg-icon    { background: linear-gradient(135deg, #8B9A2B, #6d7a1f); }
.pkg-birthday .pkg-icon { background: linear-gradient(135deg, #ff6b35, #e5501a); }
.pkg-animals .pkg-icon  { background: linear-gradient(135deg, #4a7a20, #3a6018); }
.pkg-extras .pkg-icon   { background: linear-gradient(135deg, #6d7a1f, #5a6a18); }
.pkg-grocery .pkg-icon  { background: linear-gradient(135deg, #2d5a27, #1e3d1b); }

.pkg-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.pkg-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    line-height: 1.4;
}

/* Price list */
.pkg-list {
    list-style: none;
    margin: 0;
    padding: 16px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pkg-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    transition: background 0.2s ease;
}

.pkg-list li:last-child { border-bottom: none; }

.pkg-list li:hover { background: rgba(139, 154, 43, 0.08); margin: 0 -24px; padding: 12px 24px; border-radius: 8px; }

.pkg-item-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.pkg-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}

.pkg-item-price small {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.40);
}

.pkg-item-highlight {
    background: rgba(139, 154, 43, 0.12);
    margin: 0 -24px;
    padding: 12px 24px !important;
    border-radius: 8px;
    border-bottom: none !important;
}

.pkg-item-highlight .pkg-item-price {
    font-size: 17px;
    color: var(--primary-light);
}

.pkg-item-note {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    gap: 6px;
    border-bottom: none !important;
    padding-top: 8px !important;
}

.pkg-item-note i {
    color: var(--primary-light);
    font-size: 12px;
}

.pkg-list-compact li { padding: 9px 0; }

/* CTA */
.pkg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 24px 20px;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(109, 122, 31, 0.22);
}

.pkg-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109, 122, 31, 0.38);
    color: #fff;
}

.pkg-cta i { font-size: 12px; transition: transform 0.3s ease; }
.pkg-cta:hover i { transform: translateX(4px); }

/* Note bar */
.pkg-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(139, 154, 43, 0.08);
    border: 1.5px solid rgba(139, 154, 43, 0.20);
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.pkg-note i { color: var(--primary-light); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.pkg-note a { color: var(--primary-light); font-weight: 600; text-decoration: underline; }

/* Responsive */
@media (max-width: 1100px) {
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-card-header { padding: 22px 20px 16px; }
    .pkg-list { padding: 12px 20px; }
    .pkg-cta { margin: 0 20px 16px; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS PAGE
   ═══════════════════════════════════════════ */

/* Stats section */
.testi-stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    padding: 60px 0;
}

.testi-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.testi-stat-box {
    padding: 28px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, background 0.3s ease;
}

.testi-stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
}

.testi-stat-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    margin: 0 auto 14px;
}

.testi-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin: 0 0 4px;
    line-height: 1;
}

.testi-stat-box p {
    color: rgba(255,255,255,0.80);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Testimonials grid */
.testi-section { background: #f9faf5; }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    border: 1.5px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(109, 122, 31, 0.12);
}

/* "Real" verified card */
.testi-card-real {
    border-color: rgba(139, 154, 43, 0.18);
    background: linear-gradient(135deg, #fefffe 0%, #f8fbf4 100%);
}

.testi-card-badge {
    position: absolute;
    top: 16px; right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(76, 175, 80, 0.20);
}

.testi-card-badge i { font-size: 11px; }

.testi-quote-icon {
    font-size: 28px;
    color: rgba(139, 154, 43, 0.18);
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14.5px;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    flex-shrink: 0;
}

.testi-avatar-initials {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
    flex-shrink: 0;
}

.testi-author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 3px;
}

.testi-author-info span {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 500;
}

.testi-source {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.06);
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.testi-source i { color: #25d366; font-size: 14px; }
.testi-source .fa-instagram { color: #e4405f; }

/* Responsive */
@media (max-width: 1024px) {
    .testi-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .testi-stat-num { font-size: 2rem; }
}
@media (max-width: 480px) {
    .testi-stats-grid { grid-template-columns: 1fr; }
    .testi-stats-section { padding: 40px 0; }
}

/* ═══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE FIXES
   ═══════════════════════════════════════════ */

/* Hero — all screen sizes */
.hero {
    height: 100vh;
    height: 100dvh; /* dynamic viewport height for mobile browsers */
    min-height: 560px;
    max-height: 900px;
}

.hero-slide-img {
    object-position: center center;
    object-fit: cover;
}

/* Ensure hero content is always readable */
.hero .container {
    padding: 0 24px;
}

.hero-content-full {
    padding: 20px 0;
}

/* ── Tablets (768px – 1024px) ── */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
        min-height: 520px;
    }

    .hero-title {
        font-size: 42px !important;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 7px 12px;
    }

    .hero-content-full {
        max-width: 700px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        padding: 13px 28px;
        font-size: 14px;
    }

    /* Ways section */
    .ways-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .ways-title {
        font-size: 34px !important;
    }
}

/* ── Mobile landscape / large phones (576px – 768px) ── */
@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-subtitle {
        font-size: 11px;
        padding: 6px 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .hero-content-full {
        max-width: 100%;
        flex: 1;
    }

    .hero-btns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-prev, .hero-next {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }

    .hero-dots { bottom: 18px; }
    .dot { width: 10px; height: 10px; }

    /* Overlay lighter on mobile for better photo visibility */
    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(10, 30, 10, 0.30) 0%,
            rgba(10, 30, 10, 0.18) 50%,
            rgba(10, 30, 10, 0.10) 100%
        );
    }

    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    /* Quick donate */
    .qd-amounts {
        flex-wrap: wrap;
    }
    .amount-btn {
        flex: 0 0 calc(33% - 8px);
    }

    /* Causes */
    .causes-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .cause-image {
        height: 200px;
    }

    /* Ways to give */
    .ways-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .ways-card {
        padding: 28px 22px 22px;
    }

    .ways-title {
        font-size: 28px !important;
    }

    /* Sections padding */
    .section {
        padding: 60px 0;
    }
}

/* ── Small phones (max-width: 480px) ── */
@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 420px;
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 10px;
        padding: 5px 9px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-prev, .hero-next {
        display: none;
    }

    .hero-dots { bottom: 14px; gap: 7px; }
    .dot { width: 8px; height: 8px; }

    /* Images in cards - always cover properly */
    .cause-image { height: 180px; }
    .cause-image img { object-position: center top; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .gallery-item { border-radius: 12px; }

    /* Header */
    .header-main { padding: 8px 0; }
    .header-flex { min-height: 60px; flex-wrap: wrap; }
    .logo-col { padding-right: 12px; border-right: none; }
    .logo-link img { width: 50px; height: 50px; }
    .info-col { padding-left: 12px; }
    .info-row { gap: 12px; flex-wrap: wrap; }
    .info-block { gap: 6px; }
    .info-icon { width: 28px; height: 28px; font-size: 12px; }
    .info-text span { font-size: 9px; }
    .info-text strong { font-size: 11px; }
    .social-row { display: none; }
    .header-nav { position: sticky; top: 0; }

    /* Section titles smaller */
    .section-title { font-size: 24px; }
    .section-desc { font-size: 13px; }
    .section-tag { font-size: 11px; padding: 5px 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; }
}

/* ── Ensure all images cover properly everywhere ── */
.cause-image img,
.service-card-image img,
.vol-photo-inner img,
.vol-group-photo-wrap img,
.about-image img,
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Fix hero background images on all devices ── */
@media (max-width: 768px) {
    .hero-slide {
        background-position: center top;
    }
}

/* Prevent horizontal overflow on all pages */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Fix any absolutely positioned elements from causing overflow */
.hero-nav button {
    z-index: 6;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Fix testimonials slider on mobile */
@media (max-width: 768px) {
    .testimonials-slider {
        max-width: 100%;
        padding: 4px;
    }
    .testimonial-card {
        padding: 32px 18px 28px;
    }
    .testimonial-card::after {
        inset: 10px;
    }
    .testimonial-card p {
        font-size: 15px;
    }
    .testimonial-quote {
        font-size: 36px;
        margin-bottom: 14px;
    }
    .testimonial-nav {
        margin-top: 20px;
    }
}
