/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Page Header */
.about-page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.about-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 168, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 195, 255, 0.1) 0%, transparent 40%);
}

.about-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.about-page-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breadcrumb a {
    color: var(--electric-blue);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Overview Section */
.about-overview {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-badge {
    display: inline-block;
    background: rgba(0, 168, 255, 0.1);
    color: var(--electric-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--electric-blue);
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
    padding: 20px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--electric-blue);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.about-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-electric);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-glow);
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-premium);
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    border-color: var(--electric-blue);
    box-shadow: var(--shadow-glow);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--electric-blue);
}

.why-choose-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-choose-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--gradient-primary);
}

.team-section .section-header h2,
.team-section .section-header p {
    color: var(--white);
}

.team-section .section-header p {
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition-premium);
}

.team-card:hover {
    background: rgba(0, 168, 255, 0.1);
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.team-image img {
    transition: var(--transition-fast);
    display: block;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.team-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-role {
    color: var(--electric-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
