
.contact {

  background-repeat: no-repeat;
  background-size: cover;
}

.contact-form {
  margin: 80px auto 0 auto;
  display: block;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 500px;
  width: 100%;
}

.contact-form h2 {
  text-align: center;
  color: var(--dark-orange);
  margin-bottom: 30px;
}

.contact-form p {
  font-size: 18px;
  font-family: var(--ff-rubik);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dark-orange);
  box-shadow: 0 0 8px rgba(20, 73, 115, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.button_form {
  width: 100%;
  background: var(--green-blue-crayola);
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.button_form:hover {
  background: var(--dark-orange);
}

.select-custom {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23144973' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  transition: border 0.3s, box-shadow 0.3s;
}

.select-custom:focus {
  border-color: var(--dark-orange);
  box-shadow: 0 0 6px rgba(20, 73, 115, 0.3);
  outline: none;
}

.devis {

  background-repeat: no-repeat;
  background-size: cover;
}
