/* Style de la section Contact */
.container {
  padding: 50px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1e1c70;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation-delay: 0.2s;
  transform: translateY(-20px);
}

.contact-info {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  opacity: 0;
  animation-delay: 0.4s;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.form-group {
  flex: 1 1 45%;
  min-width: 300px;
}

.form-control {
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  width: 100%;
  resize: none !important;
}

.form-control::placeholder {
  font-family: 'Montserrat', sans-serif; 
  font-size: 1rem;
  color: #777;
  opacity: 1;
}

.form-control:focus {
  border-color: #1e1c70;
  outline: none;
}

.submit-btn {
  background-color: #1e1c70;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: #3635b4;
}

.map-container {
  margin-top: 40px;
  margin-bottom: 50px;
  width: 100%; /* Assurez-vous que le conteneur de la carte occupe toute la largeur */
}

.map-container iframe {
  width: 100vw; /* 100% de la largeur de la fenêtre */
  height: 500px; /* Ajustez la hauteur selon votre préférence */
  border: none;
  border-radius: 10px;
  max-width: 100%; /* Garantit qu'il ne dépasse pas la largeur de l'écran */
}

/* Responsivité */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-form {
    flex-direction: column;
  }

  .form-group {
    min-width: 100%;
  }

  .submit-btn {
    font-size: 1rem;
  }
}
