.contact-gradient-card {
  position: relative;
  background: #0c0c0c;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  overflow: hidden;
}

.contact-gradient-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to bottom, #ae00ff, #ff0051);
  border-radius: 12px 0 0 12px;
}

.fleur-bg {
  position: relative;
  overflow: hidden;
}

.fleur-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/static/img/backgrounds/Fleur-De-Lys.png');
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.20;
  z-index: 1;
}

.fleur-bg .p-4,
.fleur-bg > * {
  position: relative;
  z-index: 3;
}

.fleur-overlay {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.index-marquee {
  font-size: 1rem;
  padding: 10px 0;
  color: #000;
  font-weight: 500;
  background-color: #ff0051;
}

.slide-toast {
  padding: 5px 10px;
  border-radius: 3em;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  background-color: #000 !important;
  color: #fdfdfd !important;
  border: solid 1px #2f2f2f !important;
}

.slide-toast.showing,
.slide-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.slide-toast.hide {
  transform: translateX(100%);
  opacity: 0;
}

.toast-icon-success { color: #198754; }
.toast-icon-info    { color: #0dcaf0; }
.toast-icon-warning { color: #ffc107; }
.toast-icon-error   { color: #dc3545; }
.toast-icon-danger   { color: #dc3545; }

.toast-body {
  word-break: break-word;
}
