.contact-section-fixed {
  background:
    url("assets/selva_negra_BLC_TRAIT_1200.gif") repeat top left,
    #eee;
  background-size: 300px auto;
  min-height: 1080px;
  display: flex;
  flex-direction: column;
}

/* Bandeau logos clients */
.clients-bar {
  background-color: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 4px solid #03738b;
  gap: 1rem;
}

.clients-bar img {
  max-height: 50px;
  object-fit: contain;
}

/* Frise décorative sous les clients */
.clients-pattern img {
  width: 100%;
  display: block;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

/* Zone centrale : Zyggy — formulaire — coffre */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5%;
  flex: 1;
  gap: 3rem;
}

.contact-avatar,
.contact-form-area,
.contact-treasure {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-area {
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  text-align: left;
}

.contact-avatar img,
.contact-treasure img {
  max-height: 400px;
  width: auto;
}

/* Formulaire */
.contact-headline {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: white;
  background-color: #03738b;
  padding: 0.5rem 2rem;
  border-radius: 0px;
  margin-bottom: 1rem;
  display: inline-block;
  white-space: nowrap;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-form-area input,
.contact-form-area textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
}

textarea {
  min-height: 120px;
}

.contact-form-area button.btn {
  background-color: #f3396e;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: 'Bungee', cursive;
  transition: background-color 0.3s ease;
}

.contact-form-area button.btn:hover {
  background-color: #c12a58;
}

.clients-banner-selva {
  height: 150px;
  overflow: hidden;
}

.clients-banner-selva img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer */
.footer-bar {
  background-color: #03738b;
  color: white;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  margin: 0 0.5rem;
  display: inline-block;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 0.7;
}

.footer-info {
  font-family: 'Caveat', cursive;
  line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .contact-avatar {
    display: none;
  }

  .contact-form-area {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .contact-form-area p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .contact-form-area input,
  .contact-form-area textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .contact-form-area textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form-area button {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Bungee', cursive;
  }

  .contact-form-area button:hover {
    background-color: #c12a58;
  }

  .contact-treasure img {
    max-width: 100%;
    height: auto;
  }
}
