body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1650&q=80') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  text-align: center;
  color: white;
  padding: 60px 20px 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
}

.form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  margin: 20px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  max-width: 420px;
  width: 100%;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 6px rgba(255,107,107,0.5);
}

.booking-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ff6b6b, #ff4757);
  border: none;
  color: white;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.booking-form button:hover {
  background: linear-gradient(45deg, #ff4757, #ff6b6b);
  transform: scale(1.05);
}

textarea {
  resize: none;
}