/* ======== MODERN CARD STYLE ======== */
.profile-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ======== IMAGE & HEADER ======== */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.profile-header img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.profile-header img:hover {
    transform: scale(1.05);
}
.profile-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b; /* lebih gelap, lebih kontras */
}
.profile-header .sub-info {
    color: #475569; /* lebih jelas dari abu-abu muda */
    font-size: 15px;
}

/* ======== SECTION TITLE ======== */
.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ======== TABLE ======== */
.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}
.table-custom th {
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
    width: 30%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px 0 0 6px;
}
.table-custom td {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
}
.table-custom tr:hover td {
    background: #f1f5f9;
    transition: 0.2s ease-in-out;
}

/* ======== BUTTON ======== */
.btn-secondary {
    background-color: #475569;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #334155;
    transform: translateY(-2px);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .profile-header img {
        margin-bottom: 10px;
    }
}


