/* ############# */
/* PAGE CONTACT */
/* ############ */

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
}

.contact-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

/* ########### */
/* FORMULAIRE */
/* ######### */

.contact-form-wrapper {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 13px;
  color: #111;
  background: #f7f7f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.15s;
  font-family: sans-serif;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1D9E75;
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #1D9E75;
}

.form-check label {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ##################### */
/* MESSAGE CONFIRMATION */
/* ################### */

.form-success {
  display: none;
  background: #E1F5EE;
  border: 1px solid #1D9E75;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #0F6E56;
  font-size: 14px;
  font-weight: 500;
}

/* ############## */
/* INFOS CONTACT */
/* ############ */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.15s;
}

.contact-card:hover {
  border-color: #1D9E75;
}

.contact-card-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 13px;
  color: #0F6E56;
  font-weight: 500;
  text-decoration: none;
}

.contact-card-value:hover {
  text-decoration: underline;
}

.contact-separator {
  height: 1px;
  background: #e5e5e5;
  margin: 8px 0;
}

.contact-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ###################  */
/* NOTIFICATION SUCCÈS */
/* ################## */

.notif-success {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #1D9E75;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  transition: bottom 0.4s ease;
  white-space: nowrap;
}

.notif-success.show {
  bottom: 32px;
}