/* FORM STYLES – CUSTOM FORM ONLY */
.custom-form {
  background: var(--light-beige);
  padding: 40px;
  border-radius: 15px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: 'Open Sans', Arial, sans-serif;
}

.custom-form h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--burnt-orange);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Standard form fields */
.custom-form .form-group {
  margin-bottom: 20px;
}

.custom-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--charcoal);
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--earth-tan);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: var(--burnt-orange);
  box-shadow: 0 0 10px rgba(204,85,0,0.3);
  outline: none;
}

/* Bikes & Tours horizontal layout */
.custom-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.custom-form .selection-box {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-form .selection-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.custom-form .selection-box h3 {
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  color: var(--brick-red);
  font-weight: 600;
  text-transform: uppercase;
}

.custom-form .selection-box .options label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
}

.custom-form .selection-box .options input[type="checkbox"] {
  margin-right: 10px;
  accent-color: var(--burnt-orange);
}

/* Message */
.custom-form textarea {
  resize: vertical;
}

/* Submit button */
.custom-form .btn-submit {
  background: linear-gradient(135deg, var(--burnt-orange), var(--brick-red));
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.custom-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-form .form-row {
    grid-template-columns: 1fr;
  }
}
/* Bikes & Tours dropdown alignment */
.custom-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.custom-form .form-row .form-group {
  margin-bottom: 0;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .custom-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}