/* ==================== RESET & BASE ==================== */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, sans-serif; }
:root {
--primary: #0093E9;
--primary-dark: #0077b6;
--primary-light: #80D0C7;
--secondary: #6a1b9a;
--success: #4caf50;
--success-dark: #388e3c;
--warning: #ff9800;
--danger: #f44336;
--info: #2196f3;
--whatsapp: #25D366;
--whatsapp-dark: #1ebe57;
--text: #333;
--text-light: #666;
--text-muted: #888;
--bg: #f8f9fa;
--border: #e0e0e0;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
--shadow: 0 4px 12px rgba(0,0,0,0.1);
--shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
--radius-sm: 6px;
--radius: 10px;
--radius-lg: 16px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
min-height: 100vh;
padding: 20px;
display: flex;
justify-content: center;
align-items: flex-start;
-webkit-font-smoothing: antialiased;
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-container {
position: fixed;
top: 20px;
right: 20px;
z-index: 99999;
display: flex;
flex-direction: column;
gap: 10px;
pointer-events: none;
max-width: calc(100vw - 40px);
}
.toast {
background: white;
padding: 14px 18px;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
gap: 12px;
min-width: 280px;
max-width: 400px;
pointer-events: auto;
animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border-left: 4px solid var(--primary);
position: relative;
overflow: hidden;
}
.toast::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: var(--primary);
animation: toastProgress 3s linear forwards;
}
.toast.success { border-left-color: var(--success); }
.toast.success::before { background: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.error::before { background: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.warning::before { background: var(--warning); }
.toast-icon {
font-size: 24px;
flex-shrink: 0;
}
.toast-content {
flex: 1;
}
.toast-title {
font-weight: 600;
font-size: 14px;
color: var(--text);
margin-bottom: 2px;
}
.toast-message {
font-size: 13px;
color: var(--text-light);
}
.toast-close {
background: none;
border: none;
font-size: 18px;
color: var(--text-muted);
cursor: pointer;
padding: 4px;
line-height: 1;
}
.toast-close:hover { color: var(--text); }
.toast.hiding { animation: toastSlideOut 0.3s ease forwards; }
@keyframes toastSlideIn {
from { transform: translateX(400px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes toastSlideOut {
from { transform: translateX(0); opacity: 1; }
to { transform: translateX(400px); opacity: 0; }
}
@keyframes toastProgress {
from { width: 100%; }
to { width: 0%; }
}

/* ==================== FORM CONTAINER ==================== */
.form-container {
background: #fff;
width: 100%;
max-width: 650px;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
overflow: hidden;
margin: 20px 0;
animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

/* ==================== HEADER ==================== */
.form-header {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 30px 25px;
text-align: center;
position: relative;
overflow: hidden;
}
.header-decoration {
position: absolute;
top: -50%;
right: -20%;
width: 300px;
height: 300px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
pointer-events: none;
}
.form-header h2 {
margin-bottom: 8px;
font-size: 24px;
position: relative;
}
.form-header p {
font-size: 14px;
opacity: 0.95;
position: relative;
}
.header-stats {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
position: relative;
flex-wrap: wrap;
}
.header-stat {
background: rgba(255,255,255,0.2);
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
backdrop-filter: blur(10px);
}

/* ==================== PROGRESS BAR PREMIUM ==================== */
.progress-container {
padding: 20px 25px;
background: var(--bg);
border-bottom: 1px solid var(--border);
}
.progress-bar {
height: 6px;
background: #e0e0e0;
border-radius: 10px;
overflow: hidden;
margin-bottom: 20px;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
border-radius: 10px;
transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.progress-fill::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.progress-steps {
display: flex;
justify-content: space-between;
position: relative;
}
.progress-steps::before {
content: '';
position: absolute;
top: 16px;
left: 10%;
right: 10%;
height: 2px;
background: #e0e0e0;
z-index: 0;
}
.step-indicator {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
position: relative;
z-index: 1;
flex: 1;
}
.step-circle {
width: 32px;
height: 32px;
border-radius: 50%;
background: white;
border: 2px solid #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 13px;
color: var(--text-muted);
transition: var(--transition);
position: relative;
}
.step-number, .step-check {
position: absolute;
transition: var(--transition);
}
.step-check {
opacity: 0;
transform: scale(0);
color: white;
}
.step-indicator.active .step-circle {
background: var(--primary);
border-color: var(--primary);
color: white;
box-shadow: 0 0 0 4px rgba(0, 147, 233, 0.2);
animation: pulse 2s infinite;
}
.step-indicator.completed .step-circle {
background: var(--success);
border-color: var(--success);
color: white;
}
.step-indicator.completed .step-number {
opacity: 0;
transform: scale(0);
}
.step-indicator.completed .step-check {
opacity: 1;
transform: scale(1);
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 4px rgba(0, 147, 233, 0.2); }
50% { box-shadow: 0 0 0 8px rgba(0, 147, 233, 0.1); }
}
.step-label {
font-size: 11px;
color: var(--text-muted);
font-weight: 500;
transition: var(--transition);
}
.step-indicator.active .step-label {
color: var(--primary);
font-weight: 600;
}
.step-indicator.completed .step-label {
color: var(--success);
}
.progress-text {
display: flex;
justify-content: space-between;
margin-top: 12px;
font-size: 12px;
color: var(--text-muted);
}
#progress-percent {
font-weight: 600;
color: var(--primary);
}

/* ==================== FORM BODY ==================== */
.form-body { padding: 25px; min-height: 400px; }
.form-step {
display: none;
animation: stepFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-step.active { display: block; }
@keyframes stepFadeIn {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}

/* ==================== STEP TITLE ==================== */
.step-title {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--bg);
}
.step-icon {
font-size: 36px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
width: 56px;
height: 56px;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow);
flex-shrink: 0;
}
.step-title h3 {
font-size: 20px;
color: var(--text);
margin-bottom: 2px;
}
.step-subtitle {
font-size: 13px;
color: var(--text-muted);
margin: 0;
}

/* ==================== FORM ELEMENTS ==================== */
.form-group { margin-bottom: 18px; position: relative; }
label {
display: block;
margin-bottom: 6px;
font-weight: 600;
color: var(--text);
font-size: 13px;
}
.required { color: var(--danger); }
.label-hint {
font-weight: normal;
color: var(--text-muted);
font-size: 11px;
display: block;
margin-top: 4px;
}
.input-wrapper {
position: relative;
display: flex;
align-items: center;
}
.input-icon {
position: absolute;
left: 12px;
font-size: 16px;
z-index: 1;
pointer-events: none;
}
.input-status {
position: absolute;
right: 12px;
font-size: 18px;
opacity: 0;
transform: scale(0);
transition: var(--transition);
}
.input-status.show {
opacity: 1;
transform: scale(1);
}
.input-status.valid { color: var(--success); }
.input-status.invalid { color: var(--danger); }
input, select, textarea {
width: 100%;
padding: 12px 40px 12px 40px;
border: 1.5px solid var(--border);
border-radius: var(--radius);
font-size: 14px;
transition: var(--transition);
background: white;
}
input:focus, select:focus, textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0, 147, 233, 0.1);
}
input.valid, textarea.valid {
border-color: var(--success);
background: #f1f8f4;
}
input.invalid, textarea.invalid {
border-color: var(--danger);
background: #fef5f5;
animation: shakeError 0.4s;
}
@keyframes shakeError {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
input:disabled { background: #f1f3f5; color: var(--text-muted); cursor: not-allowed; }
.textarea-wrapper { align-items: flex-start; }
.textarea-wrapper .input-icon { top: 14px; }
textarea { padding-left: 40px; resize: vertical; min-height: 80px; }
.field-counter {
display: block;
text-align: right;
font-size: 11px;
color: var(--text-muted);
margin-top: 4px;
}
.field-error {
display: block;
font-size: 12px;
color: var(--danger);
margin-top: 4px;
min-height: 16px;
animation: fadeIn 0.3s;
}
.field-error::before {
content: '⚠️ ';
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* ==================== INFO BOX ==================== */
.info-box {
background: #e8f5e9;
border-left: 4px solid var(--primary);
padding: 12px 15px;
border-radius: var(--radius-sm);
font-size: 13px;
color: #2e7d32;
margin-bottom: 15px;
line-height: 1.6;
}
.info-box strong { color: #1b5e20; }
.info-box.kombinasi {
background: #f3e5f5;
border-left-color: var(--secondary);
color: #4a148c;
}
.info-box.kombinasi strong { color: var(--secondary); }

.error-box {
background: #ffebee;
border-left: 4px solid var(--danger);
padding: 12px 15px;
border-radius: var(--radius-sm);
font-size: 13px;
color: #c62828;
margin-bottom: 15px;
display: none;
align-items: flex-start;
gap: 10px;
animation: slideDown 0.3s;
}
.error-box.show { display: flex; }
.error-icon { font-size: 20px; flex-shrink: 0; }
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}

/* ==================== PRICE DISPLAY ==================== */
.price-display {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 18px;
border-radius: var(--radius);
text-align: center;
margin-top: 15px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.price-display::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 200px;
height: 200px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}
.price-display.grand {
background: linear-gradient(135deg, var(--secondary), #ab47bc);
}
.price-label {
font-size: 12px;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
}
.price-amount {
font-size: 26px;
font-weight: bold;
margin-top: 5px;
position: relative;
}

/* ==================== LAYOUT ==================== */
.row { display: flex; gap: 12px; flex-wrap: wrap; }
.row .form-group { flex: 1; min-width: 0; }

/* ==================== BUTTONS ==================== */
.form-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 25px;
background: var(--bg);
border-top: 1px solid var(--border);
gap: 10px;
}
.footer-left, .footer-right {
display: flex;
gap: 10px;
align-items: center;
}
.footer-left { justify-content: flex-start; }
.footer-right { justify-content: flex-end; }

.btn-home, .btn-next, .btn-prev, .btn-proses {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 12px 20px;
border: none;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-decoration: none;
white-space: nowrap;
position: relative;
overflow: hidden;
min-height: 44px;
}
.btn-home {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
}
.btn-home:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-next {
background: var(--primary);
color: white;
}
.btn-next:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-prev {
background: #e9ecef;
color: var(--text);
}
.btn-prev:hover { background: #dee2e6; }
.btn-proses {
background: var(--whatsapp);
color: white;
}
.btn-proses:hover {
background: var(--whatsapp-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-proses:disabled {
background: #999;
cursor: not-allowed;
transform: none;
}
.btn-proses.loading .btn-text { opacity: 0.5; }
.btn-loader {
display: none;
width: 16px;
height: 16px;
border: 2px solid rgba(255,255,255,0.3);
border-top-color: white;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-left: 8px;
}
.btn-proses.loading .btn-loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Ripple effect */
.btn-home::after, .btn-next::after, .btn-proses::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255,255,255,0.5);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.btn-home:active::after,
.btn-next:active::after,
.btn-proses:active::after {
width: 300px;
height: 300px;
}

/* ==================== CHECKBOX & RADIO ==================== */
.checkbox-group {
display: flex;
align-items: center;
padding: 15px;
border: 2px solid var(--border);
border-radius: var(--radius);
cursor: pointer;
transition: var(--transition);
margin-bottom: 10px;
background: white;
}
.checkbox-group:hover {
border-color: var(--primary);
background: #f5fbff;
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}
.checkbox-group input { width: auto; margin-right: 12px; cursor: pointer; }
.checkbox-content {
display: flex;
align-items: center;
gap: 12px;
flex: 1;
}
.checkbox-icon {
font-size: 28px;
flex-shrink: 0;
}
.checkbox-group.checked {
border-color: var(--primary);
background: #e3f2fd;
}

.tenda-options {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 15px;
}
.radio-card {
display: block;
cursor: pointer;
transition: var(--transition);
}
.radio-card input { display: none; }
.radio-content {
display: flex;
align-items: center;
gap: 15px;
padding: 16px;
border: 2px solid var(--border);
border-radius: var(--radius);
background: white;
transition: var(--transition);
min-height: 70px;
}
.radio-card:hover .radio-content {
border-color: var(--primary);
background: #f5fbff;
transform: translateX(4px);
}
.radio-card input:checked + .radio-content {
border-color: var(--primary);
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
box-shadow: 0 4px 12px rgba(0, 147, 233, 0.2);
}
.radio-icon { font-size: 32px; flex-shrink: 0; }
.radio-text { flex: 1; }
.radio-text strong {
display: block;
font-size: 15px;
color: var(--text);
margin-bottom: 3px;
}
.radio-text span {
font-size: 12px;
color: var(--text-light);
}
.radio-price {
font-weight: bold;
color: var(--primary);
font-size: 14px;
white-space: nowrap;
}

/* ==================== DETAIL CARDS ==================== */
.detail-card {
background: var(--bg);
border-radius: var(--radius);
padding: 15px;
margin-top: 15px;
animation: slideDown 0.3s;
}
.kapal-info, .tenda-info {
background: white;
border-radius: var(--radius);
padding: 15px;
margin-bottom: 12px;
box-shadow: var(--shadow-sm);
}
.kapal-row, .tenda-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
border-bottom: 1px dashed var(--border);
font-size: 14px;
}
.kapal-row:last-child, .tenda-row:last-child { border-bottom: none; }
.kapal-row.highlight, .tenda-row.highlight {
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
margin: 8px -15px -15px;
padding: 12px 15px;
border-radius: 0 0 var(--radius) var(--radius);
color: var(--primary);
font-size: 15px;
font-weight: 600;
}
.kapal-breakdown, .tenda-breakdown {
background: #fff8e1;
border-radius: var(--radius);
padding: 12px;
font-size: 12px;
}
.kapal-breakdown h5, .tenda-breakdown h5 {
font-size: 13px;
color: var(--text);
margin-bottom: 8px;
}
.kapal-item, .tenda-item {
display: flex;
justify-content: space-between;
padding: 5px 0;
border-bottom: 1px dashed var(--border);
}
.kapal-item:last-child, .tenda-item:last-child { border-bottom: none; }

/* ==================== KETENTUAN ==================== */
.ketentuan-section {
background: #fafafa;
border: 2px solid #ffcdd2;
border-radius: var(--radius);
padding: 18px;
margin-top: 20px;
}
.ketentuan-section h4 {
color: #c62828;
margin-bottom: 12px;
font-size: 15px;
}
.ketentuan-box {
background: white;
border: 1.5px solid var(--border);
border-radius: var(--radius);
padding: 15px 15px 15px 40px;
margin-bottom: 15px;
max-height: 280px;
overflow-y: auto;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.ketentuan-box::-webkit-scrollbar { width: 8px; }
.ketentuan-box::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.ketentuan-box::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.ketentuan-list {
list-style: none;
counter-reset: ketentuan-counter;
margin: 0;
padding: 0;
}
.ketentuan-list li {
counter-increment: ketentuan-counter;
position: relative;
padding: 12px 0 12px 35px;
border-bottom: 1px dashed var(--border);
}
.ketentuan-list li:last-child { border-bottom: none; }
.ketentuan-list li::before {
content: counter(ketentuan-counter);
position: absolute;
left: 0;
top: 12px;
width: 24px;
height: 24px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
}
.ketentuan-list li strong {
display: block;
font-size: 13px;
color: var(--text);
margin-bottom: 4px;
}
.ketentuan-list li p {
font-size: 12px;
color: var(--text-light);
line-height: 1.5;
margin: 0;
}
.checkbox-persetujuan {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 15px;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
border: 2px solid var(--primary);
border-radius: var(--radius);
cursor: pointer;
transition: var(--transition);
margin-top: 15px;
min-height: 44px;
}
.checkbox-persetujuan:hover {
background: linear-gradient(135deg, #bbdefb, #90caf9);
transform: translateY(-2px);
}
.checkbox-persetujuan input[type="checkbox"] {
width: 22px;
height: 22px;
margin-top: 2px;
cursor: pointer;
accent-color: var(--primary);
flex-shrink: 0;
}
.persetujuan-text { flex: 1; }
.persetujuan-text strong {
display: block;
font-size: 14px;
color: #0d47a1;
margin-bottom: 4px;
}
.persetujuan-text span {
display: block;
font-size: 12px;
color: #1565c0;
}
.checkbox-persetujuan.checked {
background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
border-color: var(--success);
}
.checkbox-persetujuan.shake {
animation: shakeError 0.5s;
border-color: var(--danger) !important;
}

/* ==================== SUMMARY BOX ==================== */
.summary-box {
background: var(--bg);
padding: 20px;
border-radius: var(--radius);
margin-bottom: 15px;
}
.summary-section {
margin-bottom: 15px;
padding-bottom: 12px;
border-bottom: 1px dashed var(--border);
}
.summary-section:last-child { border-bottom: none; }
.summary-section h4 {
color: var(--primary);
margin-bottom: 10px;
font-size: 15px;
display: flex;
align-items: center;
gap: 8px;
}
.summary-row {
display: flex;
justify-content: space-between;
padding: 5px 0;
font-size: 13px;
gap: 10px;
flex-wrap: wrap;
}
.summary-total {
background: linear-gradient(135deg, var(--secondary), #ab47bc);
color: white;
padding: 15px;
border-radius: var(--radius);
display: flex;
justify-content: space-between;
font-size: 16px;
font-weight: bold;
margin-top: 10px;
box-shadow: var(--shadow);
}

/* ==================== 💳 INFO REKENING ==================== */
.rekening-section {
background: linear-gradient(135deg, #fff9c4, #fff59d);
border: 2px solid #fbc02d;
border-radius: var(--radius);
padding: 20px;
margin: 20px 0;
box-shadow: var(--shadow);
}
.rekening-section h4 {
color: #f57f17;
font-size: 16px;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 8px;
}
.rekening-card {
background: white;
border: 1.5px solid #fdd835;
border-radius: var(--radius);
padding: 15px;
margin-bottom: 12px;
transition: var(--transition);
}
.rekening-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.rekening-card.primary {
border-color: #f57f17;
border-width: 2px;
background: linear-gradient(135deg, #fffde7, #fff9c4);
}
.rekening-label {
display: inline-block;
background: #f57f17;
color: white;
padding: 3px 10px;
border-radius: 12px;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.rekening-label.secondary { background: #9e9e9e; }
.rekening-bank {
font-size: 14px;
font-weight: bold;
color: var(--text);
margin-bottom: 8px;
}
.rekening-nomor-box {
display: flex;
align-items: center;
gap: 10px;
background: #f5f5f5;
padding: 12px 15px;
border-radius: var(--radius);
margin-bottom: 8px;
border: 1px dashed #bdbdbd;
}
.rekening-nomor {
flex: 1;
font-family: 'Courier New', monospace;
font-size: 18px;
font-weight: bold;
color: var(--primary);
letter-spacing: 2px;
word-break: break-all;
}
.btn-copy {
padding: 8px 14px;
background: var(--primary);
color: white;
border: none;
border-radius: var(--radius-sm);
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
white-space: nowrap;
display: flex;
align-items: center;
gap: 5px;
min-height: 44px;
}
.btn-copy:hover { background: var(--primary-dark); }
.btn-copy.copied { background: var(--success); }
.rekening-an {
font-size: 13px;
color: var(--text-light);
margin-top: 5px;
}
.rekening-an strong { color: var(--text); }
.rekening-catatan {
background: #fff3e0;
border-left: 3px solid var(--warning);
padding: 10px 12px;
border-radius: var(--radius-sm);
font-size: 12px;
color: #e65100;
margin-top: 15px;
line-height: 1.5;
}
.rekening-langkah {
background: white;
border-radius: var(--radius);
padding: 12px 15px;
margin-top: 12px;
}
.rekening-langkah h5 {
color: #f57f17;
font-size: 13px;
margin-bottom: 8px;
}
.rekening-langkah ol {
margin: 0;
padding-left: 20px;
font-size: 12px;
color: var(--text-light);
line-height: 1.6;
}
.rekening-langkah ol li { margin-bottom: 4px; }
.rekening-langkah ol li strong { color: var(--text); }

/* ==================== SUCCESS BOX ==================== */
.success-box {
background: linear-gradient(135deg, var(--success), var(--success-dark));
color: white;
padding: 30px 25px;
border-radius: var(--radius);
text-align: center;
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.success-animation {
margin-bottom: 15px;
}
.success-circle {
width: 80px;
height: 80px;
margin: 0 auto;
position: relative;
}
.success-circle-bg {
stroke: rgba(255,255,255,0.3);
stroke-width: 2;
}
.success-check-path {
stroke: white;
stroke-width: 4;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: drawCheck 0.6s 0.3s ease forwards;
}
@keyframes drawCheck {
to { stroke-dashoffset: 0; }
}
.success-box h3 {
font-size: 22px;
margin-bottom: 8px;
animation: fadeInUp 0.5s 0.6s both;
}
.success-box p {
font-size: 14px;
opacity: 0.95;
animation: fadeInUp 0.5s 0.8s both;
}
.booking-id-display {
display: inline-block;
background: rgba(255,255,255,0.25);
color: white;
padding: 10px 24px;
border-radius: 25px;
font-size: 18px;
font-weight: bold;
margin-top: 15px;
letter-spacing: 2px;
border: 2px dashed rgba(255,255,255,0.5);
animation: fadeInUp 0.5s 1s both;
}

/* ==================== TICKET (PREMIUM) ==================== */
.ticket-container {
background: white;
border: 2px dashed var(--primary);
border-radius: var(--radius);
padding: 0;
margin-bottom: 15px;
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
}
.ticket-header {
text-align: center;
padding: 25px 20px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
position: relative;
}
.ticket-header::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
right: 0;
height: 20px;
background: radial-gradient(circle at 10px 0, transparent 8px, white 9px);
background-size: 20px 20px;
background-repeat: repeat-x;
}
.ticket-header h2 {
color: white;
font-size: 22px;
margin-bottom: 5px;
}
.ticket-header p {
font-size: 12px;
color: rgba(255,255,255,0.95);
}
.ticket-id {
display: inline-block;
background: white;
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
margin-top: 10px;
box-shadow: var(--shadow-sm);
}
.ticket-status {
position: absolute;
top: 15px;
right: 15px;
padding: 8px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: var(--shadow);
z-index: 10;
animation: pulse 2s infinite;
}
.ticket-status.unpaid { background: var(--warning); color: white; }
.ticket-status.paid { background: var(--success); color: white; }
.ticket-watermark {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-30deg);
font-size: 70px;
font-weight: bold;
color: rgba(255, 152, 0, 0.08);
pointer-events: none;
white-space: nowrap;
z-index: 1;
letter-spacing: 8px;
}
.ticket-section {
margin: 0 20px;
padding: 15px 0;
border-bottom: 1px dashed var(--border);
position: relative;
z-index: 2;
}
.ticket-section:last-of-type { border-bottom: none; }
.ticket-section h4 {
color: var(--primary);
font-size: 14px;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.ticket-row {
display: flex;
justify-content: space-between;
padding: 5px 0;
font-size: 13px;
gap: 10px;
flex-wrap: wrap;
}
.ticket-row strong { color: var(--text); }
.ticket-total {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 18px 20px;
display: flex;
justify-content: space-between;
font-size: 17px;
font-weight: bold;
margin: 15px 0 0;
position: relative;
z-index: 2;
}
.ticket-footer {
margin: 0 20px;
padding: 15px 0;
border-top: 2px dashed var(--primary);
text-align: center;
font-size: 11px;
color: var(--text-muted);
position: relative;
z-index: 2;
}

/* ==================== TICKET ACTIONS ==================== */
.ticket-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 15px;
}
.btn-action {
flex: 1;
min-width: 150px;
padding: 14px;
color: white;
border: none;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 48px;
position: relative;
overflow: hidden;
}
.btn-action:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-download { background: var(--primary); }
.btn-download:hover { background: var(--primary-dark); }
.btn-wa { background: var(--whatsapp); }
.btn-wa:hover { background: var(--whatsapp-dark); }
.btn-booking-baru { background: var(--warning); }
.btn-booking-baru:hover { background: #f57c00; }

/* ==================== SKELETON LOADER ==================== */
.skeleton-loader {
padding: 20px;
}
.skeleton-line {
height: 14px;
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: skeletonShimmer 1.5s infinite;
border-radius: var(--radius-sm);
margin-bottom: 12px;
}
.skeleton-line:nth-child(1) { width: 80%; }
.skeleton-line:nth-child(2) { width: 60%; }
.skeleton-line:nth-child(3) { width: 70%; }
@keyframes skeletonShimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 600px) {
body { padding: 10px; }
.form-body { padding: 18px; }
.form-header { padding: 25px 18px; }
.form-header h2 { font-size: 20px; }
.header-stats { gap: 8px; }
.header-stat { font-size: 11px; padding: 5px 10px; }

/* Progress bar mobile */
.progress-container { padding: 15px; }
.step-label { font-size: 10px; }
.step-circle { width: 28px; height: 28px; font-size: 12px; }
.step-icon { font-size: 28px; width: 48px; height: 48px; }
.step-title h3 { font-size: 17px; }

/* Footer mobile */
.form-footer {
padding: 12px;
flex-wrap: wrap;
gap: 8px;
}
.footer-left, .footer-right {
flex: 1 1 calc(50% - 4px);
min-width: 120px;
}
.btn-home, .btn-next, .btn-prev, .btn-proses {
flex: 1;
min-width: 0;
padding: 10px 12px;
font-size: 13px;
min-height: 44px;
}
.btn-text { font-size: 13px; }

/* Form elements */
.row { gap: 8px; }
.row .form-group { flex: 1 1 calc(50% - 4px); min-width: 120px; }
input, select, textarea { padding: 12px 36px 12px 36px; font-size: 14px; }

/* Radio & checkbox */
.radio-content { padding: 12px; gap: 10px; }
.radio-icon { font-size: 26px; }
.radio-text strong { font-size: 14px; }
.radio-price { font-size: 12px; }

/* Ticket */
.ticket-actions { flex-direction: column; }
.btn-action { width: 100%; min-width: 0; }
.ticket-container { padding: 0; }
.ticket-header h2 { font-size: 18px; }
.ticket-watermark { font-size: 45px; }
.ticket-status { font-size: 10px; padding: 6px 10px; top: 10px; right: 10px; }

/* Ketentuan */
.ketentuan-box { max-height: 240px; padding: 12px 12px 12px 35px; }
.ketentuan-list li { padding: 10px 0 10px 30px; }
.ketentuan-list li::before { width: 20px; height: 20px; font-size: 11px; }
.checkbox-persetujuan { padding: 12px; }
.checkbox-persetujuan input[type="checkbox"] { width: 20px; height: 20px; }
.persetujuan-text strong { font-size: 13px; }
.persetujuan-text span { font-size: 11px; }

/* Rekening */
.rekening-section { padding: 15px; }
.rekening-nomor { font-size: 15px; letter-spacing: 1px; }
.rekening-nomor-box { flex-direction: column; gap: 8px; }
.btn-copy { width: 100%; justify-content: center; }

/* Toast mobile */
.toast-container {
top: 10px;
right: 10px;
left: 10px;
}
.toast {
min-width: 0;
max-width: 100%;
}
}

/* ==================== PRINT (PDF Download) ==================== */
@media print {
body {
background: white !important;
padding: 0 !important;
display: block !important;
}
.form-container {
box-shadow: none !important;
max-width: 100% !important;
border-radius: 0 !important;
margin: 0 !important;
}
.form-header, .progress-container, .form-footer,
.form-step:not(#step-6), .toast-container {
display: none !important;
}
#step-6 {
display: block !important;
}
.form-body { padding: 0 !important; }
.ticket-container {
box-shadow: none !important;
page-break-inside: avoid;
}
}