.booking-container {
  padding: 18px 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: white;
}

.flex {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: transparent;
  color: white;
}

.flex img {
  width: 560px;
}

.booking-container.light-mode {
  background: transparent;
  color: #111827;
}

.booking-container.light-mode label {
  color: #111827;
}

.booking-container.light-mode input {
  background-color: #dad5d5;
  color: black;
}

.booking-container.light-mode h3 {
  color: black;
}

.booking-container.light-mode li {
  color: black;
}

.booking-container main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header h2 {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

.form {
  background: transparent;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form label {
  font-size: 0.9rem;
  display: block;
  color: white;
}

.form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #374151;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background-color: #1f2937;
  color: white;
}

input:focus {
  border: 2px soild #374151;
  background-color: #1f2937;
  box-shadow: 0 0 5px #374151;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
}

.col input {
  color: white;
}

small {
  font-size: 1rem;
  display: block;
  color: #777;
}

.btn {
  width: 100%;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #df7100, #ae6200);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.info-box {
  background: transparent;
  border-radius: 8px;
  padding: 25px;
  width: 100%;
  max-width: 900px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.info-box h3 {
  margin-bottom: 10px;
  color: white;
}

.info-box ul {
  padding-left: 20px;
  color: white;

  line-height: 1.6;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .flex {
    display: flex;
    flex-direction: column;
    /* width: 90%; */
    max-width: 900px;
  }
  .flex img {
    width: 100%;
  }

  .form {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .flex {
    margin: 1rem;
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header h2 {
    font-size: 1rem;
  }

  .form {
    padding: 20px;
  }

  .btn {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header h2 {
    font-size: 0.95rem;
    /* padding: 0 10px; */
  }

  .container {
    width: 95%;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .form {
    width: 100%;
    padding: 20px;
  }

  input {
    font-size: 15px;
  }

  .btn {
    font-size: 15px;
  }

  .info-box {
    padding: 20px;
  }
}
