.booking-section {
  background: #fbf7ee;
  padding: 80px 15px;
}



.booking-card h2 {
  text-align: center;
  color: #1b5e20;
  font-weight: 700;
}

.sub-text {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

/* Form */
.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

label {
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 6px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46,125,50,0.15);
}

/* Button */
.book-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.terms {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  color: #777;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 8px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #1f7a1f;
}

.activity-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.activity-item input[type="checkbox"]:checked {
  accent-color: #1f7a1f;
}




/* Mobile */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
 
}
