/* STEP BAR */
.bk-step-bar-1 {
    background: #fff;
    padding: 20px 20px 50px 20px;
}
.bk-steps {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
.st-item {
  text-align: center;
  font-size: 13px;
  color: #999;
  flex: 1;
}
.st-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-weight: bold;
}
.st-item.active .st-number {
  background: #179d82;
}
.st-label {
  display: block;
  margin-top: 6px;
}
.st-divider-1 {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin: 14px -60px;
}

.booking-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 0;
}

.popup-content {
  background: #fff;
  width: 95%;
  max-width: 600px;
  margin: auto;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  font-family: sans-serif;
}

.close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background-color: #ddd;
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.step-item.active .step-number {
  background-color: #179d82;
}
input[type="number"]{
    padding: 0px !important;
    border: none !important;
}
.step-label {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}

.step-item.active .step-label {
  color: #000;
}

.step-divider {
  height: 2px;
  background: #ddd;
  flex: 0 0 20px;
}

.tour-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 36px 20px;
  margin: 0px -20px;
  border-radius: 19px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.tour-header img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 15px;
}

.tour-info h2 {
  margin: 0 0 5px;
  font-size: 18px !important;
}

.tour-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.price {
  font-weight: bold;
  color: #2e8b57;
  font-size: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 30px;
}

.form-group,
.form-group-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.guest-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-control button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
}

.guest-control input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.form-section {
  display: flex;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  flex-direction: column;
  background: #F3F3F3;
  gap: 10px;
}
#customer-name, #customer-email, #customer-phone {
    border: none !important;
    border-radius: 5px !important;
}

.form-section legend {
  font-weight: bold;
  margin-bottom: 5px;
}
.tour-info {
    background: #ffffff !important;
    border: none;
}
.flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-green {
    color: #28938B;
    font-weight: 600;
}
.text-normal {
    font-weight: 600;
}
.submit-button {
  background: #179d82;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

#booking-loading {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ccc;
  border-top-color: #0073aa;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Hide arrows in number input (Chrome, Safari, Edge) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.guest-plus {
    border-radius: 50px !important;
    background: #28938B !important;
    color: white !important;
}
.guest-minus{
    border-radius: 50px !important;
    background: #DEFFFD !important;
    color: #28938B !important;
}
