*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f3f5f9;
    padding:40px 20px;
    color:#222;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   CARD
========================= */

.card,
.dashboard-card{

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.07);
}

/* =========================
   TITLE
========================= */

.title{

    text-align:center;

    margin-bottom:40px;
}

.title h1{

    font-size:52px;

    color:#b71c1c;

    margin-bottom:12px;

    font-weight:700;
}

.title p{

    color:#777;

    font-size:18px;
}

/* =========================
   SECTION
========================= */

.section-title{

    margin:35px 0 20px;

    font-size:24px;

    font-weight:700;

    color:#222;
}

/* =========================
   FORM
========================= */

input,
select,
textarea{

    width:100%;

    padding:18px;

    border-radius:18px;

    border:1px solid #dcdcdc;

    background:#fafafa;

    margin-bottom:18px;

    font-size:15px;

    transition:0.2s;
}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#c41414;

    background:#fff;
}

textarea{

    min-height:120px;

    resize:vertical;
}

/* =========================
   GRID
========================= */

.grid-2{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}

.grid-3{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:18px;
}

/* =========================
   BUTTON
========================= */

button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:#c41414;

    color:white;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:0.2s;
}

button:hover{

    background:#a51212;

    transform:translateY(-2px);
}

/* =========================
   STEP
========================= */

.step{
    display:none;
}

.step.active{
    display:block;
}

/* =========================
   LAYANAN
========================= */

.layanan-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-top:10px;
}

.layanan-card{

    border:1px solid #e2e2e2;

    border-radius:22px;

    padding:24px;

    background:#fff;

    transition:0.2s;

    cursor:pointer;

    position:relative;
}

.layanan-card:hover{

    border-color:#c41414;

    background:#fff7f7;

    transform:translateY(-2px);
}

.layanan-card input[type="checkbox"]{

    width:20px;
    height:20px;

    accent-color:#c41414;

    margin-bottom:18px;
}

.layanan-card strong{

    display:block;

    margin-bottom:10px;

    font-size:22px;

    color:#111;
}

.layanan-card p{

    color:#777;

    font-size:14px;

    line-height:1.7;
}

/* =========================
   RESULT
========================= */

.result-card{

    max-width:900px;

    margin:auto;
}

.result-header{

    text-align:center;

    margin-bottom:40px;
}

.result-icon{

    width:95px;
    height:95px;

    border-radius:50%;

    background:#e8f5e9;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto auto 24px;

    font-size:48px;

    color:#2e7d32;

    font-weight:bold;
}

.result-title{

    font-size:54px;

    color:#b71c1c;

    margin-bottom:12px;
}

.result-subtitle{

    color:#666;

    font-size:18px;
}

/* =========================
   BOX
========================= */

.result-box,
.booking-box,
.summary-box{

    background:#fafafa;

    border:1px solid #eee;

    border-radius:24px;

    padding:30px;

    margin-bottom:24px;
}

.result-box h3,
.booking-box h3,
.summary-box h3{

    color:#c41414;

    margin-bottom:22px;

    font-size:24px;
}

/* =========================
   DETAIL
========================= */

.detail-list{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.detail-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding-bottom:14px;

    border-bottom:1px dashed #ddd;
}

.detail-item:last-child{

    border-bottom:none;
}

.detail-label{

    font-weight:700;

    color:#222;
}

.detail-value{

    color:#555;

    text-align:right;
}

/* =========================
   BADGE
========================= */

.badge,
.layanan-tag{

    display:inline-flex;

    align-items:center;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    margin:4px;
}

.badge{

    background:#f2f2f2;

    color:#444;
}

.layanan-tag{

    background:#fff1f1;

    border:1px solid #ffd4d4;

    color:#c41414;
}

.layanan-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

/* =========================
   GROUP
========================= */

.group-item{

    background:#fff5f5;

    border:1px solid #ffd6d6;

    border-radius:18px;

    padding:20px;

    margin-bottom:14px;

    line-height:1.9;
}

.group-item strong{

    color:#c41414;

    font-size:18px;
}

/* =========================
   INFO BOX
========================= */

.info-box{

    background:#eef6ff;

    border:1px solid #bbdefb;

    border-radius:20px;

    padding:26px;

    line-height:1.9;

    margin-bottom:24px;
}

.info-box h3{

    color:#1565c0;

    margin-bottom:14px;
}

/* =========================
   SCREENSHOT
========================= */

.screenshot-box{

    background:#fff8e1;

    border:1px solid #ffe082;

    border-radius:20px;

    padding:24px;

    line-height:1.9;

    margin-top:20px;
}

.screenshot-box strong{

    color:#795548;
}

/* =========================
   FILTER
========================= */

.filter-box{

    display:flex;

    gap:14px;

    align-items:center;

    flex-wrap:wrap;

    margin-bottom:30px;
}

.filter-box select{

    min-width:180px;

    margin-bottom:0;
}

.filter-btn{

    width:auto;

    padding:16px 28px;
}

/* =========================
   TABLE
========================= */

.table-wrapper{
    overflow-x:auto;
}

table{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:20px;

    background:white;
}

table th{

    background:#c41414;

    color:white;

    padding:18px;

    text-align:left;

    font-size:14px;
}

table td{

    padding:18px;

    border-bottom:1px solid #eee;

    vertical-align:top;

    font-size:14px;
}

table tr:hover{

    background:#fafafa;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.grid-2,
.grid-3,
.layanan-grid{

    grid-template-columns:1fr;
}

.card,
.dashboard-card{

    padding:28px;
}

.title h1{

    font-size:38px;
}

.result-title{

    font-size:40px;
}

.detail-item{

    flex-direction:column;

    align-items:flex-start;
}

.detail-value{

    text-align:left;
}

}
.layanan-card{
    overflow:hidden;
}

.layanan-card input[type="checkbox"]{
    margin-bottom:14px;
    cursor:pointer;
}

button{
    cursor:pointer;
}

button:disabled{
    opacity:.6;
    cursor:not-allowed;
}