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

/* Active Nav Link */
.nav-links a.active {
    color: #ff2a2a;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content {
    width: 80%;
    margin: 0 auto;
}

.breadcrumb {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: #aaa;
}

/* Story Section */
.story-section {
    background: white;
    padding: 100px 0;
}

.story-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-video {
    flex: 1;
}

.story-video .video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.story-video video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.story-video .video-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.story-video .video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-video .video-dot.active {
    background: #ff2a2a;
    transform: scale(1.2);
}

/* Mission Section */
.mission-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.mission-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: #ff2a2a;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: #ff2a2a;
    padding: 80px 0;
}

.stats-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

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

.stat-num {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: white;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Section */
.why-section {
    background: white;
    padding: 100px 0;
}

.why-container {
    width: 80%;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

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

.why-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #ff2a2a;
    box-shadow: 0 10px 40px rgba(255, 42, 42, 0.1);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: #f0f0f0;
    display: block;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.team-container {
    width: 80%;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

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

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0e0e0 0%, #ccc 100%);
    border-radius: 20px;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 15px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: #111;
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    width: 80%;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 18px;
    color: #888;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #ff2a2a;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e02020;
    transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 50px;
    }

    .story-content h2,
    .why-header h2,
    .team-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .page-header-content,
    .story-container,
    .mission-container,
    .stats-container,
    .why-container,
    .team-container,
    .cta-container {
        width: 90%;
    }

    .story-container {
        flex-direction: column;
    }

    .story-content h2 {
        font-size: 36px;
    }

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

    .stats-container {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .stat-item {
        width: 45%;
    }

    .stat-num {
        font-size: 42px;
    }

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

    .why-header h2 {
        font-size: 36px;
    }

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

    .team-header h2 {
        font-size: 36px;
    }

    .cta-container h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .story-section,
    .mission-section,
    .why-section,
    .team-section,
    .cta-section {
        padding: 60px 0;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .story-content p {
        font-size: 16px;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-item {
        width: 100%;
    }

    .stat-num {
        font-size: 48px;
    }

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

    .why-header h2,
    .team-header h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-container h2 {
        font-size: 26px;
    }

    .cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}
