.elementor-12 .elementor-element.elementor-element-18fdafe{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1b8ae34 *//* SECTION CONTACT */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  font-family: "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Éléments décoratifs de fond */
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 0, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* EN-TÊTE DE SECTION */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Verdana", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: #FF6B00;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.contact-subtitle {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* WRAPPER CONTACT (2 COLONNES) */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* CARTE D'INFORMATIONS */
.contact-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-card h2 {
  font-size: 32px;
  color: #ffffff;
  font-family: "Verdana", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.info-tagline {
  color: #FF6B00;
  font-size: 16px;
  margin-bottom: 30px;
  font-style: italic;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.3);
  padding-bottom: 15px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.info-item:hover {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateX(5px);
}

.info-icon {
  font-size: 32px;
  min-width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #FF6B00;
  color: white;
  transform: rotate(10deg);
}

.info-text {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.7;
}

.info-text strong {
  color: #ffffff;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.info-text a {
  color: #FF6B00;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.info-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* BOUTONS DE CONTACT RAPIDE */
.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-contact {
  flex: 1;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-call {
  background: #FF6B00;
  color: white;
}

.btn-call:hover {
  background: transparent;
  border-color: #FF6B00;
  color: #FF6B00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-mail {
  background: transparent;
  border: 2px solid #FF6B00;
  color: #FF6B00;
}

.btn-mail:hover {
  background: #FF6B00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* FORMULAIRE DE CONTACT */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-form h2 {
  font-size: 28px;
  color: #ffffff;
  font-family: "Verdana", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF6B00;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Segoe UI", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #FF6B00;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-submit:hover {
  background: #e05a00;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.btn-submit:hover::before {
  left: 0;
}

.btn-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* CARTE MAPS */
.map-container {
  margin-top: 60px;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.map-container iframe {
  display: block;
  filter: grayscale(20%) brightness(0.9);
  transition: all 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) brightness(1);
}

.map-note {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #e0e0e0;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  border-left: 4px solid #FF6B00;
  margin: 0;
  backdrop-filter: blur(5px);
}

/* RESPONSIVE TABLETTE */
@media (max-width: 1024px) {
  .contact-wrapper {
    gap: 30px;
  }
  
  .contact-title {
    font-size: 42px;
  }
  
  .info-card h2 {
    font-size: 28px;
  }
  
  .btn-contact {
    padding: 12px;
    font-size: 15px;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-subtitle {
    font-size: 16px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .map-note {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
  }
}

/* PETITS MOBILES */
@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }
  
  .info-card h2 {
    font-size: 24px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  
  .btn-submit {
    padding: 14px;
    font-size: 16px;
  }
}/* End custom CSS */