/* ===================================
   PUSHPA EDUCATIONAL SOCIETY
   Modern Redesign - Emotional & Animated
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Primary Palette - Warm & Hopeful */
    --primary: #E85D04;
    --primary-dark: #D00000;
    --primary-light: #FAA307;
    
    /* Secondary - Trust & Calm */
    --secondary: #0077B6;
    --secondary-dark: #023E8A;
    --secondary-light: #00B4D8;
    
    /* Accent - Growth & Hope */
    --accent: #2D6A4F;
    --accent-light: #40916C;
    
    /* Neutrals */
    --dark: #1A1A2E;
    --dark-soft: #16213E;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-500: #6C757D;
    --gray-300: #DEE2E6;
    --gray-100: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #E85D04 0%, #FAA307 100%);
    --gradient-cool: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26,26,46,0.9) 0%, rgba(22,33,62,0.7) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(232, 93, 4, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.95) 0%, rgba(250, 163, 7, 0.95) 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.announcement-left {
    display: flex;
    align-items: center;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    animation: slideInLeft 0.5s ease;
}

.announcement-badge svg {
    animation: pulse 2s ease-in-out infinite;
}

.announcement-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.announcement-link:hover {
    color: white;
    transform: translateY(-1px);
}

/* Desktop Announcement - Show on desktop, hide on mobile */
.announcement-desktop {
    display: flex;
}

.announcement-mobile {
    display: none !important;
}

/* Mobile Marquee Styles */
.announcement-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.marquee-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.marquee-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, visibility 0s linear 0s;
}

.marquee-item .announcement-badge,
.marquee-item .announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.marquee-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    padding: 0;
}

.marquee-dot.active {
    width: 24px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
}

/* Main Header */
.header-main {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    transition: var(--transition-base);
}

.header.scrolled .header-main {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.header.scrolled .header-main .nav-link {
    color: var(--dark);
}

.header.scrolled .header-main .logo-text-main {
    color: var(--dark);
}

.header.scrolled .header-main .logo-icon {
    background: var(--gradient-warm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-warm);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
    transition: var(--transition-base);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    animation: logoShine 3s ease-in-out infinite;
}

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

.logo-text-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.header.scrolled .logo-text-sub {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary-light);
}

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

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-dropdown svg {
    transition: var(--transition-base);
}

.nav-dropdown:hover .nav-link-dropdown svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 24px;
}

.nav-cta {
    margin-left: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 93, 4, 0.5);
}

.btn-secondary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 93, 4, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.header.scrolled .mobile-toggle span {
    background: var(--dark);
}

.mobile-toggle.active span {
    background: var(--white) !important;
}

/* ===================================
   HERO SECTION - FULLSCREEN SLIDER
   =================================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(26, 26, 46, 0.85) 40%,
        rgba(15, 23, 41, 0.6) 60%,
        rgba(15, 23, 41, 0.3) 80%,
        transparent 100%
    );
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(250, 163, 7, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; }
.hero-particles span:nth-child(3) { left: 35%; top: 50%; animation-delay: 4s; animation-duration: 14s; }
.hero-particles span:nth-child(4) { left: 50%; top: 30%; animation-delay: 1s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 65%; top: 70%; animation-delay: 3s; animation-duration: 13s; }
.hero-particles span:nth-child(6) { left: 75%; top: 40%; animation-delay: 5s; animation-duration: 17s; }
.hero-particles span:nth-child(7) { left: 85%; top: 60%; animation-delay: 2s; animation-duration: 15s; }
.hero-particles span:nth-child(8) { left: 90%; top: 20%; animation-delay: 4s; animation-duration: 11s; }
.hero-particles span:nth-child(9) { left: 5%; top: 60%; animation-delay: 1s; animation-duration: 19s; }
.hero-particles span:nth-child(10) { left: 45%; top: 90%; animation-delay: 3s; animation-duration: 14s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-fullscreen-content {
    position: relative;
    z-index: 10;
    text-align: left;
    padding: 120px 24px 100px;
    width: 100%;
    min-height: 500px;
}

.hero-fullscreen-content .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 400px;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
    pointer-events: none;
    z-index: 1;
}

.hero-slide-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                visibility 0s linear 0s;
}

.hero-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Badge */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(232, 93, 4, 0.15);
    border: 1px solid rgba(232, 93, 4, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.2s both;
}

.badge-dot-premium {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Main Title - Clean Design */
.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    text-align: left;
}

.title-line-1 {
    display: block;
    animation: fadeInUp 0.8s ease 0.4s both;
    margin-bottom: 8px;
}

.title-line-2 {
    display: block;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.highlight-word {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    display: none;
}

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

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

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

/* Tagline Text */
.hero-tagline-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 0 40px;
    line-height: 1.8;
    text-align: left;
    animation: fadeInUp 1s ease 0.8s both;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.btn-hero-primary {
    padding: 18px 36px;
    background: var(--gradient-warm);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(232, 93, 4, 0.4);
    transition: all 0.4s ease;
}

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

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(232, 93, 4, 0.5);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-hero-outline {
    padding: 18px 36px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    transition: all 0.4s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--dark);
    border-color: white;
    transform: translateY(-4px);
}

/* Stats Bar - Premium Clean */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    padding: 0;
    animation: fadeInUp 1s ease 1s both;
}

.stat-box {
    text-align: center;
    min-width: 120px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
}

.slider-dot.active::before {
    border-color: var(--primary);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===================================
   INITIATIVES SECTION
   =================================== */
.initiatives-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.initiative-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.initiative-card:hover::before {
    transform: scaleX(1);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.initiative-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(250, 163, 7, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--primary);
}

.initiative-card:hover .initiative-icon {
    background: var(--gradient-warm);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.initiative-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.initiative-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SERVICES / MISSION SECTION
   =================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 93, 4, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--gray-300);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(250, 163, 7, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--primary);
}

.service-icon svg {
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-warm);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===================================
   ABOUT / WHO WE ARE SECTION
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    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='%23E85D04' fill-opacity='0.05'%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");
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 3s ease-in-out infinite;
}

.experience-badge .number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

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

.about-content {
    position: relative;
    z-index: 10;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* ===================================
   IMPACT / STATS SECTION
   =================================== */
.impact-section {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.impact-section .section-header {
    color: var(--white);
}

.impact-section .section-title {
    color: var(--white);
}

.impact-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

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

.impact-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.impact-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-warm);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.impact-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ===================================
   CAUSES / LATEST CAUSES SECTION
   =================================== */
.causes-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.cause-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
    transition: var(--transition-slow);
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.cause-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gradient-warm);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.cause-content {
    padding: 24px;
}

.cause-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.cause-card:hover .cause-content h3 {
    color: var(--primary);
}

.cause-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cause-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 8px;
    background: var(--gray-300);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 10px;
    position: relative;
    animation: progressGrow 1.5s ease-out;
}

@keyframes progressGrow {
    from { width: 0 !important; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.progress-stats .raised {
    color: var(--primary);
    font-weight: 600;
}

.progress-stats .goal {
    color: var(--gray-500);
}

/* ===================================
   TESTIMONIALS / EMOTIONS SECTION
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFF5EB 0%, #FFF 100%);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(232, 93, 4, 0.1);
    line-height: 1;
}

.testimonial-content {
    font-size: 1.15rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-info span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-image {
    max-width: 120px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.footer-logo-image:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(250, 163, 7, 0.5));
    transform: scale(1.05);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-bottom p {
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

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

/* ===================================
   ANIMATIONS - Scroll Reveal
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-visual {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .hero-carousel {
        width: 100%;
    }
    
    .carousel-slides {
        height: 350px;
    }
    
    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }
    
    @keyframes floatCard {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 8px 0;
    }
    
    /* Hide desktop announcement on mobile */
    .announcement-desktop {
        display: none !important;
    }
    
    /* Show mobile marquee on mobile */
    .announcement-mobile {
        display: block !important;
    }
    
    .announcement-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .announcement-right {
        flex-direction: column;
        gap: 8px;
    }
    
    .announcement-link {
        font-size: 0.8rem;
    }
    
    .marquee-track {
        height: 36px;
    }
    
    .marquee-item .announcement-badge,
    .marquee-item .announcement-link {
        font-size: 0.8rem;
    }
    
    .marquee-dots {
        margin-top: 6px;
        gap: 5px;
    }
    
    .marquee-dot {
        width: 5px;
        height: 5px;
    }
    
    .marquee-dot.active {
        width: 20px;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header.scrolled .header-main {
        padding: 10px 0;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .logo-text-main {
        font-size: 1.1rem;
    }
    
    .logo-text-sub {
        font-size: 0.65rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 24px 30px;
        transition: var(--transition-base);
        gap: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--white) !important;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--primary-light) !important;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-dropdown .nav-link-dropdown {
        justify-content: space-between;
        display: flex;
        width: 100%;
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        border-radius: 8px;
        margin-top: 0;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 12px 0;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .nav-dropdown.open .nav-link-dropdown svg {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        display: block;
        color: rgba(255,255,255,0.7) !important;
        padding: 14px 24px;
        font-size: 0.95rem;
        border-bottom: none;
        transition: var(--transition-base);
    }
    
    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--primary-light) !important;
        padding-left: 28px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1003;
    }
    
    .mobile-toggle.active {
        z-index: 1003;
    }
    
    .mobile-toggle.active span {
        background: var(--white) !important;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--white) !important;
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--white) !important;
    }
    
    /* Ensure toggle is visible when scrolled and menu is open */
    .header.scrolled .mobile-toggle.active span {
        background: var(--white) !important;
    }
    
    /* Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item, .hero-stat {
        text-align: center;
    }
    
    /* Hero Fullscreen Mobile Fixes */
    .hero-fullscreen {
        min-height: 100vh;
    }
    
    .hero-fullscreen-content {
        padding: 140px 16px 100px;
        text-align: left;
        min-height: 400px;
    }
    
    .hero-fullscreen-content .container {
        padding: 0 16px;
        min-height: 350px;
    }
    
    .hero-slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .hero-slide-content.active {
        position: relative;
    }
    
    .hero-badge-premium {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }
    
    .hero-main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .title-line-1 {
        margin-bottom: 6px;
    }
    
    .hero-tagline-text {
        font-size: 1rem;
        margin-bottom: 32px;
        text-align: left;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        padding: 16px 28px;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .hero-stats-bar {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .hero-slider-nav {
        bottom: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    /* Content Sections Mobile */
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* About Section Mobile */
    .about-grid {
        gap: 40px;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-img-main {
        height: 300px;
    }
    
    .about-img-secondary {
        width: 120px;
        height: 120px;
        right: -10px;
        bottom: -20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
    
    .experience-badge .number {
        font-size: 1.75rem;
    }
    
    .experience-badge .text {
        font-size: 0.65rem;
    }
    
    /* Services Mobile */
    .service-card {
        padding: 28px 20px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    /* Impact Section Mobile */
    .impact-card {
        padding: 28px 16px;
    }
    
    .impact-number {
        font-size: 2.25rem;
    }
    
    /* Causes Mobile */
    .cause-card {
        margin-bottom: 20px;
    }
    
    .cause-image {
        height: 180px;
    }
    
    /* Team/Board Members Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .team-member-card {
        padding: 24px 20px;
    }
    
    .team-member-info h3 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .team-designation {
        font-size: 0.95rem;
    }
    
    .team-designation-en {
        font-size: 0.8rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer Mobile */
    .footer {
        padding-top: 60px;
    }
    
    .footer-brand .logo {
        justify-content: flex-start;
        display: flex;
    }
    
    .footer-logo-image {
        max-width: 100px;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
    }
    
    .footer-credit {
        text-align: left;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */
.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f1729 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 60%);
    filter: blur(60px);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--primary-light);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--gray-100);
}

/* Info Cards */
.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
    transition: var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-card.accent-top {
    border-top: 4px solid var(--primary);
}

.info-card.accent-top-secondary {
    border-top: 4px solid var(--primary);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    .content-image img {
        height: 250px;
    }
    
    .info-card {
        padding: 24px;
    }
    
    .value-card {
        padding: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    .donate-grid {
        grid-template-columns: 1fr;
    }
    
    .donate-card {
        padding: 28px;
    }
    
    .form-card {
        padding: 28px;
    }
    
    .legal-block h2 {
        font-size: 1.25rem;
    }
}

/* Content Image */
.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-300);
    transition: var(--transition-base);
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(250, 163, 7, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Legal Info Table */
.legal-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.legal-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-300);
}

.legal-row:last-child {
    border-bottom: none;
}

.legal-label {
    font-weight: 600;
    color: var(--dark);
}

.legal-value {
    color: var(--gray-500);
}

/* Team/Board Members Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.team-member-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-info {
    position: relative;
    z-index: 1;
}

.team-member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: var(--font-body);
    min-height: 3.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-designation {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.team-designation-en {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
    font-family: var(--font-body);
}

/* Project Cards */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even) > * {
    direction: ltr;
}

.project-card:last-child {
    margin-bottom: 0;
}

.project-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.project-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.project-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.project-content p {
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.8;
}

.project-list {
    list-style: none;
    margin-bottom: 28px;
}

.project-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}

.project-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .project-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .project-card:nth-child(even) {
        direction: ltr;
    }
}

/* Event Cards */
.event-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.event-date .day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-info p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.event-action {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .event-date {
        width: 100%;
        height: auto;
        padding: 16px;
        flex-direction: row;
        gap: 8px;
    }
}

/* Past Events Grid */
.past-event-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-300);
}

.past-event-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.past-event-card .date {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.past-event-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

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

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
    transition: var(--transition-base);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(232, 93, 4, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1) 0%, rgba(250, 163, 7, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-500);
}

/* Forms */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Donate Section */
.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }
}

.donate-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.donate-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

.bank-details {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.bank-details p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-300);
}

.bank-details p:last-child {
    border-bottom: none;
}

.bank-details strong {
    color: var(--dark);
}

.bank-details span {
    color: var(--gray-500);
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.tax-note {
    margin-top: 24px;
    padding: 16px;
    background: rgba(232, 93, 4, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Legal Pages Content */
.legal-content {
    line-height: 1.8;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-300);
}

.legal-block h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin: 20px 0 12px;
}

.legal-block p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.legal-block ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray-500);
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===================================
   STICKY BUTTONS
   =================================== */

/* Left Social Buttons */
.sticky-social {
    position: fixed !important;
    left: 20px !important;
    bottom: 100px !important;
    top: auto !important;
    right: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999 !important;
}

.sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition-base);
    position: relative;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-btn.whatsapp {
    background: #25D366;
    animation: bounce 2s ease-in-out infinite;
}

.sticky-btn.whatsapp::before {
    border-color: #25D366;
}

.sticky-btn.whatsapp:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.sticky-btn.call {
    background: var(--primary);
    animation: shake 3s ease-in-out infinite;
}

.sticky-btn.call::before {
    border-color: var(--primary);
    animation-delay: 1s;
}

.sticky-btn.call:hover {
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.5);
}

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

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50%, 100% { transform: rotate(0deg); }
}

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

/* Right Donate Button */
.sticky-donate {
    position: fixed !important;
    right: 20px !important;
    bottom: 100px !important;
    top: auto !important;
    left: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-warm);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999 !important;
    animation: glow 2s ease-in-out infinite;
    overflow: hidden;
}

.sticky-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

.sticky-donate::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    border: 2px solid rgba(232, 93, 4, 0.5);
    animation: pulseRingDonate 2s ease-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(232, 93, 4, 0.6); }
}

@keyframes pulseRingDonate {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

.sticky-donate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(232, 93, 4, 0.6);
}

.sticky-donate svg {
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60%, 100% { transform: scale(1); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-social {
        left: 12px !important;
        bottom: 24px !important;
    }
    
    .sticky-btn {
        width: 44px;
        height: 44px;
    }
    
    .sticky-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .sticky-donate {
        right: 12px !important;
        bottom: 24px !important;
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .sticky-donate span {
        display: none;
    }
}

