.booking-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 30px;
}

.booking-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 24px 30px;
  color: #ffffff;
  text-align: center;
}

.booking-header h3 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.booking-header p {
  margin: 6px 0 0 0;
  opacity: 0.9;
  font-size: 13px;
}

.booking-body {
  display: block;
}

.form-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.form-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  font-size: 13px;
  color: #334155;
  margin-bottom: 6px;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  height: 40px;
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.table-detail-place {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.table-detail-place th {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
}

.table-detail-place td {
  font-size: 12.5px;
}

.btn-submit-booking {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
}

.btn-submit-booking:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.iframe-titik-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  margin-top: 6px;
}