/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Multi-Color Theme Palette */
    --primary-color: #2d5016;
    --primary-dark: #1f350f;
    --primary-light: #4a7a2a;
    
    /* Vibrant Color Palette */
    --color-1: #2d5016; /* Green - Primary */
    --color-2: #c97d60; /* Coral/Orange */
    --color-3: #5b8fc7; /* Blue */
    --color-4: #9b59b6; /* Purple */
    --color-5: #e74c3c; /* Red */
    --color-6: #f39c12; /* Orange */
    --color-7: #16a085; /* Teal */
    --color-8: #3498db; /* Sky Blue */
    
    /* Gradient Combinations */
    --gradient-1: linear-gradient(135deg, #2d5016 0%, #4a7a2a 100%);
    --gradient-2: linear-gradient(135deg, #c97d60 0%, #e8b4a0 100%);
    --gradient-3: linear-gradient(135deg, #5b8fc7 0%, #3498db 100%);
    --gradient-4: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --gradient-5: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-6: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --gradient-7: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    --gradient-8: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    
    /* Mixed Gradients */
    --gradient-mix-1: linear-gradient(135deg, #2d5016 0%, #c97d60 100%);
    --gradient-mix-2: linear-gradient(135deg, #5b8fc7 0%, #9b59b6 100%);
    --gradient-mix-3: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    --gradient-mix-4: linear-gradient(135deg, #16a085 0%, #3498db 100%);
    
    --secondary-color: #c97d60;
    --accent-color: #e8b4a0;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f6f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing Scale - Optimized for space efficiency */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
    border-radius: 0 0 30px 30px;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    transition: var(--transition-base);
    object-fit: contain;
    border-radius: 8px;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.logo-tagline {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    display: block;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-mix-1);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-md);
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-name {
        font-size: 0.85rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: visible;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 0 0 80px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(201, 125, 96, 0.75) 100%);
    z-index: 1;
    border-radius: 0 0 80px 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.7);
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
}

/* Responsive adjustments for hero banner */
@media (max-width: 768px) {
    .hero {
        margin-top: 50px;
        min-height: 90vh;
    }
    
    .hero-background,
    .hero-overlay {
        border-radius: 0 0 40px 40px;
    }
    
    .hero-image {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }
    
    .hero-background,
    .hero-overlay {
        border-radius: 0 0 30px 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-mix-1);
    color: white;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.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 {
    background: var(--gradient-mix-2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(91, 143, 199, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Curved Wave Dividers */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider-bottom {
    bottom: 0;
}

.wave-divider-white {
    fill: white;
}

.wave-divider-light {
    fill: var(--bg-light);
}

.wave-divider-primary {
    fill: var(--primary-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-mix-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-section .section-title {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-section .section-title {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programs-section .section-title {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stories-section .section-title {
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transparency-section .section-title {
    background: var(--gradient-7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.involve-section .section-title {
    background: var(--gradient-mix-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Reduce curve radius on mobile */
    .hero {
        border-radius: 0 0 40px 40px;
    }
    
    .problem-section,
    .programs-section,
    .transparency-section,
    .partners-section {
        border-radius: 0 0 40px 40px;
    }
    
    .impact-section,
    .stories-section,
    .involve-section,
    .contact-section {
        border-radius: 40px 40px 0 0;
    }
}

/* ============================================
   Problem Section
   ============================================ */
.problem-section {
    background: var(--bg-light);
    border-radius: 0 0 60px 60px;
    margin-top: 0;
    padding-top: var(--spacing-2xl);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.problem-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:nth-child(1)::before {
    background: var(--gradient-1);
}

.problem-card:nth-child(2)::before {
    background: var(--gradient-3);
}

.problem-card:nth-child(3)::before {
    background: var(--gradient-2);
}

.problem-card:nth-child(4)::before {
    background: var(--gradient-7);
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 80, 22, 0.2);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.problem-card:nth-child(1) .problem-icon {
    background: var(--gradient-1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.problem-card:nth-child(2) .problem-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(91, 143, 199, 0.3);
}

.problem-card:nth-child(3) .problem-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
}

.problem-card:nth-child(4) .problem-icon {
    background: var(--gradient-7);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.problem-card:nth-child(1) h3 {
    color: var(--color-1);
}

.problem-card:nth-child(2) h3 {
    color: var(--color-3);
}

.problem-card:nth-child(3) h3 {
    color: var(--color-2);
}

.problem-card:nth-child(4) h3 {
    color: var(--color-7);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Impact Section
   ============================================ */
.impact-section {
    background: white;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.impact-card {
    padding: var(--spacing-lg);
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card:nth-child(1) {
    background: var(--gradient-1);
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.impact-card:nth-child(2) {
    background: var(--gradient-2);
    box-shadow: 0 8px 32px rgba(201, 125, 96, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.impact-card:nth-child(3) {
    background: var(--gradient-3);
    box-shadow: 0 8px 32px rgba(91, 143, 199, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.impact-card:nth-child(4) {
    background: var(--gradient-7);
    box-shadow: 0 8px 32px rgba(22, 160, 133, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:nth-child(1):hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(45, 80, 22, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.impact-card:nth-child(2):hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(201, 125, 96, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.impact-card:nth-child(3):hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(91, 143, 199, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.impact-card:nth-child(4):hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(22, 160, 133, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.impact-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   Programs Section
   ============================================ */
.programs-section {
    background: var(--bg-light);
    border-radius: 0 0 60px 60px;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.program-card {
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    z-index: 2;
}

.program-card:nth-child(1)::before {
    background: var(--gradient-1);
}

.program-card:nth-child(2)::before {
    background: var(--gradient-3);
}

.program-card:nth-child(3)::before {
    background: var(--gradient-2);
}

.program-card:nth-child(4)::before {
    background: var(--gradient-7);
}

.program-card:nth-child(5)::before {
    background: var(--gradient-4);
}

.program-card:nth-child(6)::before {
    background: var(--gradient-6);
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(45, 80, 22, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 80, 22, 0.1);
}

.program-card:hover::after {
    opacity: 1;
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.program-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .program-image::after {
    opacity: 1;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: var(--spacing-md);
}

.program-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.program-card:nth-child(1) .program-content h3 {
    color: var(--color-1);
}

.program-card:nth-child(2) .program-content h3 {
    color: var(--color-3);
}

.program-card:nth-child(3) .program-content h3 {
    color: var(--color-2);
}

.program-card:nth-child(4) .program-content h3 {
    color: var(--color-7);
}

.program-card:nth-child(5) .program-content h3 {
    color: var(--color-4);
}

.program-card:nth-child(6) .program-content h3 {
    color: var(--color-6);
}

.program-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    font-size: 0.95rem;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.program-features i {
    font-size: 0.9rem;
}

.program-card:nth-child(1) .program-features i {
    color: var(--color-1);
}

.program-card:nth-child(2) .program-features i {
    color: var(--color-3);
}

.program-card:nth-child(3) .program-features i {
    color: var(--color-2);
}

.program-card:nth-child(4) .program-features i {
    color: var(--color-7);
}

.program-card:nth-child(5) .program-features i {
    color: var(--color-4);
}

.program-card:nth-child(6) .program-features i {
    color: var(--color-6);
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Stories Section
   ============================================ */
.stories-section {
    background: white;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

/* Stories Slider Layout - Testimonial Style */
.stories-slider-container {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.stories-slider {
    position: relative;
    overflow: hidden;
    margin: 0 var(--spacing-3xl);
    padding: var(--spacing-lg) 0;
}

.stories-slider-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    will-change: transform;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - var(--spacing-lg) * 0.67);
    min-width: 0;
    opacity: 0.5;
    transform: scale(0.85);
    filter: blur(3px);
    margin: 0 auto;
    will-change: transform, opacity, filter;
}

.story-card.active {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    z-index: 2;
    flex: 0 0 calc(40% - var(--spacing-lg) * 0.6);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:nth-child(1)::before {
    background: var(--gradient-1);
}

.story-card:nth-child(2)::before {
    background: var(--gradient-3);
}

.story-card:nth-child(3)::before {
    background: var(--gradient-2);
}

.story-card:nth-child(4)::before {
    background: var(--gradient-7);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.story-card:nth-child(1) .story-icon {
    background: var(--gradient-1);
}

.story-card:nth-child(2) .story-icon {
    background: var(--gradient-3);
}

.story-card:nth-child(3) .story-icon {
    background: var(--gradient-2);
}

.story-card:nth-child(4) .story-icon {
    background: var(--gradient-7);
}

.story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.story-card:nth-child(1) h3 {
    color: var(--color-1);
}

.story-card:nth-child(2) h3 {
    color: var(--color-3);
}

.story-card:nth-child(3) h3 {
    color: var(--color-2);
}

.story-card:nth-child(4) h3 {
    color: var(--color-7);
}

.story-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.story-location i {
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.story-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.story-card:nth-child(1) .stat-item i {
    color: var(--color-1);
}

.story-card:nth-child(2) .stat-item i {
    color: var(--color-3);
}

.story-card:nth-child(3) .stat-item i {
    color: var(--color-2);
}

.story-card:nth-child(4) .stat-item i {
    color: var(--color-7);
}

.stat-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .stories-slider {
        margin: 0 var(--spacing-xl);
    }
    
    .story-card {
        flex: 0 0 calc(40% - var(--spacing-lg) * 0.6);
    }
    
    .story-card.active {
        flex: 0 0 calc(50% - var(--spacing-lg) * 0.5);
    }
}

@media (max-width: 768px) {
    .stories-slider {
        margin: 0 var(--spacing-lg);
    }
    
    .story-card {
        flex: 0 0 calc(50% - var(--spacing-lg) * 0.5);
    }
    
    .story-card.active {
        flex: 0 0 calc(70% - var(--spacing-lg) * 0.3);
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .story-card {
        flex: 0 0 calc(70% - var(--spacing-lg) * 0.3);
    }
    
    .story-card.active {
        flex: 0 0 calc(85% - var(--spacing-lg) * 0.15);
    }
    
    .stories-slider {
        margin: 0 var(--spacing-md);
    }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-2xl) + 60px);
}

.gallery-section .section-title {
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Loading State */
.gallery-loading {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.loading-spinner {
    font-size: 3rem;
    color: var(--color-5);
    margin-bottom: var(--spacing-md);
}

.gallery-loading p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Error State */
.gallery-error {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.error-icon {
    font-size: 3rem;
    color: var(--color-5);
    margin-bottom: var(--spacing-md);
}

.gallery-error p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    will-change: transform;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn var(--transition-base);
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    padding: 0 var(--spacing-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 3;
    font-size: 1.2rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .gallery-section {
        border-radius: 40px 40px 0 0;
        margin-top: -40px;
        padding-top: calc(var(--spacing-2xl) + 40px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .gallery-section {
        border-radius: 30px 30px 0 0;
    }
}

/* ============================================
   Transparency Section
   ============================================ */
.transparency-section {
    background: var(--bg-light);
    border-radius: 0 0 60px 60px;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.transparency-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transparency-card:nth-child(1)::before {
    background: var(--gradient-1);
}

.transparency-card:nth-child(2)::before {
    background: var(--gradient-3);
}

.transparency-card:nth-child(3)::before {
    background: var(--gradient-2);
}

.transparency-card:nth-child(4)::before {
    background: var(--gradient-4);
}

.transparency-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 80, 22, 0.2);
}

.transparency-card:hover::before {
    transform: scaleX(1);
}

.transparency-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.transparency-card:nth-child(1) .transparency-icon {
    background: var(--gradient-1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.transparency-card:nth-child(2) .transparency-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(91, 143, 199, 0.3);
}

.transparency-card:nth-child(3) .transparency-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
}

.transparency-card:nth-child(4) .transparency-icon {
    background: var(--gradient-4);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.transparency-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.transparency-card:nth-child(1) h3 {
    color: var(--color-1);
}

.transparency-card:nth-child(2) h3 {
    color: var(--color-3);
}

.transparency-card:nth-child(3) h3 {
    color: var(--color-2);
}

.transparency-card:nth-child(4) h3 {
    color: var(--color-4);
}

.transparency-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.transparency-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.transparency-card:nth-child(1) .transparency-link {
    color: var(--color-1);
}

.transparency-card:nth-child(2) .transparency-link {
    color: var(--color-3);
}

.transparency-card:nth-child(3) .transparency-link {
    color: var(--color-2);
}

.transparency-card:nth-child(4) .transparency-link {
    color: var(--color-4);
}

.transparency-link:hover {
    opacity: 0.8;
}

/* ============================================
   Medical Reports Section - Enhanced & Compact
   ============================================ */
.medical-reports-section {
    background: var(--bg-light);
    border-radius: 0 0 60px 60px;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.medical-reports-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.medical-reports-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.medical-reports-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
}

.medical-reports-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.medical-reports-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(91, 143, 199, 0.3);
    flex-shrink: 0;
}

.medical-reports-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-3);
    margin-bottom: var(--spacing-xs);
}

.medical-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.medical-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: var(--spacing-md) 0;
    font-size: 0.95rem;
}

.medical-note {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-lighter);
    font-style: italic;
    text-align: center;
}

.medical-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(91, 143, 199, 0.05);
    border-radius: 16px;
}

.medical-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.medical-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(91, 143, 199, 0.15);
}

.medical-feature-item i {
    font-size: 1.5rem;
    color: var(--color-3);
    margin-bottom: var(--spacing-xs);
}

.medical-feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.medical-records-preview {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: rgba(22, 160, 133, 0.05);
    border-radius: 16px;
}

.record-type {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.record-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 160, 133, 0.15);
    background: rgba(255, 255, 255, 1);
}

.record-type i {
    color: var(--color-7);
    font-size: 1.2rem;
}

.btn-medical {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    background: var(--gradient-3);
}

.btn-medical:hover {
    background: var(--gradient-8);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .medical-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .medical-records-preview {
        flex-direction: column;
    }
    
    .medical-reports-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Get Involved Section
   ============================================ */
.involve-section {
    background: white;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.involve-card:nth-child(5) .involve-icon {
    background: var(--gradient-4);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.involve-card:nth-child(5) h3 {
    color: var(--color-4);
}

.involve-card:nth-child(5):hover {
    border-color: var(--color-4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(155, 89, 182, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.involve-card {
    background: linear-gradient(135deg, rgba(248, 246, 244, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 80, 22, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.involve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(201, 125, 96, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.involve-card:nth-child(1):hover {
    border-color: var(--color-1);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(45, 80, 22, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.involve-card:nth-child(2):hover {
    border-color: var(--color-2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(201, 125, 96, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.involve-card:nth-child(3):hover {
    border-color: var(--color-3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(91, 143, 199, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.involve-card:nth-child(4):hover {
    border-color: var(--color-7);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(22, 160, 133, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.involve-card:hover::before {
    opacity: 1;
}

.involve-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.involve-card:nth-child(1) .involve-icon {
    background: var(--gradient-1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.involve-card:nth-child(2) .involve-icon {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
}

.involve-card:nth-child(3) .involve-icon {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(91, 143, 199, 0.3);
}

.involve-card:nth-child(4) .involve-icon {
    background: var(--gradient-7);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.involve-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.involve-card:nth-child(1) h3 {
    color: var(--color-1);
}

.involve-card:nth-child(2) h3 {
    color: var(--color-2);
}

.involve-card:nth-child(3) h3 {
    color: var(--color-3);
}

.involve-card:nth-child(4) h3 {
    color: var(--color-7);
}

.involve-card p {
    color: var(--text-light);
    margin-bottom: auto;
    line-height: 1.6;
    flex: 1;
}

.involve-card .btn {
    margin-top: var(--spacing-md);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: var(--spacing-xs) var(--spacing-md);
    white-space: nowrap;
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
    background: var(--bg-light);
    border-radius: 0 0 60px 60px;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.partners-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.partner-category {
    text-align: center;
}

.partner-category h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.partner-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 80, 22, 0.2);
    background: rgba(255, 255, 255, 1);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-badge:nth-child(1) {
    color: var(--color-1);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.compliance-badge:nth-child(2) {
    color: var(--color-3);
    border: 1px solid rgba(91, 143, 199, 0.1);
}

.compliance-badge:nth-child(3) {
    color: var(--color-7);
    border: 1px solid rgba(22, 160, 133, 0.1);
}

.compliance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.compliance-badge i {
    font-size: 1.2rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: white;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: var(--spacing-xs);
}

.contact-item:nth-child(1) i {
    color: var(--color-1);
}

.contact-item:nth-child(2) i {
    color: var(--color-3);
}

.contact-item:nth-child(3) i {
    color: var(--color-2);
}

.contact-item h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
}

.contact-item:nth-child(1) h4 {
    color: var(--color-1);
}

.contact-item:nth-child(2) h4 {
    color: var(--color-3);
}

.contact-item:nth-child(3) h4 {
    color: var(--color-2);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 4px 16px rgba(91, 143, 199, 0.15), 0 0 0 3px rgba(91, 143, 199, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding-top: calc(var(--spacing-xl) + 60px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(1.1);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    opacity: 0.9;
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ============================================
   Accessibility & Performance
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Skip to main content for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

/* Curved container adjustments */
.container {
    position: relative;
    z-index: 2;
}

#scrollToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

#scrollToTop:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

