.form-container {
  max-width: 1000px;
  margin: 50px auto;
  background: #E9E0CF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  color: #0d2a4e;
  margin-bottom: 30px;
  font-size: 32px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

label.required::after {
  content: " *";
  color: red;
}

/* Uniform height for inputs and selects */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
input[type="number"], 
select, 
textarea,
.dropdown-selected {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  height: 48px; /* same height */
  line-height: normal;
}

textarea {
  height: auto; /* keep textarea taller */
  min-height: 96px;
  padding-top: 12px;
  padding-bottom: 12px;
}

input:focus, select:focus, textarea:focus, .dropdown-selected:focus {
  outline: none;
  border-color: #0d2a4e;
  box-shadow: none;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

#submitBooking {
  width: 100%;
  background-color: #D7DAE9;
  color: black;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  height: 50px; /* uniform button height */
}

#submitBooking:hover {
  background-color: #0b2240;
  color: white;
}

@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
  }
}

.phone-group {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.custom-dropdown {
  position: relative;
  width: 35%;
}

.dropdown-selected {
  height: 48px;
  min-height: 48px;
  border: 1px solid #000;
  border-right: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  box-sizing: border-box;
}

.dropdown-selected img {
  width: 25px;
  height: 18px;
  border: 1px solid #ccc;
  object-fit: cover;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% + 65% + 10px);
  background: white;
  border: 1px solid #000;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dropdown-item {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-item img {
  width: 25px;
  height: 18px;
  border: 1px solid #ccc;
  object-fit: cover;
}

.phone-group input {
  width: 65%;
  border: 1px solid #000;
  border-left: none;
  margin: 0;
  border-radius: 0;
  padding: 0 15px;
  font-size: 16px;
  height: 48px; /* match height */
}

/* Activities in one line */
.activities-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.activities-checkboxes label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  height: 48px; /* same height for consistency */
}

/* Activities full width on mobile */
@media (max-width: 600px) {
  .activities-checkboxes {
    flex-direction: column;
  }
}
