* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  color: #1e293b;
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* ===== CARD UTAMA ===== */
.card {
  background: white;
  border-radius: 24px;
  box-shadow:
    0 20px 35px -8px rgba(0, 0, 0, 0.07),
    0 8px 20px -6px rgba(0, 0, 0, 0.05);
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ===== BANNER MUDIK DITON ===== */
.banner-diton {
  background: linear-gradient(145deg, #0a1f2e, #1d3b4f);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: white;
  box-shadow: 0 12px 25px -6px rgba(10, 31, 46, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.banner-diton::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.banner-diton::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-title span {
  background: #ffcd3c;
  color: #0a1f2e;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 205, 60, 0.3);
}

.banner-sub {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.banner-tag {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.banner-tag i {
  color: #ffcd3c;
}

/* Tombol KUOTA TERBATAS sebagai link */
.banner-quota-link {
  background: #ffcd3c;
  color: #0a1f2e !important;
  padding: 8px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(255, 205, 60, 0.25);
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-quota-link:hover {
  background: #e6b82e;
  transform: scale(1.02);
  color: #0a1f2e !important;
  box-shadow: 0 10px 20px rgba(255, 205, 60, 0.4);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ===== KUOTA CARD ===== */
.kuota-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #f9fcff;
  border: 1px solid #dde5ed;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 32px;
  justify-content: space-around;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
  scroll-margin-top: 20px;
}

.kuota-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 12px 24px;
  border-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  min-width: 120px;
}

.kuota-info span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5e6f8b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kuota-info i {
  color: #0a3b5c;
  font-size: 14px;
}

.kuota-info strong {
  font-size: 24px;
  font-weight: 700;
  color: #0a3b5c;
  line-height: 1.2;
}

/* ===== HEADER ===== */
.booking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9edf4;
}

.booking-header i {
  font-size: 32px;
  color: #0a3b5c;
  background: linear-gradient(145deg, #0a3b5c, #1d5a7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-header h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0a1e2f;
  margin: 0;
}

.booking-header span {
  font-weight: 400;
  color: #5e6f8b;
  font-size: 15px;
  margin-left: 8px;
}

/* ===== FORM TITLE ===== */
.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a3b5c;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffcd3c;
  display: inline-block;
}

/* ===== INFO SECTION (SYARAT & KETENTUAN) ===== */
.info-section {
  margin-bottom: 12px;
}

.info-card {
  background: #f9fcff;
  border: 1px solid #e2eaf2;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s;
}

.info-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.info-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0a3b5c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #dde5ed;
  padding-bottom: 12px;
}

.info-card h4 i {
  color: #ffcd3c;
  font-size: 24px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #2d3a4f;
  line-height: 1.6;
}

.info-list li i {
  color: #0a3b5c;
  font-size: 16px;
  margin-top: 3px;
  min-width: 20px;
}

/* Route list full width */
.route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-left: 0;
  width: 100%;
}

.route-item {
  background: #eef4f9;
  border-radius: 40px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  color: #0a2a40;
  display: block;
  width: 100%;
}

/* ===== SECTION TITLE ===== */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.section-title i {
  font-size: 20px;
  color: #0a3b5c;
  background: #eef2f6;
  padding: 8px;
  border-radius: 12px;
}

.section-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e2a44;
  margin: 0;
}

/* ===== PEMBERITAHUAN PENDAFTARAN BELUM DIBUKA ===== */
.alert-info-custom {
  background: #e0f2fe;
  border-radius: 20px;
  padding: 16px 24px;
  margin-bottom: 24px;
  border: 1px solid #b8dff0;
  color: #0369a1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-info-custom i {
  font-size: 24px;
}

/* ===== FORM GRID ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4b5b73;
  display: flex;
  align-items: center;
  gap: 6px;
}

label i {
  font-size: 14px;
  color: #7c8ba0;
}

/* ===== INPUT DASAR ===== */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  background: white;
  transition: all 0.2s ease;
  color: #1e293b;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0a3b5c;
  box-shadow: 0 0 0 4px rgba(10, 59, 92, 0.08);
}

/* ===== SELECT2 CUSTOM STYLES ===== */
.select2-container--default .select2-selection--single {
  height: auto;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 16px 12px 46px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  background: white;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #1e293b;
  padding: 0;
  line-height: 1.5;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #94a3b8;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 16px;
  top: 0;
  width: 16px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #64748b transparent transparent transparent;
  border-width: 5px 4px 0 4px;
  margin-left: -4px;
  margin-top: -2px;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #64748b transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--single:hover {
  border-color: #a0b8cc;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus
  .select2-selection--single {
  outline: none;
  border-color: #0a3b5c;
  box-shadow: 0 0 0 4px rgba(10, 59, 92, 0.08);
}

/* Dropdown styling */
.select2-dropdown {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.select2-results__option {
  padding: 10px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.select2-results__option--highlighted {
  background-color: #0a3b5c !important;
  color: white;
}

.select2-results__option[aria-selected="true"] {
  background-color: #eef2f6;
  color: #1e293b;
}

/* Ikon di dalam select menggunakan elemen terpisah */
.select-wrapper {
  position: relative;
}

.select-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

/* ===== RADIO & CHECKBOX ===== */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid #eef2f6;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0a3b5c;
  cursor: pointer;
}

.radio-option label,
.checkbox-option label {
  text-transform: none;
  font-weight: 500;
  font-size: 15px;
  color: #334155;
  letter-spacing: normal;
  cursor: pointer;
}

/* ===== PASSENGER CARD ===== */
.passenger-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
}

.passenger-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.passenger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #dce3ec;
}

.passenger-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0a3b5c;
}

.passenger-title i {
  font-size: 20px;
  background: #eef6ff;
  padding: 8px;
  border-radius: 12px;
  color: #0a3b5c;
}

/* ===== TOMBOL HAPUS ===== */
.btn-remove {
  background: none;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-remove i {
  font-size: 14px;
}

.btn-remove:hover {
  background: #fef2f2;
  border-color: #f87171;
  color: #b91c1c;
}

/* ===== TOMBOL TAMBAH ===== */
.btn-add {
  background: white;
  border: 1.5px dashed #94a3b8;
  color: #1e3a5f;
  padding: 14px 24px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-add i {
  font-size: 16px;
}

.btn-add:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #0a3b5c;
  border-style: solid;
}

.btn-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #cbd5e1;
}

/* ===== UPLOAD KTP ELEGAN ===== */
.ktp-upload-area {
  position: relative;
  width: 100%;
}

.ktp-upload-area input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  z-index: -1;
}

.ktp-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 110px;
  background: linear-gradient(145deg, #f9fcff, #f2f6fd);
  border: 2px dashed #bfd4e2;
  border-radius: 20px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.02, 0.8, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  color: #1e3b5c;
  text-align: center;
}

.ktp-upload-label:hover {
  border-color: #0a3b5c;
  background: linear-gradient(145deg, #ffffff, #f5faff);
  box-shadow: 0 8px 20px rgba(10, 59, 92, 0.08);
  transform: scale(1.01);
}

.ktp-upload-label i {
  font-size: 32px;
  color: #0a3b5c;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(10, 59, 92, 0.1);
  transition: transform 0.2s;
}

.ktp-upload-label:hover i {
  transform: translateY(-2px);
}

.upload-text {
  font-weight: 600;
  font-size: 15px;
  color: #0a3b5c;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: #6b7c93;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.upload-hint i {
  font-size: 12px;
  color: #8099aa;
  margin-bottom: 0;
  text-shadow: none;
}

.ktp-upload-label.file-selected {
  border-style: solid;
  border-color: #0a3b5c;
  background: linear-gradient(145deg, #edf6ff, #e5f0fd);
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
}

.ktp-upload-label.file-selected i {
  font-size: 24px;
  margin-bottom: 0;
  color: #0f4a6f;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.file-name {
  font-weight: 600;
  font-size: 14px;
  color: #1e3a5f;
  background: rgba(10, 59, 92, 0.06);
  padding: 6px 14px;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  border: 1px solid rgba(10, 59, 92, 0.1);
}

.btn-clear-file {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccdbe9;
  color: #4a6479;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.btn-clear-file:hover {
  background: white;
  border-color: #b91c1c;
  color: #b91c1c;
}

.btn-clear-file i {
  font-size: 12px;
  margin-bottom: 0;
  color: currentColor;
}

.file-selected .upload-text,
.file-selected .upload-hint {
  display: none;
}

/* ===== CHECKBOX SYARAT & KETENTUAN ===== */
.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbfe;
  padding: 18px 24px;
  border-radius: 24px;
  margin: 0 0 16px 0;
  border: 1px solid #e0eaf1;
  transition: all 0.2s;
}

.terms-checkbox:last-child {
  margin-bottom: 0;
}

.terms-checkbox:hover {
  background: #f0f6fc;
  border-color: #a0c0d4;
}

.terms-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #0a3b5c;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.terms-checkbox label {
  text-transform: none;
  font-weight: 500;
  font-size: 15px;
  color: #1e3a5f;
  letter-spacing: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.terms-checkbox i {
  color: #0a3b5c;
  font-size: 16px;
}

/* ===== TOMBOL SUBMIT ===== */
.btn-submit {
  width: 100%;
  background: linear-gradient(165deg, #0a3b5c, #1e5a7a);
  color: white;
  border: none;
  padding: 18px 28px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(10, 59, 92, 0.2);
}

.btn-submit i {
  font-size: 20px;
}

.btn-submit:hover {
  background: linear-gradient(165deg, #0e4a6e, #256a8a);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 59, 92, 0.25);
}

/* ===== TOMBOL WHATSAPP CARD ===== */
.wa-card {
  background: #e8f5e9;
  border-left: 5px solid #25d366;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
}

.wa-card i {
  font-size: 36px;
  color: #25d366;
}

.wa-card .wa-text h5 {
  margin: 0;
  font-weight: 600;
  color: #1e3a5f;
  font-size: 18px;
}

.wa-card .wa-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #2d3a4f;
}

.wa-card .wa-link {
  background: #25d366;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  transition: background 0.2s;
}

.wa-card .wa-link i {
  font-size: 36px;
  color: white;
}

.wa-card .wa-link:hover {
  background: #20b859;
  color: white;
}

/* ===== SOCIAL MEDIA LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9edf4;
}

.social-links a {
  color: #0a3b5c;
  font-size: 28px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0f4fa;
  text-decoration: none;
}

.social-links a:hover {
  color: #ffcd3c;
  background: #0a3b5c;
  transform: translateY(-3px);
}

/* ===== FOOTER NOTE ===== */
.footer-note {
  background: linear-gradient(145deg, #f9fcff, #eef4fa);
  border-radius: 60px;
  padding: 20px 30px;
  margin-top: 24px;
  color: #0a3b5c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #d0e0eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.footer-note i {
  font-size: 24px;
  color: #ffcd3c;
}

/* ===== TOMBOL PEMBATALAN FULL WIDTH ===== */
.btn-cancel {
  width: 100%;
  background: #fee2e2;
  border: 1.5px solid #f87171;
  color: #b91c1c;
  padding: 18px 28px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.1);
}

.btn-cancel:hover {
  background: #fecaca;
  border-color: #ef4444;
  color: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(239, 68, 68, 0.2);
}

.btn-cancel i {
  font-size: 20px;
}

/* ===== TOMBOL MAP ===== */
.btn-map {
  background: white;
  border: 1.5px solid #0a3b5c;
  color: #0a3b5c;
  padding: 12px 24px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(10, 59, 92, 0.05);
}

.btn-map:hover {
  background: #0a3b5c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 59, 92, 0.15);
}

/* ===== LAINNYA ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.separator {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e7ef, transparent);
  margin: 24px 0;
}

.facilities-section {
  background: #fafcff;
  border-radius: 24px;
  padding: 24px;
  margin: 24px 0 16px;
  border: 1px solid #e9eff6;
}

.note {
  text-align: center;
  margin-top: 24px;
  color: #6b7a8f;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #e9edf4;
  padding-top: 24px;
}

.price-tag {
  color: #0a3b5c;
  font-weight: 600;
  margin-left: 4px;
}

.identity-hint {
  font-size: 12px;
  color: #6b7c93;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== PERBAIKAN TAMPILAN MOBILE ===== */
@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }

  .card {
    padding: 20px;
  }

  .banner-diton {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .banner-title {
    font-size: 20px;
  }

  .banner-tag {
    font-size: 13px;
    padding: 6px 14px;
  }

  .banner-quota-link {
    font-size: 16px;
    padding: 8px 20px;
    align-self: stretch;
    justify-content: center;
  }

  .kuota-card {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .kuota-info {
    padding: 10px 16px;
    min-width: auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .kuota-info span {
    font-size: 12px;
  }

  .kuota-info strong {
    font-size: 20px;
  }

  .info-card {
    padding: 16px;
  }

  .info-card h4 {
    font-size: 18px;
  }

  .info-list li {
    font-size: 13px;
  }

  .route-item {
    font-size: 12px;
    padding: 6px 12px;
    white-space: normal;
    word-break: break-word;
  }

  .booking-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .booking-header h2 {
    font-size: 22px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }

  .section-title h3 {
    font-size: 16px;
  }

  .form-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .input-wrapper input,
  .input-wrapper textarea {
    padding: 12px 16px 12px 40px;
    font-size: 14px;
  }

  .select2-container--default .select2-selection--single {
    padding: 10px 16px 10px 40px;
    font-size: 14px;
  }

  .select-wrapper i {
    left: 12px;
    font-size: 14px;
  }

  .radio-group,
  .checkbox-group {
    padding: 12px 16px;
    gap: 12px;
  }

  .radio-option label,
  .checkbox-option label {
    font-size: 14px;
  }

  .passenger-card {
    padding: 16px;
  }

  .passenger-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .passenger-title {
    gap: 8px;
  }

  .passenger-title i {
    font-size: 18px;
    padding: 6px;
  }

  .btn-add {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .btn-remove {
    padding: 6px 12px;
    font-size: 12px;
  }

  .ktp-upload-label {
    min-height: 80px;
    padding: 12px;
  }

  .ktp-upload-label i {
    font-size: 24px;
  }

  .upload-text {
    font-size: 13px;
  }

  .upload-hint {
    font-size: 11px;
  }

  .file-name {
    max-width: 120px;
    font-size: 12px;
  }

  .btn-clear-file {
    padding: 4px 10px;
    font-size: 11px;
  }

  .terms-checkbox {
    padding: 14px 16px;
  }

  .terms-checkbox label {
    font-size: 13px;
  }

  .btn-submit,
  .btn-cancel {
    padding: 14px 24px;
    font-size: 16px;
  }

  .footer-note {
    font-size: 13px;
    padding: 14px 16px;
  }

  .social-links {
    gap: 16px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .wa-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-card .wa-link {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .identity-hint {
    font-size: 11px;
  }

  /* Sentuhan aksesibilitas */
  button,
  .btn-add,
  .btn-remove,
  .btn-clear-file,
  .btn-submit,
  .btn-cancel,
  .social-links a,
  .banner-quota-link,
  .wa-card .wa-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* Perbaikan select2 dropdown di mobile */
  .select2-container--default .select2-selection--single {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 1.2;
  }
}
