/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #1f2933;
}

/* ================= PAGE HEADER ================= */
.page-header {
  background: linear-gradient(90deg, #0b132b );
  color: #ffffff;
  padding: 60px 100px;
  text-align: left;
}

.page-header h1 {
  font-size: 44px;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 15px;
  opacity: 0.9;
}

.back-link {
  color: #22c55e;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* ================= STEPS INDICATOR ================= */
.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 35px 0 10px;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-circle.active {
  background:  #22c55e;
  color: #111827;
}

.step-line {
  width: 60px;
  height: 2px;
  background: #e5e7eb;
}

/* ================= BOOKING STEPS ================= */
.booking-step {
  display: none;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.booking-step.active {
  display: block;
}

.booking-step h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #111827;
}

.booking-step p {
  color: #6b7280;
  margin-bottom: 35px;
}

/* ================= SLOT GRID ================= */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

/* ================= SLOT CARD ================= */
.slot-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* SELECTED CARD */
.slot-card.selected {
  border: 2px solid  #22c55e;
  background: #fff7ed;
}

/* CHECK ICON */
.slot-card.selected::after {
  content: "✔";
  position: absolute;
  top: 14px;
  right: 14px;
  background:  #22c55e;
  color: #111827;
  width: 22px;
  height: 22px;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD CONTENT */
.slot-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111827;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color:  #22c55e;
}

/* ================= CONTINUE BUTTON ================= */
.continue-btn {
  margin-top: 45px;
  padding: 14px 44px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  background:  #22c55e;
  color: #111827;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.45;
  transition: all 0.25s ease;
}

.continue-btn:enabled {
  cursor: pointer;
  opacity: 1;
}

.continue-btn:enabled:hover {
  background:  #22c55e;
}

/* ================= STEP 2 ================= */
.selected-slot {
  max-width: 600px;
  margin: 0 auto 30px;
  background: #fffbeb;
  border: 1px solid #22c55e;
  padding: 14px 16px;
  border-radius: 10px;
  text-align: left;
  color: #92400e;
}

/* ================= FORM ================= */
/* Back link */
.back-link {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #22c55e;
  font-weight: 500;
  cursor: pointer;
}

/* Form layout */
.booking-form {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.booking-form label {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 14px;
}

/* Two column rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Selected slot */
.selected-slot {
  background: #fff7e6;
  border: 1px solid #22c55e;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

