/* ============================================
   ABOUT US PAGE SPECIFIC STYLES
   WiFiHapa - About Page Styles
   ============================================ */
   /* Main Content */
.main-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* ----- HERO SECTION ----- */
.about-hero {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
    padding: 3.2rem 2rem;
    border-radius: 48px;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: var(--transition, all 0.3s ease);
}

body.dark .about-hero {
    background: var(--hero-bg, linear-gradient(145deg, #111827 0%, #1e2538 100%));
}

.about-badge {
    background: #0b2b40;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ----- STORY CARDS ----- */
.story-card {
    background: var(--card-bg, white);
    border-radius: 48px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: var(--transition, all 0.3s ease);
}

body.dark .story-card {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

/* ----- STATISTICS CARDS ----- */
.stat-circle {
    background: var(--card-bg, white);
    border-radius: 30px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: var(--transition, all 0.3s ease);
}

body.dark .stat-circle {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.stat-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #0a2c3d);
    margin-bottom: 0.3rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary, #5e6f7d);
}

/* ----- VALUES CARDS ----- */
.value-card {
    background: var(--card-bg, white);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition, all 0.3s ease);
    height: 100%;
    text-align: center;
}

body.dark .value-card {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    background: #e4edff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin: 0 auto 1.5rem;
    transition: var(--transition, all 0.3s ease);
}

body.dark .value-icon {
    background: #2a3448;
}

.value-icon-gold {
    background: #fff3d6;
    color: #d4a11e;
}

body.dark .value-icon-gold {
    background: #3a3520;
    color: #d4a11e;
}

.value-icon-green {
    background: #e1f5e8;
    color: #198754;
}

body.dark .value-icon-green {
    background: #1a3a2a;
    color: #2ecc71;
}

.value-icon-teal {
    background: #d0e0e8;
    color: #0b2b40;
}

body.dark .value-icon-teal {
    background: #1a2a30;
    color: #5bc0de;
}

/* ----- TEAM CARDS ----- */
.team-card {
    background: var(--card-bg, white);
    border-radius: 32px;
    padding: 1.8rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition, all 0.3s ease);
    height: 100%;
    text-align: center;
}

body.dark .team-card {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.06);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: #e4edff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 3rem;
    color: #0d6efd;
    transition: var(--transition, all 0.3s ease);
}

body.dark .team-avatar {
    background: #2a3448;
}

.team-role {
    color: #d4a11e;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* ----- TIMELINE ----- */
.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0d6efd;
    min-width: 100px;
}

.timeline-content {
    border-left: 3px solid #e4edff;
    padding-left: 1.5rem;
}

body.dark .timeline-content {
    border-left-color: #2a3448;
}

/* ----- OFFICE LOCATION ----- */
.office-location {
    background: var(--card-bg, white);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition, all 0.3s ease);
}

body.dark .office-location {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.office-icon {
    background: #0b2b40;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary, #5e6f7d);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- CALL TO ACTION SECTION ----- */
.cta-section {
    background: var(--card-bg, white);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
}

body.dark .cta-section {
    background: var(--card-bg, #1e2538);
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1.2rem;
    }
    
    .story-card {
        padding: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .timeline-content {
        padding-left: 1rem;
    }
    
    .office-location {
        flex-direction: column;
        text-align: center;
    }
    
    .office-icon {
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .team-avatar {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .story-card {
        padding: 1.2rem;
    }
    
    .value-card {
        padding: 1.2rem;
    }
    
    .team-card {
        padding: 1.2rem;
    }
    
    .stat-circle {
        padding: 1rem 0.8rem;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
}