/* ============================================
   ABOUT.CSS - About Page Styles
   All elements visible by default - NO animations
   ============================================ */

/* Override any GSAP from() animations */
#aboutPage * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
    position: relative;
    z-index: 1;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mission & Vision Cards */
.mission-vision .mv-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.glassmorphic {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(26, 35, 50, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.glassmorphic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(244, 197, 66, 0.2);
}

.mv-icon-wrapper {
    margin-bottom: 2rem;
    display: block;
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f4c542 0%, #f97316 100%);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    box-shadow: 0 12px 35px rgba(244, 197, 66, 0.35);
}

.mv-icon i {
    width: 36px;
    height: 36px;
}

.mv-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0d1b2a !important;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    display: block;
}

.mv-card p {
    color: #415a77 !important;
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 400;
    display: block;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */

.our-story-section {
    padding: 80px 0;
    background: var(--teal-50);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.overline {
    display: block;
    color: var(--amber-600);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--teal-900);
    font-family: var(--font-display);
}

.story-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    position: relative;
    background: white;
}

.story-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amber-500), var(--coral-600));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.3);
}

.story-icon i {
    width: 32px;
    height: 32px;
}

.story-content p {
    color: var(--teal-800);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--amber-600);
    font-weight: 600;
}

/* ============================================
   OUR PROGRAMS SECTION
   ============================================ */

.our-programs-section {
    padding: 80px 0;
    background: white;
}

.section-description {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--teal-700);
    font-size: 1.125rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.program-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.program-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(244, 197, 66, 0.08);
    font-family: var(--font-display);
    line-height: 1;
}

.program-icon {
    width: 64px;
    height: 64px;
    background: rgba(244, 197, 66, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.program-icon i {
    width: 32px;
    height: 32px;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    position: relative;
    z-index: 2;
}

.program-card p {
    color: var(--teal-800);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {

    .mv-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .mission-vision,
    .our-story-section,
    .our-programs-section {
        padding: 60px 0;
    }

    .mv-grid,
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card,
    .program-card {
        padding: 2rem 1.5rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .section-header-center {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .mv-icon {
        width: 64px;
        height: 64px;
    }

    .mv-icon i {
        width: 32px;
        height: 32px;
    }

    .mv-card h2 {
        font-size: 1.75rem;
    }

    .program-number {
        font-size: 3rem;
        top: 1rem;
        right: 1.5rem;
    }
}