/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.bookingSection {
  padding-bottom: 50px;
}
.bookingSection h2 {
  color: #bf8b41;
  font-size: 30px;
  text-align: center;
}
/* BODY */
body {
  background: #0b0f1a;
  color: #fff;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 30px 20px;
  text-align: center;
}

.header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.header p {
  font-size: 16px;
  opacity: 0.9;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* EVENT INFO */
.event-info {
  background: #12182b;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.event-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.event-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfd3ff;
}

/* TICKETS GRID */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* TICKET CARD */
.ticket {
  background: linear-gradient(180deg, #151c33, #0e1426);
  border-radius: 14px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffac1b;
}
.ticket h5 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}
.successBlock .successImg {
  text-align: center;
  margin-bottom: 20px;
}
.successBlock .successImg img {
  width: 200px;
}
.successBlock {
  width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 60px;
}
.successBlock h4 {
  text-align: center;
  margin-bottom: 8px;
}
.successBlock h6 {
  text-align: center;
}
.successBlock p {
  margin-bottom: 0px;
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  color: #000;
}

.ticket .price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #4fd1ff;
}

.ticket ul {
  list-style: none;
  margin-bottom: 20px;
}

.ticket ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #d6dbff;
}

/* BUTTON */
.ticket button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #cca772, #8f6b3e);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.ticket button:hover {
  opacity: 0.9;
}

/* BOOKING FORM */
.form-section {
  background: #12182b;
  padding: 30px;
  border-radius: 14px;
  margin-top: 40px;
}

.form-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.submit-btn {
  margin-top: 15px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #9aa0ff;
  margin-top: 50px;
}
.locationOuter .dateAddress {
  display: flex;
  justify-content: space-between;
}
.locationOuter .dateAddress .dateData {
  display: flex;
  gap: 12px;
}
.locationOuter .dateAddress .dateData img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.locationOuter .dateText {
}
.locationOuter .dateText h5 {
  color: #fff;
}
.locationOuter .dateText p {
  margin-bottom: 5px;
  color: #fff;
}
.locationOuter .addressData {
  display: flex;
  gap: 12px;
}
.locationOuter .addressData img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.locationOuter .addressData .addressText {
}
.locationOuter .addressData .addressText h5 {
  color: #fff;
}
.locationOuter .addressData .addressText p {
  color: #fff;
  width: 300px;
}
.mapFrame {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}
.ticket h6 {
  color: #fff;
  margin-bottom: 4px;
}
.payForm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.payForm .form-group {
  width: 49%;
}
.proceedBtnOut {
  text-align: center;
}
.proceedBtnOut .submit-btn {
  width: unset;
  padding: 8px 20px;
  border-radius: 9px;
}
/* ----------------  modal CSS ---------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
}
.paymentModal .form-group input {
  border: 2px solid #00000033;
  padding: 7px 12px;
}
.paymentModal .form-group select {
  border: 2px solid #00000033;
  padding: 7px 12px;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.formGroupOuter .form-group {
  width: 49%;
}
.formGroupOuter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* ----------------  modal CSS ---------------- */
