/* ============================================
   PREMIUM REDESIGN — ONLY CSS CHANGES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.booking-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.booking-container {
  width: 100%;
  background: #f7f4f0;
  padding: 20px;
}

.booking-wrapper {
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 960px;
  margin: 20px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  background: #fff;
}

/* ---- SIDEBAR ---- */
.step-sidebar {
  width: 36%;
  min-height: 100%;
  background: #1a1a2e;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.step-sidebar::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(214,111,78,0.15);
  pointer-events: none;
}

.step-sidebar::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(214,111,78,0.08);
  pointer-events: none;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  opacity: 1;
}

.step-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s;
}

.step-item.active {
  background: rgba(214,111,78,0.18);
  color: #f0a07a;
  font-weight: 500;
  transform: none;
}

.step-item.active::before {
  background: #d66f4e;
  box-shadow: 0 0 0 3px rgba(214,111,78,0.25);
}

/* ---- CARD ---- */
.booking-card {
  width: 64%;
  padding: 24px 28px;
  background: #fff;
}

.booking-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* ---- INPUTS ---- */
.booking-wrapper select,
.booking-wrapper input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  margin: 8px 0;
  border-radius: 12px;
  border: 1.5px solid #ebe8e3;
  background: #faf9f7;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  transition: all 0.25s;
  appearance: none;
}

.booking-wrapper select:focus,
.booking-wrapper input:focus {
  border-color: #d66f4e;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(214,111,78,0.10);
}

/* ---- BUTTONS ---- */
.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.booking-wrapper button {
  flex: 1;
  padding: 13px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.next {
  background: #1a1a2e;
  color: #fff;
  letter-spacing: 0.01em;
}

.next:hover {
  background: #2471a3;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(36, 113, 163, 0.25);
}

.prev {
  background: #f2f0ec;
  color: #666;
}

.prev:hover {
  background: #e8e4de;
  transform: none;
  box-shadow: none;
}

#book {
  background: #1a1a2e;
  color: #fff;
}

#book:hover {
  background: #2471a3;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(36, 113, 163, 0.30);
}

/* ---- STEP ---- */
.step {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.35s ease;
}

.step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* ---- SUCCESS MODAL ---- */
#successModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,46,0.65);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#successModal > div {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  text-align: center;
  width: 340px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: popUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popUp {
  from { transform: scale(0.75); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .booking-container {
    padding: 0 !important;
  }

  .booking-wrapper {
    flex-direction: column;
    margin: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
  }

  .step-sidebar {
    width: 100% !important;
    flex-direction: row;
    overflow-x: auto;
    padding: 16px 12px;
    gap: 6px;
  }

  .step-item {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .booking-card {
    width: 100% !important;
    padding: 20px 16px;
  }

  select, input, button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}