/* ==============================================
   ABOUT PAGE STYLES
   ============================================== */

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-story-content .section-label {
    margin-bottom: var(--space-6);
}

.about-story-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.about-story-content p {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    border-radius: var(--radius-2xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-2xl);
}

.about-story-badge {
    position: absolute;
    bottom: var(--space-8);
    left: calc(-1 * var(--space-8));
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-glow-strong);
}

.about-story-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
}

.about-story-badge span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}


/* Vision & Mission */
.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.vm-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-strong);
    box-shadow: var(--shadow-xl);
}

.vm-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    margin-bottom: var(--space-6);
}

.vm-card h3 {
    margin-bottom: var(--space-4);
}

.vm-card p {
    line-height: 1.8;
}

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

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.mission-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}


/* Team */
.team-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
}

.team-card h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.team-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.team-social {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-bg);
    border-color: var(--primary-light);
    color: var(--primary-light);
}


/* Achievements */
.achievement-item {
    text-align: center;
    padding: var(--space-8);
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.achievement-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}


/* Responsive */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .about-story-badge {
        left: var(--space-4);
    }
}

@media (max-width: 768px) {
    .about-story-image img {
        height: 350px;
    }
    
    .about-story-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: calc(-1 * var(--space-12));
        display: inline-block;
        margin-left: var(--space-4);
    }
}
