﻿

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7f4 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,201,167,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

    .breadcrumb-nav a {
        color: var(--primary-blue);
        font-weight: 500;
    }

    .breadcrumb-nav i {
        font-size: 0.7rem;
    }

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

    .page-hero h1 span {
        color: var(--teal);
    }

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 0;
}

/* ===== ABOUT STORY ===== */
.about-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gradient-blue);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 10;
}

    .experience-badge h3 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0;
    }

    .experience-badge p {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.95;
    }

.story-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

    .story-content h2 span {
        color: var(--teal);
    }

.story-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.story-stat h4 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin: 0;
}

.story-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== MISSION VISION ===== */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-blue);
    }

    .mv-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7f4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ===== CORE VALUES ===== */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

        .section-header h2 span {
            color: var(--teal);
        }

    .section-header p {
        color: var(--text-muted);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

.value-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    height: 100%;
}

    .value-card:hover {
        background: var(--white);
        border-color: var(--border-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
    }

.value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

    .timeline-section::before {
        content: '';
        position: absolute;
        right: -15%;
        top: 20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,102,255,0.04) 0%, transparent 70%);
        border-radius: 50%;
    }

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-blue) 0%, var(--teal) 100%);
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 50%;
    }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: 380px;
    margin-right: 2rem;
    transition: all 0.3s;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 2rem;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== TEAM ===== */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    text-align: center;
}

    .team-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
    }

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .team-social a:hover {
        background: var(--primary-blue);
        color: white;
    }

.team-body {
    padding: 1.5rem;
}

    .team-body h4 {
        font-size: 1.1rem;
        color: var(--navy);
        margin-bottom: 0.25rem;
    }

    .team-body p {
        font-size: 0.85rem;
        color: var(--primary-blue);
        font-weight: 600;
        margin: 0;
    }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #0066FF 0%, #00C9A7 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.cta-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

.cta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .btn-white:hover {
        background: var(--navy);
        color: white;
    }

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .btn-outline-white:hover {
        background: white;
        color: var(--primary-blue);
        border-color: white;
    }
