body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #fff;
}

.booking-section {
  background: linear-gradient(to right, #1a1a1a, #000);
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
}

h2 {
  color: #ffd700;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

input, select, textarea {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  border-color: #ffd700;
  outline: none;
  background-color: #1a1a1a;
}

textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .form-row {
    flex-direction: column;
  }

  input, select, textarea {
    font-size: 1rem;
  }
}
.back-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 26px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-btn:hover {
  background-color: #ffd700;
  color: #111;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .back-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 30px;
  }
}
