/* Amelia-Style Booking Form
   ----------------------------------- */

.penang-booking-wrap {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  max-width: 600px;
  margin: 40px auto;
  padding: 0 15px;
}

.penang-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 30px;
  position: relative;
}

.penang-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.penang-progress .step {
  width: 40px;
  height: 40px;
  background: #e6e6e6;
  border-radius: 50%;
  color: #888;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.penang-progress .step.active,
.penang-progress .step.completed {
  background: #4e8cff;
  color: #fff;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

label {
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 6px;
  display: block;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}

input:focus,
select:focus {
  border-color: #4e8cff;
  box-shadow: 0 0 0 2px rgba(78, 140, 255, 0.2);
}

.btn,
button.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4e8cff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: #3576e5;
}

.btn[disabled],
button[disabled] {
  background: #bbb !important;
  cursor: not-allowed;
}

.btn.ghost {
  background: #f3f6fa;
  color: #4e8cff;
}

.btn.ghost:hover {
  background: #e4ecf7;
}

.penang-step {
  animation: fadeIn 0.3s ease;
}

.hidden {
  display: none !important;
}

.muted {
  font-size: 13px;
  color: #777;
}

.otp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.terms-block {
  margin: 15px 0;
}

.terms-block label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 8px 0;
  font-weight: 400;
}

.terms-block input[type="checkbox"] {
  margin-right: 8px;
}

.final-actions {
  margin-top: 20px;
  text-align: right;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.penang-footer {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
}

#penang-map {
  width: 100%;
  background: #f1f1f1;
  border-radius: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Small screens */
@media (max-width: 480px) {
  .penang-card {
    padding: 20px;
  }
  .penang-progress .step {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
