.about-container {
    width: 900px;
    margin: 40px auto;
    text-align: center;
}

/* JUDUL */
.about-container h1 {
    margin-bottom: 20px;
}

/* ===================== */
/* FOTO (FIX CENTER TOTAL) */
/* ===================== */
.about-photo {
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    width: 100%;
    height: 380px; /* ruang supaya benar-benar tengah */

    margin: 40px 0;
}

/* FOTO */
.foto {
    position: absolute;
    width: 320px;
    height: 320px;

    object-fit: cover;
    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);

    opacity: 0;
    transform: translateX(100px) scale(0.85);
    transition: all 0.6s ease;
}

/* FOTO AKTIF */
.foto.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ===================== */
/* TEXT (LEBIH JELAS) */
/* ===================== */
.about-text {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 17px;     /* 🔥 diperbesar */
    line-height: 1.8;    /* 🔥 lebih nyaman */
    margin-bottom: 20px;
    color: #222;         /* 🔥 lebih tegas */
}

/* ===================== */
/* CONTACT (DIKEMBALIKAN RAPI) */
/* ===================== */
.contact-section {
    margin-top: 60px;
    text-align: center;
}

/* GANTI GRID → FLEX BIAR LEBIH CENTER */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

/* CARD */
.contact-card {
    width: 200px;

    background: white;
    padding: 20px;

    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon {
    font-size: 30px;
    margin-bottom: 10px;
}