.booking-section {
  padding: 60px 65px;
  background: #fff;
  font-family: Arial, sans-serif;
  margin-top: 75px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.booking-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.booking-left,
.booking-right {
  flex: 1 1 450px;
}

.booking-left h2 {
  font-size: 1.8rem;
  color: #8B0000;
  margin-bottom: 20px;
  line-height: 1.5;
}

.booking-left span {
  color: #8B0000;
}


.contact-info p {
  margin-bottom: 25px;
  color: #333;
}

.booking-right h3 {
  color: #8B0000;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.subtext {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #333;
}

.subtext .highlight {
  color: red;
  font-weight: bold;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row input {
  flex: 1 1 200px;
  padding: 10px;
  border: 1px solid #8B0000;
  border-radius: 4px;
  outline: none;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #222;
}

.form-group.services div label {
  display: block;
  font-weight: normal;
  margin-bottom: 5px;
  color: #444;
}

.submit-btn {
  background-color: #8B0000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  align-self: start;
}

.submit-btn:hover {
  background-color: #a30000;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-section {
    padding: 60px 30px;
  }  
  .booking-wrapper {
    flex-direction: column;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
  }
}
