/* ---------- FORM SECTION ---------- */
.repair-form-section {
  background: #fff;
  color: #000;
  padding:0px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.repair-form-section h2 {
  color: #1a1a4a;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 28px;
}

.repair-form-section p {
  margin-bottom: 40px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* ---------- FORM ---------- */
.repair-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fafafa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-control {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-control.full {
  flex: 100%;
}

.form-control label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.form-control span {
  color: red;
}

input,
select,
textarea {
  padding: 10px 15px;
  border: 2px solid #0044ff;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- BUTTON ---------- */
.btn-submit {
  background: #0044ff;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #002db3;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }

  .repair-form {
    padding: 25px;
  }

  .btn-submit {
    width: 100%;
  }
}