.booking-wrapper {
  padding: 2rem;
  background: radial-gradient(circle at top, #001f2f, #000);
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  margin-top: 100px;
}

.booking-form, .booking-summary {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Booking Form */
.booking-form h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #fff;
}

.booking-form label {
  display: block;
  font-weight: 600;
  color: #fff;
}

.booking-form input {
  background-color: #757472;
  box-sizing: border-box;
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.booking-form input:focus {
  border-color: #f77f00;
  outline: none;
}

.booking-form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #f77f00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.booking-form button:hover {
  background: #d65f00;
}

/* Desktop Summary */
.summary-banner {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.summary-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #fff;
}

.summary-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
}

/* Mobile Summary (inside form) */
.mobile-summary {
  display: none;
  margin-top: 2rem;
  padding: 1rem;
  background: #f1f1f1;
  border-radius: 6px;
}

.mobile-summary-banner {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.mobile-summary-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #003049;
}

.mobile-summary-info p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #333;
}

.services-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Exo 2', sans-serif;
  margin-top: 100px;
}

.services-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: white;
  text-align: center;
}

.services-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: white;
}

.services-form input[type="checkbox"] {
  margin-right: 0.5rem;
}

.services-form button {
  margin-top: 2rem;
  width: 100%;
  padding: 0.75rem;
  background: #f77f00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.services-form button:hover {
  background: #d65f00;
}

.thank-you-wrapper {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 100px;
  background: linear-gradient(to bottom right, #00334e, #0077b6);
  text-align: center;
  padding: 2rem;
}
.account-prompt {
  background: #f0f8ff;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 4px;
}
.btn-primary {
  background: #007bff;
  color: white;
}
.btn-secondary {
  background: #ccc;
  color: black;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .booking-form label {
    margin-top: 1rem;
  }
  .booking-container {
    flex-direction: column;
  }

  .booking-form {
    order: 1;
  }

  .booking-summary {
    display: none;
  }

  .mobile-summary {
    display: block;
  }
}