/* =====================================================================
   Khusus subdomain publik (daftar.nsi-parking.id) - tambahan di atas
   style.css utama dashboard admin, supaya branding tetap konsisten
   tapi ada elemen yang memang cuma dibutuhkan di sini.
   ===================================================================== */

.public-choice {
    display: block;
    width: 100%;
    text-align: left;
    background: var(--color-bg, #F5F7F5);
    border: 1px solid var(--color-border, #E1E6E2);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: border-color .15s, transform .1s;
}
.public-choice:hover { border-color: var(--color-accent, #C9A227); }
.public-choice:active { transform: scale(0.99); }

.public-choice__title {
    font-weight: 700;
    font-size: 15.5px;
    color: var(--color-primary, #1F4B3F);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.public-choice__title svg { flex-shrink: 0; opacity: .5; }

.public-choice__desc {
    font-size: 13px;
    color: var(--color-text-muted, #6B7570);
    margin-top: 3px;
}

/* Kotak konfirmasi No. HP - sengaja dibuat menonjol supaya benar2 diperhatikan
   sebelum data final terkirim, ini bagian paling penting di step konfirmasi. */
.confirm-box {
    background: #FFFBEA;
    border: 1.5px solid var(--color-accent, #C9A227);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
}
.confirm-box__label {
    font-size: 12.5px;
    color: var(--color-text-muted, #6B7570);
    text-transform: uppercase;
    letter-spacing: .03em;
    font-weight: 600;
}
.confirm-box__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary, #1F4B3F);
    margin-top: 2px;
    word-break: break-word;
}

.confirm-summary {
    background: var(--color-bg, #F5F7F5);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
}
.confirm-summary dt { font-size: 12px; color: var(--color-text-muted, #6B7570); margin-top: 8px; }
.confirm-summary dt:first-child { margin-top: 0; }
.confirm-summary dd { font-size: 14px; font-weight: 600; color: var(--color-primary, #1F4B3F); margin: 0; }

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}
.step-indicator__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-border, #E1E6E2);
}
.step-indicator__dot.is-active { background: var(--color-accent, #C9A227); width: 20px; border-radius: 4px; }
.step-indicator__dot.is-done { background: var(--color-primary, #1F4B3F); }

.success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: #E8F3EC;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.back-link {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: var(--color-text-muted, #6B7570);
    text-decoration: none;
}
.back-link:hover { color: var(--color-primary, #1F4B3F); }
