/* ===================================
   RAMADAN GIVING - Modern UI/UX Redesign
   Typography: Cormorant Garamond + DM Sans
   Theme: Emerald & Gold Islamic-inspired
   =================================== */

:root {
    /* Primary Colors - Teal Palette (Matching Logo) */
    --primary-100: #E6F2F5;
    --primary-200: #B3D9E0;
    --primary-300: #5BA3B0;
    --primary-400: #3D8A99;
    --primary-500: #2D6E7A;
    --primary-600: #245A64;
    --primary-700: #1C4750;
    --primary-800: #15363D;
    
    /* Accent Colors - Warm Gold Palette */
    --accent-100: #FEF9E7;
    --accent-200: #FCF0C7;
    --accent-300: #F8E187;
    --accent-400: #E8C547;
    --accent-500: #D4AF37;
    --accent-600: #B8962E;
    --accent-700: #8B7023;
    
    /* Neutral Colors */
    --neutral-50: #FAFAF9;
    --neutral-100: #F5F5F3;
    --neutral-200: #E8E8E5;
    --neutral-300: #D4D4CF;
    --neutral-400: #A3A39E;
    --neutral-500: #737370;
    --neutral-600: #52524F;
    --neutral-700: #3D3D3B;
    --neutral-800: #262625;
    --neutral-900: #171716;
    
    /* Semantic Colors */
    --bg-primary: #FDFDFB;
    --bg-secondary: #F7F7F4;
    --bg-tertiary: #EFEFE9;
    --text-primary: #1A1A18;
    --text-secondary: #52524F;
    --text-muted: #737370;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(15, 81, 50, 0.12);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
    
    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.15s var(--ease-out);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);
    --transition-slower: 0.8s var(--ease-out);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
}

/* ===================================
   RESET & BASE
   =================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--accent-400);
    color: var(--primary-800);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--primary-700);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

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

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

/* ===================================
   PARTICLES BACKGROUND
   =================================== */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--primary-100) 100%);
}

/* ===================================
   CURSOR GLOW EFFECT
   =================================== */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(15, 81, 50, 0.25);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 81, 50, 0.35);
}

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

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-600);
    border-color: var(--white);
    transform: translateY(-3px);
    text-shadow: none;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-text svg {
    transition: transform var(--transition-base);
}

.btn-text:hover {
    color: var(--accent-600);
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 253, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(253, 253, 251, 0.95);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-600);
}

.nav-links {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: var(--space-2) 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
    transition: width var(--transition-base);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-600);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    padding: var(--space-3) var(--space-6);
    font-size: 0.9rem;
    color: var(--white) !important;
}

.nav-links .btn-primary:hover {
    color: var(--white) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: var(--space-2);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-600);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, 
        rgba(45, 110, 122, 0.92) 0%, 
        rgba(36, 90, 100, 0.9) 50%, 
        rgba(28, 71, 80, 0.94) 100%),
        url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        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='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-20) var(--space-6);
    animation: fadeInUp 1s var(--ease-out);
}

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

.hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-200);
    margin-bottom: var(--space-2);
    letter-spacing: 0.02em;
    animation: fadeInUp 1s var(--ease-out) 0.1s backwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    color: var(--accent-200);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s var(--ease-out) 0.5s backwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
    animation: fadeInUp 1s var(--ease-out) 0.2s backwards;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-title .highlight {
    color: var(--accent-300);
    display: inline-block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-2);
    opacity: 0.9;
    font-weight: 400;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s var(--ease-out) 0.3s backwards;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    letter-spacing: 0.01em;
    letter-spacing: 0.01em;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-16);
    animation: fadeInUp 1s var(--ease-out) 0.4s backwards;
}

.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-6) var(--space-10);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 1s var(--ease-out) 0.5s backwards;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero-stat {
    text-align: center;
    padding: 0 var(--space-4);
}

.hero-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-300);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-stat-label {
    font-size: 0.8rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: var(--space-1);
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    opacity: 0.9;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

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

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-tag {
    display: inline-block;
    color: var(--accent-600);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
}

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

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    margin-top: var(--space-5);
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    font-weight: 500;
}

.about-text p {
    margin-bottom: var(--space-6);
    font-size: 1.05rem;
}

.about-list {
    margin-top: var(--space-8);
}

.about-list li {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.about-list li:hover {
    background: rgba(212, 175, 55, 0.05);
}

.icon-box {
    flex-shrink: 0;
}

.about-list .icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-100), var(--accent-200));
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.about-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-600);
    margin-bottom: var(--space-1);
}

.about-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    gap: var(--space-5);
}

.stat-card {
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-500);
    margin-bottom: var(--space-2);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    text-align: center;
}

.team-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--neutral-200);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-400);
}

.team-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto var(--space-6);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--accent-400), var(--primary-400)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.team-card h3 {
    margin-bottom: var(--space-2);
    color: var(--primary-600);
    font-size: 1.4rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================================
   IMPACT / TIMELINE SECTION
   =================================== */

.impact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

/* New Alternating Timeline V2 */
.timeline-v2 {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-400) 0%, var(--primary-400) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6);
    align-items: center;
    margin-bottom: var(--space-12);
    opacity: 0;
    transition: var(--transition-slower);
}

.timeline-row.fade-in {
    opacity: 1;
}

.timeline-row.left {
    transform: translateX(-30px);
}

.timeline-row.right {
    transform: translateX(30px);
}

.timeline-row.fade-in.left,
.timeline-row.fade-in.right {
    transform: translateX(0);
}

.timeline-dot {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 4px solid var(--accent-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.timeline-dot span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-600);
}

.timeline-dot.active {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
    border-color: var(--accent-500);
    animation: pulse 2s infinite;
}

.timeline-dot.active span {
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.timeline-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.timeline-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.timeline-row:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-card {
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-lg);
}

.timeline-card h3 {
    margin-bottom: var(--space-3);
    font-size: 1.4rem;
    color: var(--primary-600);
}

.timeline-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Left row: card | dot | image */
.timeline-row.left .timeline-card {
    justify-self: end;
    text-align: right;
}

.timeline-row.left .timeline-image {
    justify-self: start;
}

/* Right row: image | dot | card */
.timeline-row.right .timeline-image {
    justify-self: end;
}

.timeline-row.right .timeline-card {
    justify-self: start;
    text-align: left;
}

/* ===================================
   LOCATIONS SECTION
   =================================== */

.locations-section {
    background: var(--bg-secondary);
}

.locations-section .section-title {
    color: var(--primary-600);
}

.locations-map {
    width: 100%;
    height: 450px;
    background: #DCE8E8;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: none;
    position: relative;
}

.locations-map > div {
    width: 100% !important;
    height: 100% !important;
}

/* Hide amCharts watermark */
.locations-map [aria-label*="amcharts"],
.locations-map a[href*="amcharts"] {
    display: none !important;
}

/* ===================================
   GALLERY / SLIDESHOW SECTION
   =================================== */

.gallery-section {
    background: var(--bg-secondary);
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: transparent;
}

.slideshow-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-600);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: var(--space-4);
    cursor: pointer;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-btn:hover {
    background: var(--accent-400);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slide-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev { left: var(--space-4); }
.next { right: var(--space-4); }

/* Modern Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4) var(--space-6);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.slide-counter {
    font-family: var(--font-mono, 'SF Mono', 'Monaco', monospace);
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slide-counter .current {
    color: var(--primary-600);
    font-weight: 600;
}

.slide-progress-container {
    flex: 1;
    max-width: 300px;
    margin: 0 var(--space-4);
}

.slide-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: height 0.2s ease;
}

.slide-progress:hover {
    height: 8px;
}

.slide-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.slide-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--primary-500);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slide-progress:hover .slide-progress-bar::after {
    opacity: 1;
}

.slide-play-pause {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-600);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slide-play-pause:hover {
    background: var(--accent-400);
    color: white;
    transform: scale(1.1);
}

.slide-play-pause svg {
    width: 16px;
    height: 16px;
}

/* Hide old dots */
.slide-dots {
    display: none;
}

/* ===================================
   GET INVOLVED SECTION
   =================================== */

.get-involved-section {
    background: var(--bg-primary);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.involvement-card {
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.involvement-card:hover .card-glow {
    opacity: 1;
}

.involvement-card .icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.involvement-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.involvement-card h3 {
    margin-bottom: var(--space-4);
    color: var(--primary-600);
    font-size: 1.5rem;
}

.involvement-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   DONATE SECTION
   =================================== */

.donate-section {
    background: linear-gradient(145deg, var(--primary-500) 0%, var(--primary-700) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.donate-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.donate-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.donate-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    color: var(--accent-300);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.donate-content h2 {
    color: var(--white);
    margin-bottom: var(--space-5);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.donate-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: var(--space-10);
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.donation-options {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.donation-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: 'DM Sans', sans-serif;
}

.donation-btn:hover,
.donation-btn.active {
    background: var(--accent-500);
    border-color: var(--accent-500);
    color: var(--primary-800);
    transform: scale(1.05);
}

.donate-cta {
    background: var(--white);
    color: var(--primary-700);
    border: none;
    font-size: 1.1rem;
    padding: var(--space-5) var(--space-12);
    box-shadow: var(--shadow-glow);
}

.donate-cta:hover {
    background: var(--accent-400);
    color: var(--primary-800);
}

/* LaunchGood Embed */
.launchgood-embed {
    width: 100%;
    max-width: 800px;
    margin: var(--space-6) auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.launchgood-embed iframe {
    display: block;
    border: none;
    border-radius: var(--radius-xl);
}

.donate-alt-text {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    margin-top: var(--space-4) !important;
    margin-bottom: var(--space-3) !important;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: var(--white);
    padding: var(--space-16) 0 0;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23D4AF37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

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

.social-link:hover {
    background: var(--accent-500);
    color: var(--primary-800);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--accent-400);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: var(--space-5);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-5);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-500);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--accent-500);
    border: none;
    border-radius: 50%;
    color: var(--primary-800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--accent-400);
    transform: scale(1.1);
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding: var(--space-6) 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */

.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.fade-in {
    opacity: 1;
    transform: translateY(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) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
}

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Timeline V2 tablet */
    .timeline-row {
        grid-template-columns: 1fr auto 1fr;
        gap: var(--space-4);
}

    .timeline-dot {
        width: 60px;
        height: 60px;
}

    .timeline-image {
        max-width: 280px;
}

    .timeline-card {
        padding: var(--space-5) var(--space-6);
}

    /* Locations tablet */
.locations-map {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .footer-newsletter {
        grid-column: span 2;
}
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--space-16) var(--space-4) var(--space-4);
        padding-top: 100px;
}

    .hero-brand {
        font-size: 2.5rem;
        margin-bottom: var(--space-1);
}

    .hero-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: var(--space-2);
}

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-2);
    }
    
    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        margin-top: var(--space-2);
        margin-bottom: var(--space-4);
}

    .hero-buttons {
        gap: var(--space-3);
        margin-bottom: var(--space-5);
}

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: 0.9rem;
    }

    .hero-stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
        padding: var(--space-4);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: var(--space-2);
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Mobile Nav */
    .hamburger {
        display: block;
    }

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

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

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

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-6);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    /* Timeline V2 mobile - stack vertically */
    .timeline-center-line {
        left: 30px;
    }
    
    .timeline-row {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding-left: 70px;
        position: relative;
    }
    
    .timeline-row.left,
    .timeline-row.right {
        transform: translateY(20px);
    }
    
    .timeline-row.fade-in.left,
    .timeline-row.fade-in.right {
        transform: translateY(0);
    }
    
    .timeline-dot {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
    }
    
    .timeline-dot span {
        font-size: 0.8rem;
    }
    
    .timeline-image {
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .timeline-card {
        order: 2;
        text-align: left !important;
        justify-self: stretch !important;
        padding: var(--space-5);
    }
    
    .timeline-row.right .timeline-card {
        text-align: left;
    }
    
    /* Locations mobile */
    .locations-map {
        height: 350px;
    }
    
    /* Stats mobile */
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: var(--space-6);
}

    /* Slideshow mobile */
    .slide {
        height: 350px;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        padding: var(--space-2);
    }
    
    .prev { left: var(--space-2); }
    .next { right: var(--space-2); }
    
    .slideshow-controls {
        padding: var(--space-3) var(--space-4);
        flex-wrap: wrap;
        gap: var(--space-2);
    }
    
    .slide-counter {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        order: 1;
    }
    
    .slide-progress-container {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
        margin: var(--space-2) 0 0 0;
    }
    
    .slide-play-pause {
        width: 36px;
        height: 36px;
        order: 2;
    }
    
    /* Logo mobile */
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        display: block;
        font-size: 1rem;
        color: var(--primary-600);
        font-weight: 600;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        height: 70px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-newsletter {
        grid-column: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-content {
        padding-top: 100px;
        padding-left: var(--space-3);
        padding-right: var(--space-3);
        padding-bottom: var(--space-3);
    }
    
    .hero-brand {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-stats-bar {
        gap: var(--space-2);
        padding: var(--space-3);
    }
    
    .hero-stat-number {
        font-size: 1.1rem;
    }
    
    .hero-stat-label {
        font-size: 0.55rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: var(--space-3) var(--space-5);
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .donation-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        padding: var(--space-6);
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
}

/* ===================================
   NAV ANIMATION
   =================================== */

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

/* ===================================
   REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
}

    html {
        scroll-behavior: auto;
}
}
