/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
body {
    background-color: #ffffff;
    color: #333333;
}

/* ========== HERO SECTION ========== */
.about-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Taller hero to match the viewport design */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar adjustments for overlapping hero */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ========== STATS BAND ========== */
.stats-band {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.stats-container {
    max-width: 100%; /* Lebar penuh / 100vw */
    margin: 0 auto;
    padding: 0 6vw; /* Jarak padding menggunakan vw */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
}

.stat-number {
    color: #f10000; /* Vivid Red */
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
    max-width: 200px;
}

/* ========== INTRO SUMMARY SECTION ========== */
.about-intro-section {
    padding: 100px 0 60px;
    background: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.intro-headline {
    flex: 1;
    font-size: 3rem;
    font-weight: 300;
    color: #333333;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.intro-headline strong {
    font-weight: 800;
    color: #f10000; /* Red */
}

.intro-copy {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    font-weight: 400;
}

.intro-copy p {
    margin-top: 0;
}

/* ========== CONTENT: VALUES & VISION ========== */
.about-content-section {
    padding: 60px 0 120px;
    background: #ffffff;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* Left Side: Profile & Values */
.content-left {
    flex: 1.2;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.profile-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

/* Values List */
.values-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f10000; /* Red solid box based on design */
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    margin: 0 0 10px 0;
}

.value-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Right Side: Visi & Misi */
.content-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.vm-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    margin: 0 0 20px 0;
}

.vm-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-list li p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}
.mission-list li {
    position: relative;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}
.mission-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
    .intro-container, .content-container, .stats-container {
        padding: 0 32px;
    }
    .content-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 30px;
    }
    .intro-container, .content-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }
    .intro-headline {
        font-size: 2.5rem;
    }
    .value-item {
        flex-direction: column;
        gap: 20px;
    }
}
