.elementor-9 .elementor-element.elementor-element-d4dbe5f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-9 .elementor-element.elementor-element-9668195{--display:flex;}.elementor-9 .elementor-element.elementor-element-99e0225{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-9 .elementor-element.elementor-element-4a8759c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ffc95de */.contact-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}
.contact-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #eb1d1d;
  outline: none;
}
.contact-form button {
  padding: 1rem;
  background: #eb1d1d;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #c41616;
}
.contact-infos {
  flex: 1 1 250px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.contact-infos h3 {
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}
.social-links a:hover img {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a8974be */.map-section {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}

.map-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #EB1D1D;
}

.map-title p {
  font-size: 1rem;
  color: #333;
}

.map-container {
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Classe visible après scroll */
.map-container.visible {
  opacity: 1;
  transform: scale(1);
}/* End custom CSS */