/* Hero Section */
.banner {
  background: url('../images/slider/bsl1.png') center/cover no-repeat;
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}
.booking-form {
  background: rgba(255,255,255,0.95);
  position: relative;
  z-index: 2;
  border-radius: 12px;
}
.form-group label {
  font-weight: 600;
  color: #444;
}
.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: border 0.3s ease;
}
.form-control:focus {
  border-color: #2a2a72;
  box-shadow: none;
}
.btn-book {
  background: #2a2a72;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-book:hover {
  background: #1f1f60;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    display: flex;
    flex-direction: column;
  }
  .form-group {
    width: 100% !important;
  }
  .banner {
    height: auto;
    padding: 60px 0;
  }
  .btn-book {
    width: 100%;
  }
}
