/* ===== MODERN ABOUT US PAGE STYLES - YUVA 2025 (INDIA THEME) ===== */

/* ===== Root Variables (Aligned with New Design System) ===== */
:root {
    /* India Theme Color Palette */
    --saffron-primary: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E67300;
    --saffron-pale: #FFE5CC;
    --white-primary: #FFFFFF;
    --white-warm: #FAFAF9;
    --white-cream: #F5F5F4;
    --green-primary: #138808;
    --green-light: #22C55E;
    --green-dark: #0F6606;
    --green-pale: #D1FAE5;
    --navy-chakra: #000080;
    --navy-dark: #00005C;

    /* Semantic Colors */
    --color-primary: var(--navy-chakra);
    --color-secondary: var(--green-primary);
    --color-accent: var(--saffron-primary);
    --color-error: #ef4444;
    --color-error-pale: #fef2f2;
    --color-info-pale: #EBF4FF;

    /* Text & Background */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-on-dark: var(--white-primary);
    --text-on-accent: var(--white-primary);
    --bg-base: var(--white-warm);
    --bg-elevated: var(--white-primary);
    --bg-subtle: var(--white-cream);
    --bg-muted: #F1F5F9;
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--saffron-light) 0%, var(--white-primary) 50%, var(--green-light) 100%);
    --gradient-saffron: linear-gradient(135deg, var(--saffron-primary) 0%, var(--saffron-dark) 100%);
    --gradient-green: linear-gradient(135deg, var(--green-light) 0%, var(--green-primary) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy-chakra) 0%, var(--navy-dark) 100%);

    /* Shadows & Radii */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== FLASH NOTIFICATION SYSTEM ===== */
.flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.flash-notification {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 16px 20px;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition-bounce);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.flash-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.flash-notification.success {
    border-left: 4px solid var(--green-primary);
    background: var(--green-pale);
}

.flash-notification.error {
    border-left: 4px solid var(--color-error);
    background: var(--color-error-pale);
}

.flash-notification.warning {
    border-left: 4px solid var(--saffron-primary);
    background: var(--saffron-pale);
}

.flash-notification.info {
    border-left: 4px solid var(--navy-chakra);
    background: var(--color-info-pale);
}

.flash-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--white-primary);
}

.flash-notification.success .flash-icon {
    background: var(--green-primary);
}

.flash-notification.error .flash-icon {
    background: var(--color-error);
}

.flash-notification.warning .flash-icon {
    background: var(--saffron-primary);
}

.flash-notification.info .flash-icon {
    background: var(--navy-chakra);
}

.flash-content {
    flex: 1;
}

.flash-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.flash-message {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.flash-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.flash-close:hover {
    background: var(--bg-muted);
    color: var(--text-primary);
}

/* ===== ABOUT PAGE LAYOUT ===== */
.about-page {
    min-height: 100vh;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
    top: calc(60px + 1rem * 2);
    /* Adjust if header height changes */
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 128, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 128, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--saffron-pale);
    border: 1px solid var(--saffron-light);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--saffron-dark);
    margin-bottom: 24px;
    animation: pulse 2.5s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--text-primary);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: var(--gradient-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.about-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.about-impact-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: var(--shadow-md);
}

.about-impact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.impact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white-primary);
    flex-shrink: 0;
}

.impact-content {
    text-align: left;
}

.about-impact-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-impact-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== ABOUT YUVA SECTION ===== */
.about-yuva-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: -100px auto 0;
    padding: 0 20px 80px;
}

.about-yuva-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.about-yuva-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-navy);
}

.about-yuva-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-yuva-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white-primary);
    flex-shrink: 0;
}

.about-yuva-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.about-yuva-header p {
    color: var(--text-secondary);
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.about-yuva-content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.about-yuva-content p {
    margin-bottom: 24px;
}

.about-yuva-content p:last-child {
    margin-bottom: 0;
}

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

/* ===== OBJECTIVES SECTION ===== */
.objectives-section {
    background: var(--bg-subtle);
    padding: 80px 0;
    position: relative;
}

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

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

.objectives-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.objectives-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.objective-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    border: 1px solid var(--border-light);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.objective-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--white-primary);
    flex-shrink: 0;
}

.objective-content {
    flex: 1;
}

.objective-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.objective-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== VALUES SECTION (TRICOLOR THEME) ===== */
.values-section {
    background: var(--bg-subtle);
    padding: 80px 0;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.values-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white-primary);
    margin: 0 auto 24px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Tricolor Theme for Values */
.value-card:nth-child(3n + 1)::before {
    background: var(--gradient-saffron);
}

.value-card:nth-child(3n + 1) .value-icon {
    background: var(--gradient-saffron);
}

.value-card:nth-child(3n + 1) h3 {
    color: var(--saffron-dark);
}

.value-card:nth-child(3n + 2)::before {
    background: var(--gradient-navy);
}

.value-card:nth-child(3n + 2) .value-icon {
    background: var(--gradient-navy);
}

.value-card:nth-child(3n + 2) h3 {
    color: var(--navy-chakra);
}

.value-card:nth-child(3n + 3)::before {
    background: var(--gradient-green);
}

.value-card:nth-child(3n + 3) .value-icon {
    background: var(--gradient-green);
}

.value-card:nth-child(3n + 3) h3 {
    color: var(--green-dark);
}


/* ===== STATS SECTION (Glassmorphism & Tricolor) ===== */
.stats-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background-color: #f0f4ff;
    background-image:
        radial-gradient(at 100% 0%, var(--saffron-pale) 0px, transparent 50%),
        radial-gradient(at 0% 100%, var(--green-pale) 0px, transparent 50%);
}

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

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

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-chakra);
    margin: 0 0 12px 0;
}

.stats-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 80, 0.1);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 80, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white-primary);
    margin: 0 auto 16px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Tricolor Theme for Stats */
.stat-card:nth-child(3n + 1) .stat-icon {
    background: var(--gradient-saffron);
}

.stat-card:nth-child(3n + 1) .stat-number {
    color: var(--saffron-dark);
}

.stat-card:nth-child(3n + 2) .stat-icon {
    background: var(--gradient-navy);
}

.stat-card:nth-child(3n + 2) .stat-number {
    color: var(--navy-chakra);
}

.stat-card:nth-child(3n + 3) .stat-icon {
    background: var(--gradient-green);
}

.stat-card:nth-child(3n + 3) .stat-number {
    color: var(--green-dark);
}


/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-subtle);
    padding: 80px 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-navy);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.cta-button.primary {
    background: var(--saffron-primary);
    color: var(--text-on-accent);
}

.cta-button.primary:hover {
    background: var(--saffron-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.05);
}

.cta-button.secondary {
    background: transparent;
    color: var(--navy-chakra);
    border-color: var(--navy-chakra);
}

.cta-button.secondary:hover {
    background: var(--navy-chakra);
    color: var(--white-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 153, 51, 0);
    }
}

.values-grid {
    grid-template-columns: repeat(3, 1fr);
}




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

.cta-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ================================================================ */
/* ===== ABOUT PAGE MOBILE RESPONSIVE MEDIA QUERIES - 480px & 768px ===== */
/* ================================================================ */

/* ===== TABLET - 768px and below ===== */
@media (max-width: 768px) {

    /* Header */
    /* .site-header {
        padding: 12px 16px;
    } */

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    /* .logo {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .logo img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    } */

    .logo h1 {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .page-title {
        font-size: 0.85rem;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
    }

    /* Main Container */
    .main {
        padding: 0;
        margin: 0;
    }

    /* About Page */
    .about-page {
        top: calc(60px + 0.5rem*4);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    /* Hero Section */
    .about-hero {
        padding: 60px 16px 40px;
        min-height: calc(70vh - 80px);
    }

    .about-hero-content {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    /* About Impact */
    .about-impact {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .about-impact-item {
        padding: 20px;
    }

    .impact-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .about-impact-number {
        font-size: 22px;
    }

    .about-impact-label {
        font-size: 13px;
    }

    /* About YUVA Section */
    .about-yuva-container {
        margin: -60px auto 0;
        padding: 0 16px 60px;
    }

    .about-yuva-card {
        padding: 40px 24px;
    }

    .about-yuva-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 32px;
    }

    .about-yuva-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .about-yuva-header h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .about-yuva-header p {
        font-size: 16px;
    }

    .about-yuva-content {
        font-size: 15px;
    }

    .about-yuva-content p {
        margin-bottom: 20px;
    }

    /* Objectives Section */
    .objectives-section {
        padding: 60px 16px;
    }

    .objectives-header {
        margin-bottom: 48px;
    }

    .objectives-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .objectives-header p {
        font-size: 16px;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .objective-card {
        padding: 28px 24px;
        gap: 20px;
    }

    .objective-number {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

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

    .objective-content p {
        font-size: 14px;
    }

    /* Values Section */
    .values-section {
        padding: 60px 16px;
    }

    .values-header {
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .values-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .values-header p {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 16px;
    }

    .value-card {
        padding: 28px 20px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

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

    .value-card p {
        font-size: 15px;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 16px;
    }

    .stats-header {
        margin-bottom: 40px;
    }

    .stats-header h2 {
        font-size: 2.25rem;
        margin-bottom: 10px;
    }

    .stats-header p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 28px 20px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .stat-number {
        font-size: 40px;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 15px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 16px;
    }

    .cta-card {
        padding: 48px 32px;
    }

    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Flash Notifications */
    .flash-container {
        top: 80px;
        right: 10px;
        left: 10px;
        gap: 10px;
    }

    .flash-notification {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 14px 18px;
    }

    .flash-icon {
        width: 22px;
        height: 22px;
    }

    .flash-title {
        font-size: 13px;
    }

    .flash-message {
        font-size: 12px;
    }
}

/* ===== MOBILE - 480px and below ===== */
@media (max-width: 480px) {

    /* Header */
    /* .site-header {
        padding: 10px 12px;
    } */

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
    }

    /* .logo {
        flex-direction: row;
        gap: 6px;
        align-items: center;
    }

    .logo img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    } */

    .logo h1 {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .page-title {
        font-size: 0.75rem;
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: right;
        line-height: 1.2;
    }

    /* Main Container */
    .main {
        padding: 0;
        margin: 5px;
        width: 100%;
    }

    /* About Page */
    .about-page {
        top: calc(60px + 0.25rem*6);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        width: 100%;
        overflow-x: hidden;
    }

    /* Hero Section */
    .about-hero {
        padding: 40px 12px 32px;
        min-height: calc(65vh - 80px);
    }

    .about-hero-content {
        padding: 0 12px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 16px;
        gap: 4px;
    }

    .hero-badge i {
        font-size: 10px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        gap: 4px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.5;
    }

    /* About Impact */
    .about-impact {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        padding: 0 12px;
    }

    .about-impact-item {
        padding: 16px;
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .impact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .impact-content {
        text-align: left;
    }

    .about-impact-number {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .about-impact-label {
        font-size: 12px;
    }

    /* About YUVA Section */
    .about-yuva-container {
        margin: -25px auto 0;
        padding: 0 12px 40px;
    }

    .about-yuva-card {
        padding: 28px 16px;
    }

    .about-yuva-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 24px;
    }

    .about-yuva-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-yuva-header h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .about-yuva-header p {
        font-size: 14px;
    }

    .about-yuva-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-yuva-content p {
        margin-bottom: 18px;
    }

    /* Objectives Section */
    .objectives-section {
        padding: 40px 12px;
    }

    .objectives-header {
        margin-bottom: 32px;
    }

    .objectives-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .objectives-header p {
        font-size: 14px;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .objective-card {
        padding: 20px 16px;
        gap: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .objective-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .objective-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .objective-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Values Section */
    .values-section {
        padding: 40px 12px;
    }

    .values-header {
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .values-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .values-header p {
        font-size: 14px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    .value-card {
        padding: 24px 18px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .value-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 12px;
    }

    .stats-header {
        margin-bottom: 32px;
    }

    .stats-header h2 {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .stats-header p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 12px;
    }

    .cta-card {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-button {
        width: calc(100% - 24px);
        max-width: 320px;
        padding: 13px 24px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    /* Flash Notifications */
    .flash-container {
        top: 70px;
        right: 8px;
        left: 8px;
        gap: 8px;
        max-width: calc(100vw - 16px);
    }

    .flash-notification {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 12px 14px;
        gap: 10px;
        box-sizing: border-box;
    }

    .flash-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
        flex-shrink: 0;
    }

    .flash-content {
        flex: 1;
        min-width: 0;
    }

    .flash-title {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .flash-message {
        font-size: 11px;
        line-height: 1.3;
    }

    .flash-close {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}

/* ===== EXTRA SMALL MOBILE - 375px and below ===== */
@media (max-width: 375px) {

    /* Header */
    .logo h1 {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 0.7rem;
        max-width: 100px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    /* About Impact Cards */
    .about-impact-item {
        padding: 14px;
    }

    .impact-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .about-impact-number {
        font-size: 18px;
    }

    .about-impact-label {
        font-size: 11px;
    }

    /* About YUVA Card */
    .about-yuva-card {
        padding: 24px 14px;
    }

    .about-yuva-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .about-yuva-header h2 {
        font-size: 20px;
    }

    .about-yuva-content {
        font-size: 13px;
    }

    /* Objectives */
    .objectives-header h2 {
        font-size: 20px;
    }

    .objective-card {
        padding: 18px 14px;
    }

    .objective-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .objective-content h3 {
        font-size: 15px;
    }

    .objective-content p {
        font-size: 12px;
    }

    /* Values */
    .values-header h2 {
        font-size: 20px;
    }

    .value-card {
        padding: 20px 16px;
    }

    .value-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .value-card h3 {
        font-size: 16px;
    }

    .value-card p {
        font-size: 13px;
    }

    /* Stats */
    .stat-card {
        padding: 20px 14px;
    }

    .stat-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* CTA */
    .cta-card {
        padding: 28px 16px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: calc(100% - 24px);
    }

    /* Flash Notifications */
    .flash-notification {
        padding: 10px 12px;
    }

    .flash-title {
        font-size: 11px;
    }

    .flash-message {
        font-size: 10px;
    }
}