/* ================================================
   CONTACT PAGE STYLES (contact.html)
   ================================================ */

/* Contact Container */
.contact-container {
  padding: 4rem 0;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__form-section h2 {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.contact__form-section>p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Contact Form */
.contact__form {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 2rem;
  border-radius: 12px;
}

.form__note {
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Contact Info Section */
.contact__info-section h2 {
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.contact__info-card {
  background: #F5F7EA;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.contact__info-card h3 {
  color: #4854D0;
  margin-bottom: 0.5rem;
}

.contact__info-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact__info-card a {
  color: #4854D0;
  text-decoration: none;
  font-weight: 500;
}

.contact__info-card a:hover {
  text-decoration: underline;
}

.contact__detail {
  font-size: 0.85rem;
  color: #999;
}

/* Expectations */
.contact__expectations {
  background: white;
  border: 2px solid #6FBE57;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.contact__expectations h3 {
  color: #6FBE57;
  margin-bottom: 1rem;
}

.expectations__list {
  list-style: none;
}

.expectations__list li {
  padding: 0.6rem 0;
  color: #666;
  line-height: 1.6;
}

.expectations__list strong {
  color: #4854D0;
}

/* Testimonials */
.contact__social h3 {
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.testimonial {
  background: white;
  border-left: 4px solid #6FBE57;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.testimonial p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.testimonial__author {
  color: #4854D0;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
}

/* Quick FAQ */
.quick-faq {
  padding: 4rem 0;
}

.quick-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq__item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}

.faq__item h4 {
  color: #4854D0;
  margin-bottom: 0.8rem;
}

.faq__item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #4854D0, #6FBE57);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.quick-contact {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-contact input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

.quick-contact button {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .quick-contact {
    flex-direction: column;
  }

  .quick-contact input {
    min-width: 100%;
  }

  .hero--sm h1 {
    font-size: 1.5rem;
  }

  .hero--sm p {
    font-size: 1rem;
  }
}

/* ================================================
   NOTIFICATION TOAST
   ================================================ */

.notification-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  font-weight: 500;
  max-width: 400px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.notification-toast.show {
  transform: translateX(0);
}

/* Success State */
.notification-toast--success {
  background-color: #F0FDF4;
  /* Vert très clair */
  color: #166534;
  /* Vert foncé */
  border: 1px solid #BBF7D0;
}

/* Error State */
.notification-toast--error {
  background-color: #FEF2F2;
  /* Rouge très clair */
  color: #991b1b;
  /* Rouge foncé */
  border: 1px solid #FECACA;
}

.notification-toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Animation de chargement pour le bouton */
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}