.booking-section {
  padding: 120px 48px;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.booking-container {
  background: var(--bg2); /* or pure black if needed, but keeping within the theme */
  border: none;
  border-radius: 12px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 50px rgba(0, 50, 150, 0.1); 
}
.booking-container h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--white);
}
.booking-container h1 em {
  font-style: normal;
  color: var(--lime);
}
.booking-container p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}
.form-group {
  margin-bottom: 24px;
  width: 100%;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: none; /* Removed uppercase */
  color: #a0a0a0; /* Muted modern gray */
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05); /* Slight lighter tint */
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,0.08); /* slight highlight */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.booking-btn {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 18px 24px;
  border-radius: 50px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  text-transform: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.booking-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
