/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* BODY */
body {
  background: linear-gradient(135deg, #eef2f7, #e0e7ff);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER */
.container {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */
.booking-card {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  /* max-width: 420px; */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease;
}

/* STEP */
.step {
  display: none;
  animation: slide 0.3s ease;
}

.step.active {
  display: block;
}

/* HEADINGS */
h2 {
  margin-bottom: 15px;
  color: #1f2937;
}

/* INPUT + SELECT FIX (MAIN ISSUE FIXED HERE) */
select,
input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  margin: 12px 0;

  border-radius: 10px;
  border: 1px solid #d1d5db;

  font-size: 14px;
  color: #111827;
  background: #fff;

  outline: none;
}

/* SELECT FIX */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* OPTION */
option {
  color: #000;
}

/* PLACEHOLDER */
input::placeholder {
  color: #9ca3af;
}

/* FOCUS EFFECT */
select:focus,
input:focus {
  border: 1px solid #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

/* BUTTON */
button {
  padding: 10px 20px;
  border: none;
  background: linear-gradient(135deg, #4CAF50, #22c55e);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* PROGRESS BAR */
.progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #22c55e);
  width: 0%;
  transition: 0.3s;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .booking-card {
    padding: 20px;
  }

  h2 {
    font-size: 18px;
  }

  button {
    font-size: 13px;
  }
}