/* Contact form success/error feedback - NAY AGENCE */
.contact-feedback {
  margin-bottom: 1.5rem;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: contactFeedbackIn 0.3s ease-out;
}

@keyframes contactFeedbackIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-feedback--success {
  background-color: rgba(200, 255, 46, 0.15);
  border: 1px solid rgba(200, 255, 46, 0.4);
  color: #f4f4f5;
}

.contact-feedback--success .contact-feedback__icon {
  color: #c8ff2e;
}

.contact-feedback--error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f4f4f5;
}

.contact-feedback--error .contact-feedback__icon {
  color: #ef4444;
}

.contact-feedback__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.contact-feedback__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-feedback__icon svg {
  display: block;
}

.contact-feedback__content {
  flex: 1;
  min-width: 0;
}

.contact-feedback__title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-feedback__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(244, 244, 245, 0.9);
}

.contact-feedback__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 0.25rem;
  margin: -0.25rem -0.25rem 0 0;
}

.contact-feedback__close:hover {
  opacity: 1;
}

/* Fixed banner when contact section not found */
.contact-feedback--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
  border-radius: 0;
  max-width: none;
}
