/* QCI Europa – Bestätigungs-Popup für das Kontaktformular */

.cfm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(13, 11, 9, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: cfmFadeIn 0.25s ease;
}
@keyframes cfmFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cfm-panel {
  width: 100%;
  max-width: 380px;
  background: var(--black-mid, #131009);
  border: 1px solid var(--line-gold, #C9922A44);
  color: var(--white, #F5F3EE);
  font-family: Inter, sans-serif;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: cfmPopIn 0.3s ease;
}
@keyframes cfmPopIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.cfm-icon {
  color: var(--gold, #C9922A);
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
}
.cfm-icon svg { width: 100%; height: 100%; }

.cfm-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--gold-light, #E2B55A);
}

.cfm-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-dim, #cfc9bd);
  margin: 0 0 1.75rem;
}

.cfm-btn {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--gold, #C9922A);
  background: transparent;
  color: var(--gold, #C9922A);
  transition: background 0.2s ease, color 0.2s ease;
}
.cfm-btn:hover {
  background: var(--gold, #C9922A);
  color: var(--black, #0D0B09);
}
