/*==========================
ABOUT MODERN (LARGE IMAGE STYLE)
==========================*/

.about-modern {
    background: #f8fafc;
    padding: 120px 0;
    overflow: hidden;
}

/* Container untuk Image yang Diperbesar */
.about-photo-large {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px; /* Menaikkan tinggi agar gambar terlihat besar & panjang ke bawah */
}

.about-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar tidak gepeng saat ditarik besar */
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.experience-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    z-index: 2;
}

.experience-card h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    color: #08244b;
}

.experience-card p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #666;
}

/* Pengaturan Konten Teks di Sebelah Kanan */
.about-content-right {
    padding-left: 30px; /* Jarak aman agar tidak menempel dengan gambar besar */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    background: #08244b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content-right h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #08244b;
    margin-bottom: 25px;
}

.about-content-right h2 span {
    color: #f4a000;
    display: block;
}

.about-content-right p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.about-check {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.about-check li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.about-check i {
    color: #f4a000;
    margin-right: 10px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 25px;
    margin-top: 25px;
}

.about-stats h3 {
    font-size: 32px;
    color: #08244b;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-stats span {
    color: #666;
    font-size: 14px;
}

/* RESPONSIVE UNTUK TABLET & MOBILE */
@media (max-width: 991px) {
    .about-modern {
        padding: 80px 0;
    }

    .about-photo-large {
        min-height: 450px; /* Mengecil secara proporsional di layar tablet/HP agar tidak terlalu panjang */
        margin-bottom: 40px;
    }

    .about-content-right {
        padding-left: 0;
    }

    .about-content-right h2 {
        font-size: 32px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .experience-card {
        left: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }
    
    .experience-card h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
}