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

.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.mv-card {
    padding: var(--spacing-xl);
    background: #F9FAFB;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

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

.mv-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.mv-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-md);
}

.mv-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: var(--spacing-2xl) 0;
    background: #F9FAFB;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    padding: var(--spacing-lg);
    background: #F9FAFB;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
    border: 2px solid var(--primary-purple);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: var(--spacing-2xl) 0;
    background: #F9FAFB;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.team-card {
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-purple);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

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

.team-social a {
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-purple);
    color: white;
}

/* Global Section */
.global-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.global-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-md);
}

.global-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.global-stat {
    text-align: center;
}

.global-stat h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.global-stat p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 600;
}

.global-map {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .global-stats {
        grid-template-columns: 1fr;
    }
}