/* ================= MODAL STYLE (SESUAI GAMBAR) ================= */
.clickable-name {
    font-weight: 600; 
    color: var(--navy); 
    font-size: 1.1rem;
    cursor: pointer;
    margin: 5px 0;
    transition: all 0.2s ease;
}

.clickable-name:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-card {
    background: #fff;
    width: 90%;
    max-width: 700px;
    min-height: 400px;
    border-radius: 40px; /* Sudut sangat bulat sesuai gambar */
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal-sidebar {
    background: #f39c12; /* Warna kuning-oranye sesuai gambar Group 4.png */
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-circle {
    width: 140px;
    height: 140px;
    background: #d1d1d1; /* Lingkaran abu-abu sesuai gambar */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Pastikan gambar terpotong bulat */
}

.modal-body {
    width: 65%;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-body h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.1;
}

.modal-body p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: 0.2s;
}

.close-btn:hover {
    color: #000;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .modal-card { flex-direction: column; border-radius: 20px; }
    .modal-sidebar { width: 100%; height: 150px; }
    .modal-body { width: 100%; padding: 30px; }
    .modal-circle { width: 100px; height: 100px; }
}