/* ==========================================
   ABOUT US SECTION - APPLE STYLE
   ========================================== */

.about-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.06) 0%, rgba(48, 209, 88, 0.02) 50%, transparent 80%);
    pointer-events: none;
}

.about-hero {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    color: var(--text-primary);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-content .lead {
    color: var(--text-secondary);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Visual */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.team-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(48, 209, 88, 0.03) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    transition: var(--transition-fast);
}

.member-avatar:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.4);
}

.member-avatar i {
    color: white;
    font-size: 1.5rem;
}

.member-role {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Feature Cards */
.about-feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-secondary);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.2);
}

.about-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.3);
}

.feature-icon-wrapper i {
    color: white;
    font-size: 2rem;
}

.about-feature-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.about-feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mission Statement */
.mission-statement {
    position: relative;
    z-index: 2;
}

.mission-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(48, 209, 88, 0.03) 100%);
    pointer-events: none;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #00C851 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 6px 24px rgba(48, 209, 88, 0.3);
    position: relative;
    z-index: 2;
}

.mission-icon i {
    color: white;
    font-size: 2.5rem;
}

.mission-card h3 {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.mission-card .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .about-hero {
        text-align: center;
    }
    
    .about-content {
        margin-bottom: 3rem;
    }
    
    .team-grid {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .member-avatar {
        width: 50px;
        height: 50px;
    }
    
    .member-avatar i {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .about-feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .about-feature-card h4 {
        font-size: 1.25rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
    }
    
    .mission-icon i {
        font-size: 2rem;
    }
    
    .mission-card h3 {
        font-size: 1.875rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
