.booking-form-section {
  display: grid;
  grid-template-columns: auto 30%;
  grid-gap: 3rem;
  align-items: start;
  position: relative;
  margin-top: 2rem;
}
.booking-form-section .booking-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.booking-form-section .booking-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.booking-form-section .booking-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
.booking-form-section .booking-form h5 {
  color: #ff9d00;
  margin-bottom: 1rem;
  font-weight: 700;
}
.booking-form-section .booking-form .booking-group {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.booking-form-section .booking-form .booking-group .form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.booking-form-section .booking-form .booking-group .form-group .form-control {
  font-size: 0.875rem;
  padding: 0.5rem;
}
.booking-form-section .booking-form .qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-form-section .booking-form .qr-section figure {
  width: 80%;
  height: auto;
}
.booking-form-section .booking-form .qr-section figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.booking-form-section .booking-form .booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.booking-form-section .booking-form button {
  width: 50%;
  margin: auto;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ff9d00;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.booking-form-section .booking-form button:hover {
  background-color: #25a3a8;
}

.payment-section {
  position: sticky;
  top: 0;
}

.header-sticky {
  position: relative !important;
}

#exampleModal .modal-dialog {
  max-width: 700px;
}
#exampleModal .modal-dialog p {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .booking-form-section {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
  .booking-form-section .booking-banner {
    display: none;
  }
  .payment-section {
    position: relative;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .booking-form-section .booking-form .booking-grid {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .booking-form-section .booking-form .qr-section {
    flex-direction: column;
    align-items: start;
  }
  #exampleModal .modal-dialog {
    max-width: 100%;
  }
}/*# sourceMappingURL=booking.css.map */