:root {
     --primary-green: #2d5016;
     --secondary-green: #4a7c59;
     --light-green: #8fbc8f;
     --very-light-green: #e8f5e8;
     --accent-green: #90ee90;
     --dark-green: #1a3d0c;
     --text-dark: #2c3e50;
     --text-light: #ffffff;
}

* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     overflow-x: hidden;
}

/* Smooth scrolling */
html {
     scroll-behavior: smooth;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
     background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
     box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
     transition: all 0.3s ease;
     padding: 1rem 0;
     backdrop-filter: blur(10px);
}

.navbar.scrolled {
     background: rgba(45, 80, 22, 0.95);
     backdrop-filter: blur(15px);
     padding: 0.75rem 0;
     box-shadow: 0 2px 20px rgba(45, 80, 22, 0.4);
}

.navbar-brand {
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--text-light) !important;
     text-decoration: none;
     transition: all 0.3s ease;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     position: relative;
     overflow: hidden;
}

.navbar-brand:hover {
     color: var(--accent-green) !important;
     transform: translateY(-2px);
}

.navbar-brand::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background: var(--accent-green);
     transition: width 0.3s ease;
}

.navbar-brand:hover::after {
     width: 100%;
}

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

.navbar-brand:hover::before {
     left: 100%;
}

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

.navbar-nav .nav-link {
     color: var(--text-light) !important;
     font-weight: 600;
     margin: 0 15px;
     position: relative;
     transition: all 0.3s ease;
     text-transform: uppercase;
     font-size: 0.95rem;
     padding: 10px 0 !important;
}

.navbar-nav .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 3px;
     bottom: 0;
     left: 50%;
     background: var(--accent-green);
     transition: all 0.3s ease;
     transform: translateX(-50%);
     border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
     width: 100%;
}

.navbar-nav .nav-link:hover {
     color: var(--accent-green) !important;
     transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
     color: var(--accent-green) !important;
     font-weight: 700;
}

/* Special Donate Button */
.donate-btn {
     background: linear-gradient(45deg, #024d14, #715a00, #024d14) !important;
     background-size: 200% 200% !important;
     color: var(--text-dark) !important;
     font-weight: bold !important;
     padding: 8px 20px !important;
     border-radius: 25px !important;
     border: 2px solid transparent !important;
     position: relative;
     overflow: hidden;
     animation: gradientShift 3s ease infinite;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 4px 15px rgba(255, 255, 255, 0.386);
     margin-left: 10px !important;
}

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

.donate-btn:hover {
     transform: translateY(-3px) scale(1.05) !important;
     box-shadow: 0 8px 25px rgba(255, 255, 255, 0.898) !important;
     color: var(--dark-green) !important;
}

/* Enhanced Navbar Burger Menu */
.navbar-toggler {
     border: none;
     padding: 8px 10px;
     position: relative;
     transition: all 0.3s ease;
     border-radius: 6px;
     border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
     box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.25);
}

.navbar-toggler-icon {
     background-image: none;
     position: relative;
     width: 24px;
     height: 18px;
     transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
     content: '';
     position: absolute;
     display: block;
     height: 2px;
     width: 100%;
     background: var(--text-light);
     border-radius: 2px;
     transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
     top: 0;
}

.navbar-toggler-icon::after {
     bottom: 0;
}

.navbar-toggler-icon {
     background: var(--text-light);
     height: 2px;
     width: 100%;
     position: relative;
     top: 50%;
     transform: translateY(-50%);
}

/* Hamburger Menu Styles */
.hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 4px;
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
}

.hamburger:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: scale(1.05);
}

.hamburger span {
     width: 25px;
     height: 3px;
     background: var(--text-light);
     margin: 3px 0;
     transition: all 0.3s ease;
     border-radius: 2px;
}

/* Hamburger to X Animation */
.hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
     opacity: 0;
}

.hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Wrapper */
.navbar-nav-wrapper {
     display: flex;
     align-items: center;
}

@media (max-width: 991.98px) {
     .hamburger {
         display: flex;
     }
     
     .navbar-nav-wrapper {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: linear-gradient(135deg, rgba(45, 80, 22, 0.98), rgba(74, 124, 89, 0.98));
         backdrop-filter: blur(15px);
         border-radius: 0 0 15px 15px;
         box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
         z-index: 1000;
         animation: slideDown 0.3s ease;
     }
     
     .navbar-nav-wrapper.active {
         display: block;
     }
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
     .navbar-nav {
         background: transparent;
         padding: 1.5rem 1rem;
         margin: 0;
         flex-direction: column;
         align-items: stretch;
     }

     .navbar-nav .nav-link {
         margin: 8px 0;
         padding: 15px 20px !important;
         border-radius: 8px;
         font-size: 1rem;
         transition: all 0.3s ease;
         position: relative;
         overflow: hidden;
         text-align: left;
         display: block;
         border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .navbar-nav .nav-link::before {
         content: '';
         position: absolute;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100%;
         background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
         transition: left 0.5s ease;
     }

     .navbar-nav .nav-link:hover::before {
         left: 100%;
     }

     .navbar-nav .nav-link:hover {
         background: rgba(144, 238, 144, 0.2);
         transform: translateX(10px);
         border-color: rgba(144, 238, 144, 0.3);
     }

     .navbar-nav .nav-link::after {
         display: none;
     }

     .donation-btn {
         background: var(--accent-green) !important;
         color: var(--primary-green) !important;
         font-weight: 700;
         margin-top: 15px;
     }

     .donation-btn:hover {
         background: rgba(144, 238, 144, 0.9) !important;
         transform: translateX(10px) scale(1.02);
     }
}

     .donate-btn {
         margin: 10px 0 0 0 !important;
         text-align: center !important;
         justify-self: center;
     }

.donate-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(10px) scale(1.05) !important;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .donate-btn {
        padding: 6px 16px !important;
        font-size: 0.8rem;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }

    .navbar-toggler-icon {
        width: 20px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem;
        margin: 5px 0;
        padding: 10px 15px !important;
    }

    .donate-btn {
        padding: 5px 12px !important;
        font-size: 0.75rem;
    }

    .navbar-toggler {
        padding: 0.2rem 0.4rem;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 14px;
    }
}

/* Hide/Show Navbar on Scroll */
.navbar {
     transform: translateY(0);
     transition: all 0.3s ease;
}

.navbar.navbar-hidden {
     transform: translateY(-100%);
}

/* ===== HERO SECTION ===== */
.hero {
     background: linear-gradient(135deg, var(--very-light-green) 0%, #f8fff8 50%, var(--very-light-green) 100%);
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
}

.hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
}

.hero-particles {
     position: absolute;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(45,80,22,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(45,80,22,0.05)"/><circle cx="40" cy="70" r="1.5" fill="rgba(45,80,22,0.08)"/><circle cx="90" cy="80" r="1" fill="rgba(45,80,22,0.03)"/></svg>');
     animation: float 20s infinite linear;
}

.hero-overlay {
     position: absolute;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 30% 40%, rgba(144, 238, 144, 0.1) 0%, transparent 50%);
}

.hero-content {
     z-index: 2;
     position: relative;
}

.hero-badge {
     display: inline-flex;
     align-items: center;
     background: rgba(45, 80, 22, 0.1);
     color: var(--primary-green);
     padding: 8px 16px;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     opacity: 0;
     animation: slideInLeft 1s ease 0.2s forwards;
     border: 1px solid rgba(45, 80, 22, 0.2);
}

.hero-badge i {
     margin-right: 8px;
     color: var(--secondary-green);
     animation: pulse 2s infinite;
}

.hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     color: var(--primary-green);
}

.title-line-1 {
     display: block;
     opacity: 0;
     animation: slideInUp 1s ease 0.5s forwards;
}

.title-line-2 {
     display: block;
     opacity: 0;
     animation: slideInUp 1s ease 0.7s forwards;
     color: var(--secondary-green);
}

.title-highlight {
     display: block;
     background: linear-gradient(45deg, var(--accent-green), var(--secondary-green));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     opacity: 0;
     animation: slideInUp 1s ease 0.9s forwards;
}

.hero-description {
     font-size: 1.2rem;
     color: var(--text-dark);
     line-height: 1.6;
     margin-bottom: 2rem;
     opacity: 0;
     animation: slideInUp 1s ease 1.1s forwards;
}

.hero-buttons {
     display: flex;
     gap: 1rem;
     margin-bottom: 3rem;
     opacity: 0;
     animation: slideInUp 1s ease 1.3s forwards;
}

.cta-button {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 15px 30px;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.95rem;
}

.cta-button.primary {
     background: var(--primary-green);
     color: white;
     box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

.cta-button.primary:hover {
     background: var(--dark-green);
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
     color: white;
}

.cta-button.secondary {
     background: transparent;
     color: var(--primary-green);
     border: 2px solid var(--primary-green);
}

.cta-button.secondary:hover {
     background: var(--primary-green);
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.hero-stats {
     display: flex;
     gap: 2rem;
     opacity: 0;
     animation: slideInUp 1s ease 1.5s forwards;
}

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

.stat-number {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--primary-green);
     line-height: 1;
}

.stat-label {
     font-size: 0.9rem;
     color: var(--text-dark);
     margin-top: 5px;
     text-transform: uppercase;
     letter-spacing: 1px;
}

.hero-visual {
     position: relative;
     z-index: 2;
}

.hero-image-container {
     position: relative;
     width: 100%;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
}

.floating-icon {
     position: absolute;
     width: 60px;
     height: 60px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: var(--primary-green);
     box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
     animation: float 6s ease-in-out infinite;
}

.icon-1 {
     top: 10%;
     left: 10%;
     animation-delay: 0s;
}

.icon-2 {
     top: 20%;
     right: 15%;
     animation-delay: 1s;
}

.icon-3 {
     bottom: 30%;
     left: 5%;
     animation-delay: 2s;
}

.icon-4 {
     bottom: 10%;
     right: 10%;
     animation-delay: 3s;
}

.hero-main-image {
     position: relative;
     z-index: 2;
     opacity: 0;
     animation: zoomIn 1s ease 1.2s forwards;
}

.hero-logo {
     width: 450px;
     height: auto;
     filter: drop-shadow(0 20px 40px rgba(45, 80, 22, 0.2));
}

.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
     position: absolute;
     border-radius: 50%;
     background: linear-gradient(45deg, rgba(144, 238, 144, 0.1), rgba(74, 124, 89, 0.1));
     z-index: 1;
}

.hero-shape-1 {
     width: 200px;
     height: 200px;
     top: -50px;
     right: -50px;
     animation: rotate 20s linear infinite;
}

.hero-shape-2 {
     width: 150px;
     height: 150px;
     bottom: -30px;
     left: -30px;
     animation: rotate 15s linear infinite reverse;
}

.hero-shape-3 {
     width: 100px;
     height: 100px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     animation: pulse 4s ease-in-out infinite;
}

.scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     text-align: center;
     color: var(--primary-green);
     opacity: 0;
     animation: fadeIn 1s ease 2s forwards;
}

.scroll-text {
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 5px;
     text-transform: uppercase;
     letter-spacing: 1px;
}

.scroll-arrow {
     animation: bounce 2s infinite;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes slideInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
}

@keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }
     to {
         opacity: 1;
         transform: translateX(0);
     }
}

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

@keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
}

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

@keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         transform: translateY(0);
     }
     40% {
         transform: translateY(-10px);
     }
     60% {
         transform: translateY(-5px);
     }
}

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

@keyframes pulse {
     0% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 1;
     }
     50% {
         transform: translate(-50%, -50%) scale(1.1);
         opacity: 0.8;
     }
     100% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 1;
     }
}

/* ===== SECTIONS ===== */
.section {
     padding: 100px 0;
     position: relative;
}

.section:nth-child(even) {
     background: var(--very-light-green);
}

.section h2 {
     color: var(--primary-green);
     font-size: 2.5rem;
     font-weight: bold;
     margin-bottom: 3rem;
     text-align: center;
     position: relative;
}

.section h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(to right, var(--secondary-green), var(--accent-green));
     border-radius: 2px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--very-light-green) 0%, #f8fff8 50%, var(--very-light-green) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="25" r="1" fill="rgba(45,80,22,0.03)"/><circle cx="85" cy="75" r="1.5" fill="rgba(45,80,22,0.04)"/><circle cx="45" cy="15" r="0.8" fill="rgba(45,80,22,0.02)"/></svg>');
    animation: float 30s infinite linear;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
    animation: widthExpand 1s ease 0.8s forwards;
    width: 0;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
    background: white;
}

.photo-card:nth-child(1) { animation-delay: 0.2s; }
.photo-card:nth-child(2) { animation-delay: 0.4s; }
.photo-card:nth-child(3) { animation-delay: 0.6s; }
.photo-card:nth-child(4) { animation-delay: 0.8s; }
.photo-card:nth-child(5) { animation-delay: 1.0s; }
.photo-card:nth-child(6) { animation-delay: 1.2s; }

.photo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.2);
}

.photo-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    border-radius: 20px;
}

.photo-card:hover .photo-container img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(45, 80, 22, 0.9) 0%,
        rgba(74, 124, 89, 0.8) 50%,
        rgba(45, 80, 22, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.photo-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.photo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.photo-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photo-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.photo-card:hover .photo-content h3,
.photo-card:hover .photo-content p,
.photo-card:hover .photo-meta {
    transform: translateY(0);
}

.photo-actions {
    display: flex;
    justify-content: center;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.photo-card:hover .photo-actions {
    transform: translateY(0);
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.view-btn i {
    font-size: 1.2rem;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--secondary-green);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-green);
    transform: scale(1.1);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photo-container {
        height: 250px;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .photo-container {
        height: 200px;
    }
    
    .photo-overlay {
        padding: 1.5rem;
    }
    
    .photo-content h3 {
        font-size: 1.3rem;
    }
    
    .photo-content p {
        font-size: 0.9rem;
    }
}

/* ===== CONTACT FORM ===== */
.contact-form {
     background: var(--text-light);
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 15px 35px rgba(45, 80, 22, 0.1);
}

.form-control {
     border: 2px solid var(--light-green);
     border-radius: 10px;
     padding: 12px 15px;
     transition: all 0.3s ease;
}

.form-control:focus {
     border-color: var(--secondary-green);
     box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.btn-submit {
     background: linear-gradient(45deg, var(--secondary-green), var(--primary-green));
     border: none;
     padding: 12px 30px;
     border-radius: 25px;
     color: var(--text-light);
     font-weight: bold;
     transition: all 0.3s ease;
}

.btn-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--text-light);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="85" cy="75" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="45" cy="15" r="0.8" fill="rgba(255,255,255,0.02)"/></svg>');
    animation: float 40s infinite linear;
    pointer-events: none;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(144, 238, 144, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(144, 238, 144, 0.2);
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
}

.footer-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-green);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    color: var(--secondary-green);
}

.footer-contact {
    margin-bottom: 2rem;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item-footer i {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item-footer div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-footer a:hover {
    color: var(--accent-green);
}

.social-media {
    margin-top: 1.5rem;
}

.social-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-green);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(144, 238, 144, 0.3);
}

.social-link i {
    font-size: 1rem;
}

/* Vertical Social Links Styles */
.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-vertical {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.social-link-vertical:hover {
    background: var(--accent-green);
    color: var(--dark-green);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(144, 238, 144, 0.3);
}

.social-link-vertical i {
    font-size: 1rem;
    min-width: 16px;
    color: inherit;
}

.social-link-vertical span {
    font-weight: 500;
    color: inherit;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
     /* Hero Section Mobile Layout */
     .hero {
         padding: 80px 0 40px 0;
     }
     
     .hero .row {
         flex-direction: column-reverse;
     }
     
     .hero .col-lg-6 {
         text-align: center;
         margin-bottom: 2rem;
     }
     
     .hero-content {
         padding: 0 1rem;
         margin-top: 2rem;
     }
     
     .hero-badge {
         font-size: 0.85rem;
         padding: 6px 12px;
         margin-bottom: 1rem;
         display: inline-flex;
         justify-content: center;
     }
     
     .hero-title {
         font-size: 2.2rem;
         line-height: 1.2;
         margin-bottom: 1.5rem;
     }
     
     .title-line-1, .title-line-2, .title-highlight {
         display: block;
         margin-bottom: 0.3rem;
     }
     
     .hero-description {
         font-size: 1rem;
         line-height: 1.6;
         margin-bottom: 2rem;
         padding: 0 1rem;
     }
     
     .hero-buttons {
         flex-direction: column;
         gap: 1rem;
         margin-bottom: 2.5rem;
         align-items: center;
     }
     
     .cta-button {
         justify-content: center;
         padding: 14px 30px;
         font-size: 0.95rem;
         width: 100%;
         max-width: 280px;
     }
     
     .hero-stats {
         gap: 1.5rem;
         justify-content: center;
         flex-wrap: wrap;
         margin-bottom: 2rem;
     }
     
     .stat-item {
         text-align: center;
         min-width: 80px;
     }
     
     .stat-number {
         font-size: 1.8rem;
     }
     
     .stat-label {
         font-size: 0.85rem;
     }
     
     /* Hero Visual Mobile Enhancement */
     .hero-visual {
         margin-bottom: 1rem;
         padding: 0 1rem;
     }
     
     .hero-image-container {
         height: 280px;
         position: relative;
         display: flex;
         align-items: center;
         justify-content: center;
     }
     
     .hero-logo {
         width: 320px;
         height: auto;
         z-index: 3;
         position: relative;
         filter: drop-shadow(0 10px 25px rgba(45, 80, 22, 0.2));
     }
     
     .floating-icon {
         width: 35px;
         height: 35px;
         font-size: 1rem;
         animation-duration: 4s;
     }
     
     /* Adjust floating icon positions for mobile */
     .icon-1 {
         top: 5%;
         left: 5%;
     }
     
     .icon-2 {
         top: 10%;
         right: 5%;
     }
     
     .icon-3 {
         bottom: 15%;
         left: 8%;
     }
     
     .icon-4 {
         bottom: 5%;
         right: 8%;
     }
     
     /* Hero shapes mobile adjustment */
     .hero-shape-1 {
         width: 120px;
         height: 120px;
         top: -30px;
         right: -30px;
     }
     
     .hero-shape-2 {
         width: 100px;
         height: 100px;
         bottom: -20px;
         left: -20px;
     }
     
     .hero-shape-3 {
         width: 80px;
         height: 80px;
     }
     
     .section {
         padding: 60px 0;
     }
     
     .section h2 {
         font-size: 2rem;
     }
     
     .gallery-grid {
         grid-template-columns: 1fr;
         gap: 1rem;
     }
}

@media (max-width: 576px) {
     .hero-title {
         font-size: 2rem;
     }
     
     .hero-description {
         font-size: 1rem;
     }
     
     .cta-button {
         padding: 12px 20px;
         font-size: 0.9rem;
     }
     
     .hero-stats {
         gap: 1rem;
     }
     
     .stat-number {
         font-size: 1.8rem;
     }
     
     .stat-label {
         font-size: 0.8rem;
     }
     
     .hero-logo {
         width: 280px;
     }
     
     .floating-icon {
         width: 35px;
         height: 35px;
         font-size: 1rem;
     }
     
     .scroll-indicator {
         bottom: 20px;
     }
     
     .scroll-text {
         font-size: 0.8rem;
     }
}

/* ===== LOADING ANIMATION ===== */
.loading {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--primary-green);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
}

.loading.hidden {
     opacity: 0;
     visibility: hidden;
}

.loader {
     width: 50px;
     height: 50px;
     border: 5px solid var(--light-green);
     border-top: 5px solid var(--accent-green);
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

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

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.about-section {
    background: linear-gradient(135deg, var(--very-light-green) 0%, #f8fff8 50%, var(--very-light-green) 100%);
    color: var(--text-dark);
    padding: 120px 0 80px 0; /* Added top padding to avoid navbar overlap */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Add background animation particles */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(45,80,22,0.05)"/><circle cx="90" cy="20" r="0.5" fill="rgba(45,80,22,0.03)"/><circle cx="30" cy="80" r="1.5" fill="rgba(45,80,22,0.04)"/><circle cx="70" cy="60" r="0.8" fill="rgba(45,80,22,0.02)"/></svg>');
    animation: float 30s infinite linear;
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    font-weight: 800;
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
    animation: widthExpand 1s ease 0.8s forwards;
    width: 0;
}

@keyframes widthExpand {
    from { width: 0; }
    to { width: 100px; }
}

.about-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green), var(--accent-green));
    transition: left 0.8s ease;
}

.about-box:hover::before {
    left: 0;
}

.about-box p {
    margin-bottom: 1.5rem;
    position: relative;
}

.about-box strong {
    color: var(--primary-green);
    font-weight: 700;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

.mission-card {
    animation-delay: 0.6s;
}

.vision-card {
    animation-delay: 0.8s;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    transform: translateX(0);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.2);
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}



.card-body p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
    position: relative;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--very-light-green) 0%, rgba(255, 255, 255, 0.8) 50%, var(--very-light-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="rgba(45,80,22,0.03)"/><circle cx="80" cy="70" r="1.5" fill="rgba(45,80,22,0.04)"/><circle cx="50" cy="10" r="0.8" fill="rgba(45,80,22,0.02)"/></svg>');
    animation: float 25s infinite linear reverse;
    pointer-events: none;
}

.team-section h1 {
    color: var(--primary-green);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.team-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
    animation: widthExpand 1s ease 0.8s forwards;
    width: 0;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: teamCardAppear 1s ease forwards;
    padding: 2rem;
}

@keyframes teamCardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-card:nth-child(1) { animation-delay: 0.4s; }
.team-card:nth-child(2) { animation-delay: 0.6s; }
.team-card:nth-child(3) { animation-delay: 0.8s; }
.team-card:nth-child(4) { animation-delay: 1.0s; }
.team-card:nth-child(5) { animation-delay: 1.2s; }

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(144, 238, 144, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team-card:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.2);
}

.team-card img {
    border-radius: 50%;
    border: 5px solid var(--light-green);
    width: 200px;  /* Increased from 150px */
    height: 200px; /* Increased from 150px */
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover img {
    border-color: var(--secondary-green);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.team-card .card-title {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.team-card .card-text {
    color: var(--secondary-green);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ===== DONATION PAGE SPECIFIC STYLES ===== */
.donation-section {
    background-color: var(--very-light-green);
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.donation-section h2 {
    margin-top: 4rem;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.qr-code {
    max-width: 200px;
    border: 4px solid var(--light-green);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.donation-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.donation-section ul {
    font-size: 1rem;
    color: var(--text-dark);
}

.donation-section ul li {
    margin-bottom: 0.5rem;
}

.empty {
    height: 50px;
}

/* ===== MEMBERSHIP SECTION ===== */
.membership-section {
    background: linear-gradient(135deg, var(--very-light-green) 0%, #f8fff8 50%, var(--very-light-green) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.membership-content {
    position: relative;
    z-index: 2;
}

/* Membership Header */
.membership-header {
    margin-bottom: 4rem;
}

.membership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 80, 22, 0.1);
    border: 2px solid rgba(45, 80, 22, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.membership-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.membership-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.membership-title .title-part-1 {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.2rem;
}

.membership-title .title-part-2 {
    display: block;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green), var(--secondary-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.membership-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: slideInUp 1s ease 0.6s forwards;
}

/* Membership Card */
.membership-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(45, 80, 22, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: membershipCardAppear 1s ease 0.8s forwards;
}

@keyframes membershipCardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(144, 238, 144, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.membership-card:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.membership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(45, 80, 22, 0.2);
    border-color: rgba(144, 238, 144, 0.3);
}

.membership-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: crownPulse 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
}

.membership-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.membership-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.membership-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.membership-amount .currency {
    font-size: 2.5rem;
    opacity: 0.8;
}

.membership-amount .suffix {
    font-size: 2.5rem;
    opacity: 0.8;
}

.membership-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Benefits List */
.benefits-list {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: benefitSlideIn 0.6s ease forwards;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item:nth-child(1) { animation-delay: 1.2s; }
.benefit-item:nth-child(2) { animation-delay: 1.4s; }
.benefit-item:nth-child(3) { animation-delay: 1.6s; }
.benefit-item:nth-child(4) { animation-delay: 1.8s; }

@keyframes benefitSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

/* Membership Contact Button */
.membership-contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
    background-size: 200% 200%;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
    overflow: hidden;
    animation: whatsappGlow 3s ease infinite;
    opacity: 0;
    transform: translateY(30px);
    animation: membershipBtnAppear 1s ease 2s forwards;
}

@keyframes membershipBtnAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes whatsappGlow {
    0%, 100% { 
        background-position: 0% 50%; 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }
}

.membership-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.membership-contact-btn .btn-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease infinite;
}

.membership-contact-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.membership-contact-btn .btn-main {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.membership-contact-btn .btn-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.membership-contact-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.membership-contact-btn:hover .btn-glow {
    transform: translateX(100%);
}

.membership-contact-btn .btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.membership-contact-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Modern Membership Apply Button Styling */
.membership-apply-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #0D6E4F 100%);
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    margin-top: 2rem;
    min-width: 280px;
    max-width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: whatsappPulse 3s ease infinite;
}

@keyframes whatsappPulse {
    0%, 100% { 
        background-position: 0% 50%; 
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.membership-apply-btn .btn-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.membership-apply-btn .btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-apply-btn .btn-icon i {
    font-size: 1.4rem;
    animation: whatsappBounce 2s ease infinite;
}

@keyframes whatsappBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.membership-apply-btn .btn-icon .icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.membership-apply-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.membership-apply-btn .btn-primary-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.membership-apply-btn .btn-secondary-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.membership-apply-btn .btn-arrow-wrapper {
    display: flex;
    align-items: center;
}

.membership-apply-btn .btn-arrow {
    font-size: 1.1rem;
    animation: arrowSlide 2s ease infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.membership-apply-btn .btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    transition: left 0.8s ease;
}

.membership-apply-btn:hover .btn-glow-effect {
    left: 100%;
}

.membership-apply-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    text-decoration: none;
    color: white;
}

.membership-apply-btn:hover .btn-icon i {
    animation: whatsappFastBounce 0.6s ease infinite;
}

@keyframes whatsappFastBounce {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.25); }
}

.membership-apply-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.membership-apply-btn:active .icon-ripple {
    width: 60px;
    height: 60px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .membership-title {
        font-size: 2.5rem;
    }
    
    .membership-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .membership-amount {
        font-size: 2.5rem;
    }
    
    .membership-contact-btn {
        padding: 15px 25px;
    }
    
    .membership-contact-btn .btn-text {
        align-items: center;
        text-align: center;
    }
    
    .membership-apply-btn {
        min-width: 220px;
        max-width: 90%;
        padding: 14px 20px;
        font-size: 0.95rem;
        margin: 1.5rem auto 0;
        display: flex;
    }
    
    .membership-apply-btn .btn-inner {
        gap: 12px;
    }
    
    .btn-content {
        gap: 12px;
    }
    
    .membership-apply-btn .btn-icon i {
        font-size: 1.3rem;
    }
    
    .membership-apply-btn .btn-primary-text {
        font-size: 1rem;
    }
    
    .membership-apply-btn .btn-secondary-text {
        font-size: 0.8rem;
    }
    
    .membership-apply-btn .btn-arrow {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .membership-title {
        font-size: 2rem;
    }
    
    .membership-card {
        padding: 1.5rem;
    }
    
    .membership-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .membership-amount {
        font-size: 2rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        gap: 12px;
        margin-bottom: 0.8rem;
    }
    
    .benefit-item i {
        font-size: 1.1rem;
        min-width: 18px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .membership-apply-btn {
        min-width: 200px;
        max-width: 95%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .membership-apply-btn .btn-inner {
        gap: 10px;
    }
    
    .membership-apply-btn .btn-text {
        align-items: flex-start;
    }
    
    .membership-apply-btn .btn-primary-text {
        font-size: 0.95rem;
    }
    
    .membership-apply-btn .btn-secondary-text {
        font-size: 0.75rem;
    }
    
    .membership-apply-btn .btn-icon i {
        font-size: 1.2rem;
    }
    
    .membership-apply-btn .btn-arrow {
        font-size: 0.9rem;
    }
    
    .membership-card {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .benefit-item {
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
        min-width: 16px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== ENHANCED DONATE SECTION ===== */
.donate-cta-section {
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--very-light-green) 0%, #f8fff8 50%, var(--very-light-green) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.donate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.donate-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(144,238,144,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(144,238,144,0.03)"/><circle cx="50" cy="10" r="0.8" fill="rgba(144,238,144,0.04)"/><circle cx="10" cy="90" r="1.2" fill="rgba(144,238,144,0.02)"/></svg>');
    animation: float 40s infinite linear;
}

.donate-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(144, 238, 144, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 124, 89, 0.08) 0%, transparent 50%);
}

.donate-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Donate Header */
.donate-header {
    margin-bottom: 5rem;
}

.donate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 80, 22, 0.1);
    border: 2px solid rgba(45, 80, 22, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.donate-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.donate-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.title-part-1 {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.2rem;
}

.title-part-2 {
    display: block;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-green), var(--secondary-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.donate-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: slideInUp 1s ease 0.6s forwards;
}

/* Impact Statistics */
.impact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0;
    opacity: 0;
    animation: slideInUp 1s ease 0.8s forwards;
}

.impact-item {
    text-align: center;
    position: relative;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.1), rgba(74, 124, 89, 0.15));
    border: 3px solid rgba(45, 80, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-green);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(144, 238, 144, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.impact-item:hover .impact-icon::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1);
    border-color: rgba(144, 238, 144, 0.6);
    box-shadow: 0 0 30px rgba(144, 238, 144, 0.3);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Description */
.cta-description {
    margin: 4rem 0;
    opacity: 0;
    animation: slideInUp 1s ease 1s forwards;
}

.cta-description p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Donate Button Container */
.cta-button-container {
    margin: 4rem 0 3rem;
    opacity: 0;
    animation: slideInUp 1s ease 1.2s forwards;
}

/* Apple M-Series Chip Inspired Donate Button */
.enhanced-donate-btn {
    position: relative;
    display: inline-block;
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(45deg, 
        #ff6b6b 0%, 
        #ff8e53 12.5%, 
        #ff6b9d 25%, 
        #c44569 37.5%, 
        #f8b500 50%, 
        #3c6382 62.5%, 
        #0fbcf9 75%, 
        #00d2d3 87.5%, 
        #ff6b6b 100%);
    background-size: 400% 400%;
    animation: rainbowGlow 4s ease infinite;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.enhanced-donate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.enhanced-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
}

.btn-content {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5016 50%, #1a3a1a 100%);
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    animation: heartbeat 2s ease infinite;
}

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

.btn-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 3px;
}

.btn-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.enhanced-donate-btn:hover .btn-glow {
    opacity: 1;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.enhanced-donate-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease 1.4s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary-green);
    font-size: 1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: floatAnimation 8s ease-in-out infinite;
}

.float-1 { top: 10%; left: 10%; animation-delay: 0s; }
.float-2 { top: 20%; right: 15%; animation-delay: 1s; }
.float-3 { top: 60%; left: 5%; animation-delay: 2s; }
.float-4 { bottom: 30%; right: 20%; animation-delay: 3s; }
.float-5 { top: 40%; left: 80%; animation-delay: 4s; }
.float-6 { bottom: 20%; left: 25%; animation-delay: 5s; }
.float-7 { top: 70%; right: 40%; animation-delay: 6s; }
.float-8 { top: 30%; left: 60%; animation-delay: 7s; }
.float-9 { bottom: 60%; right: 70%; animation-delay: 1.5s; }
.float-10 { top: 80%; left: 40%; animation-delay: 2.5s; }

/* Enhanced Keyframe Animations */
@keyframes rainbowGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%, 28% { transform: scale(1.1); }
    21% { transform: scale(1.05); }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .donate-cta-section {
        padding: 80px 0;
    }
    
    .donate-title {
        font-size: 2.5rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .enhanced-donate-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-content {
        padding: 16px 24px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .donate-title {
        font-size: 2rem;
    }
    
    .donate-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-description p {
        font-size: 1rem;
    }
    
    .impact-stats {
        gap: 1.5rem;
    }
}