/* --- CONTACT WRAPPER & CONTAINER LAYOUT --- */
.contact-wrapper {
  padding: 80px 0 100px 0;
  background-color: var(--Contexte);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

/* --- LEFT COLUMN: FORM SECTION --- */
.contact-form-section {
  display: flex;
  flex-direction: column;
}

.text-10 {
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--Texte);
  margin-bottom: 24px;
}

.text-11 {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-black);
  margin-bottom: 48px;
}

.contact-main-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-14, .text-17, .text-18, .text-21, .text-26 {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  font-size: 16px;
  color: var(--Texte);
}

.rectangle-53-input {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--Contexte);
  border: 3px solid var(--Accent);
  border-radius: 10px;
  font-family: var(--font-family-inter);
  font-size: 16px;
  color: var(--Texte);
  outline: none;
  transition: border-color 0.2s ease;
}

.rectangle-53-input:focus {
  border-color: var(--Secondaire);
}

.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(31,31,31,1)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 45px;
  cursor: pointer;
}

.textarea-message {
  resize: vertical;
}

.form-privacy-checkbox {
  margin-top: 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  flex-shrink: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 3px solid var(--Accent);
  border-radius: 6px;
  position: relative;
  margin-top: 2px;
}

.checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--Primaire);
  border-color: var(--Primaire);
}

.custom-checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox:after {
  display: block;
}

.text-52 {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-black);
}

.form-submit-row {
  margin-top: 16px;
}

.group-16-btn {
  background-color: var(--Primaire);
  border: none;
  border-radius: 15px;
  padding: 16px 40px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.group-16-btn:hover {
  background-color: rgba(102, 51, 6, 0.9);
}

.group-16-btn:active {
  transform: scale(0.98);
}

.text-31 {
  font-family: var(--font-family-inter);
  font-weight: 500;
  font-size: 20px;
  color: var(--Accent);
}

/* --- RIGHT COLUMN: INFO CARD SECTION --- */
.contact-info-section {
  position: sticky;
  top: 40px;
}

.info-card {
  background-color: var(--accent-light);
  border: 3px solid var(--Accent);
  border-radius: 20px;
  padding: 48px;
}

.heading-h2 {
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: 40px;
  color: var(--Texte);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.info-brand-description {
  margin-bottom: 40px;
}

.text-50 {
  font-family: var(--font-family-poppins);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-black);
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FIX: Alignement en ligne de l'icône SVG et du titre h3 */
.info-title-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.text-33, .text-34 {
  font-family: var(--font-family-poppins);
  font-weight: 500;
  font-size: 24px;
  color: var(--Texte);
}

.text-35 a, .text-36 {
  font-family: var(--font-family-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-black);
  text-decoration: none;
}

.text-35 a:hover {
  color: var(--Primaire);
  text-decoration: underline;
}

/* --- RESPONSIVE RESPONSIVENESS --- */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-info-section {
    position: static;
  }
}

@media (max-width: 600px) {
  .text-10 {
    font-size: 38px;
  }

  .form-row-double {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-card {
    padding: 32px 24px;
  }

  .heading-h2 {
    font-size: 32px;
  }

  .group-16-btn {
    width: 100%;
    text-align: center;
  }
}