/* ====== FORM SIMULASI (atas) ====== */
.dts-wrap {
    max-width: 640px;
    margin: 28px auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #111;
}
.dts-title {
    text-align: center;
    margin: 0 0 12px;
    color: #111;
}
.dts-wrap label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.dts-wrap select, 
.dts-wrap input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
}
.dts-btn-primary {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: linear-gradient(180deg, #FFD700 0%, #FFC107 100%);
    color: #111;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,193,7,0.12);
}
@media (max-width:640px) {
    .dts-wrap { padding: 14px; }
}
.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.tarif-table th, 
.tarif-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
.tarif-table th {
    background-color: #f4f4f4;
}
.tarif-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* ====== HASIL TARIF (bawah) ====== */

.dts-result {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-top: 20px;
}
.tarif-card {
    display: flex;
    align-items: flex-start; /* atasnya sejajar */
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tarif-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.tarif-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tarif-icon img {
    width: 50px;
    height: auto;
}
.tarif-info {
    flex: 1;
    margin-left: 18px; /* sedikit lebih jauh dari icon */
    display: grid;
    grid-template-columns: 300px auto; /* kolom label sedikit lebih lebar */
    row-gap: 10px; /* jarak antar baris lebih lega */
}

@media (max-width: 640px) {
    .tarif-info {
        grid-template-columns: 120px auto; /* lebar di HP */
    }
}
.label {
    font-size: 13px;
    color: #777;
}
.value {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
.value.highlight {
    color: #000;
}
.value.harga {
    font-size: 16px;
    color: #d19b00; /* kuning emas */
}
.dts-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
