/* ============ About Hero ============ */
.about-hero {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-text h2 .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.about-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-image-wrap img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 102, 0.3);
    box-shadow: 0 0 50px rgba(255, 0, 102, 0.3);
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* ============ Mission Section ============ */
.mission-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 102, 0.2);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,0,102,0.2), rgba(0,212,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.mission-card:hover .mission-icon {
    color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.mission-card h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

/* ============ Timeline ============ */
.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-blue));
    box-shadow: 0 0 10px var(--neon-pink);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 102, 0.2);
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ Team Section ============ */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 102, 0.2);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.3);
}

.team-avatar {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-role {
    color: var(--neon-pink);
    font-size: 14px;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 0 0 50px !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: 12px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
