.booking-section {
  padding: 60px 0;
  background: #f7f9fc;
}

.booking-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.booking-card h2 {
  margin-bottom: 5px;
  font-weight: 700;
}

.booking-card .subtitle {
  color: #777;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  margin-top: 20px;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255,102,0,.15);
}

.summary-box {
  background: #fff6ef;
  border-radius: 10px;
  padding: 15px;
  margin: 25px 0;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-item strong {
  font-size: 16px;
  color: #666;
  margin-bottom: 4px;
}

.summary-item span {
  font-size: 16px;
  font-weight: 700;
  color: #ff6600;
}

.btn-submit {
  background: #ff6600;
  color: #ffffff;          /* text color */
  border-radius: 10px;
  padding: 15px;
  margin: 25px 0;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff7a18, #ff6600);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.35);
}

.btn-submit:active {
  transform: scale(0.98);
}

/* Success message */
.success-message {
  margin-top: 15px;
  padding: 12px;
  background: #e8fff3;
  color: #1a7f37;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  display: none;
}



