/* ===========================
   ABOUT HERO
=========================== */

.about-hero-section {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background: #F5F8FB;
}

.about-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 111, 238, .15);
}

.about-mini-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
}

.about-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-mini-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #EAF2FF;
    color: #006FEE;
    border-radius: 50%;
    font-size: 16px;
}

.about-mini-title {
    color: #101828;
    font-size: 13px;
    font-weight: 900;
}

.about-mini-sub {
    color: #8593A8;
    font-size: 12px;
}


/* ===========================
   WHY SECTION
=========================== */

.why-section {
    padding: 64px 0;
}

.why-title-underline {
    width: 46px;
    height: 4px;
    margin-top: 6px;
    background: #006FEE;
    border-radius: 4px;
}

.why-card {
    height: 100%;
    padding: 26px 22px;
    background: white;
    border: 2px solid #DCE3EF;
    border-radius: 16px;
    transition: .25s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #8BC2FA;
    box-shadow: 0 14px 30px rgba(0, 111, 238, .12);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #006FEE;
    color: white;
    border-radius: 50%;
    font-size: 20px;
}

.why-card h4 {
    margin-bottom: 6px;
    color: #101828;
    font-size: 15px;
    font-weight: 900;
}

.why-card p {
    margin: 0;
    color: #8593A8;
    font-size: 13px;
}


/* ===========================
   GALLERY
=========================== */

.about-gallery {
    display: flex;
    gap: 14px;
    height: 340px;
}

.about-gallery-main {
    flex: 1.4;
    height: 340px;
    overflow: hidden;
    border-radius: 18px;
}

.about-gallery-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 340px;
}

.about-gallery-side .side-img {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
}

.about-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .3s;
}

.about-gallery img:hover {
    transform: scale(1.04);
}


/* ===========================
   CERITA KAMI
=========================== */

.cerita-kami {
    clear: both;
    margin-top: 28px;
}

.cerita-kami h3 {
    margin-bottom: 12px;
    color: #101828;
    font-size: 22px;
    font-weight: 900;
}

.cerita-kami p {
    margin-bottom: 14px;
    color: #5B6072;
    font-size: 14px;
    line-height: 1.7;
}


/* ===========================
   STATS BAR
=========================== */

.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 32px 24px;
    background: #EAF2FF;
    border-radius: 20px;
}

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

.stat-item i {
    display: block;
    margin-bottom: 8px;
    color: #006FEE;
    font-size: 22px;
}

.stat-num {
    color: #101828;
    font-family: 'Space Mono', monospace;
    font-size: 26px;
    font-weight: 900;
}

.stat-label {
    color: #8593A8;
    font-size: 12px;
    font-weight: 800;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: #C7DDF0;
}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px) {

    .about-mini-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-hero-img {
        height: 260px;
    }

    .about-gallery {
        flex-direction: column;
        height: auto;
    }

    .about-gallery-main {
        flex: none;
        height: 220px;
    }

    .about-gallery-side {
        flex: none;
        flex-direction: row;
        height: 140px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

}