/* Tour Form Container */
.tour-form {
  background-color: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Title */
.tour-form h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}

/* Inputs & Selects */
.tour-form input,
.tour-form select,
.tour-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s ease-in-out;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
  border-color: #00b38a;
  outline: none;
}

/* Custom Submit Button */
.tour-btn {
  background-color: #00b38a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.tour-btn:hover {
  background-color: #009870;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .tour-form {
    padding: 25px 15px;
  }
}

