/* CONTACT PAGE LAYOUT */
.contact-main {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin-top: 110px; /* espace pour la navbar */
  background: #f7f8fa;
}

.contact-left {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: #fff;
  border-right: 1.5px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 48px 36px 48px 30px;
}
.contact-info-title {
  font-size: 1.17em;
  font-weight: bold;
  color: #222;
  margin-bottom: 16px;
  text-align: right;
}
.contact-info-desc {
  font-size: 0.97em;
  color: #888;
  text-align: right;
  line-height: 1.6;
  max-width: 250px;
}
.contact-form-wrapper {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: #f7f8fa;
}
.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 28px -14px rgba(0,86,179,0.07);
  padding: 35px 30px 30px 30px;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
}
.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #cfd7e6;
  border-radius: 6px;
  font-size: 1em;
  margin-bottom: 4px;
  background: #f9fafd;
  color: #222;
  resize: none;
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #0056b3;
}
.contact-btn {
  margin-top: 16px;
  padding: 11px 0;
  background: linear-gradient(90deg, #0056b3 40%, #5aa8e9 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  font-size: 1.12em;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.18s;
}
/* Responsive */
@media (max-width: 1200px) {
  .contact-main {
    flex-direction: column;
    min-height: unset;
  }
  .contact-left {
    max-width: 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1.5px solid #e6e6e6;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px 20px 24px 24px;
    text-align: left;
  }
  .contact-info-title,
  .contact-info-desc {
    text-align: left;
  }
  .contact-form-wrapper {
    width: 100%;
    padding: 40px 10vw;
  }
}
@media (max-width: 700px) {
  .contact-form-wrapper {
    padding: 30px 4vw;
  }
  .contact-form {
    padding: 22px 8px 18px 8px;
    max-width: 98vw;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-left {
    padding: 24px 10px 10px 10px;
  }
}