.hero-booking {
  min-height: 50vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("../images/Kilimanjaro\ Tanzania.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #228B22;
}

.booking-form form {
  max-width: 700px;
  margin: auto;
  background: #f6f8f6;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #228B22;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

textarea {
  resize: none;
}

.btn {
  display: inline-block;
  background: #C4B454;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn:hover {
  background: #228B22;
  color: #fff;
}
