/* --- HERO CONTACT --- */
.contact-hero {
  background-color: #2c2a4a; /* Bleu nuit luxueux */
  color: #ffffff;
  text-align: center;
  padding: 120px 20px 60px 20px;
}

.contact-hero .hero-title {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-hero .breadcrumb {
  font-size: 14px;
  color: #a4a2c4; /* Un violet très doux pour le chemin */
}

.contact-hero .breadcrumb strong {
  color: #ffffff;
}

/* --- SECTION INFOS & CARTES --- */
.contact-info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.contact-header-text h2 {
  font-size: 36px;
  color: #2c2a4a;
  margin-bottom: 15px;
}

.contact-header-text p {
  color: #6b6b80;
  max-width: 600px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  padding: 40px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Thème Sombre pour les cartes */
.dark-card {
  background-color: #2c2a4a;
  color: #ffffff;
}
.dark-card h3 { color: #ffffff; }

/* Thème Clair pour les cartes */
.light-card {
  background-color: #ffffff;
  color: #2c2a4a;
  border: 1px solid #f0efff;
}

/* --- SECTION CARTE & FORMULAIRE --- */
.contact-action-section {
  background-color: #f7f6fb; /* Fond très légèrement gris/violet */
  padding: 80px 20px;
  gap:32px;
}

.contact-action-container-centered {
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  padding: 0px;
}

.contact-form .input-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e1e0ea;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #2c2a4a;
  background-color: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0526ff;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 38, 255, 0.1);
}

/* --- TOAST --- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: -400px; /* Caché hors de l'écran par défaut */
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left: 5px solid #0526ff; /* Le bleu Corporate 4 Sky */
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    width: 320px;
    
    /* L'animation fluide façon "ressort" */
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.toast-notification.show {
    right: 30px; /* Glisse dans l'écran ! */
}

.toast-icon {
    background-color: rgba(5, 38, 255, 0.1);
    color: #0526ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #2c2a4a;
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 800;
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: #6b6b80;
    line-height: 1.4;
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cartes par ligne sur tablette */
  }
  .contact-action-container {
    grid-template-columns: 1fr; /* La carte passe au-dessus du formulaire */
  }
  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .contact-cards-grid {
    grid-template-columns: 1fr; /* 1 carte par ligne sur téléphone */
  }
  .contact-action-container-centered {
    padding: 30px 20px;
  }

  .toast-notification {
        bottom: 20px;
        right: -100%;
        left: 20px;
        width: auto;
    }
    .toast-notification.show {
        right: 20px;
    }
}

.header__link-contact {
  color: #121213;
  ;
  text-decoration: none;
  transition: color 0.3s ease;
}