/* ===============================
   VIRTUAL KONSELING – FINAL FIX
=============================== */

/* FLOATING BUTTON */
.vc-fab {
 position: fixed !important;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0b2a4a, #0a3a6a);
  color: #fff;

  font-weight: 800;
  font-size: 14px;

  border: none;
  cursor: pointer;

  z-index: 2147483647 !important;
  pointer-events: auto !important;

  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.vc-fab:hover {
  transform: translateY(-2px);
}

/* OVERLAY */
.vc-overlay {
  position: fixed;
  inset: 0;

  background: rgba(15,23,42,.6);
  backdrop-filter: blur(6px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 2147483646;
}

.vc-overlay.show {
  display: flex;
}

/* MODAL */
.vc-modal {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  padding: 24px;

  position: relative;
  animation: vcPop .25s ease;

  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

@keyframes vcPop {
  from {
    transform: scale(.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE */
.vc-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;

  background: #f1f5f9;
  cursor: pointer;
  font-size: 18px;
}

/* HEADER */
.vc-header {
  text-align: center;
}

.vc-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;

  background: #e0f2fe;
  color: #0b2a4a;

  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.vc-header h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.vc-header p {
  font-size: 14px;
  color: #475569;
}

/* ACTIONS */
.vc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.vc-btn {
  padding: 12px;
  border-radius: 999px;
  text-align: center;

  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

.vc-btn.primary {
  background: #0b2a4a;
  color: #fff;
}

.vc-btn.outline {
  border: 2px solid #0b2a4a;
  color: #0b2a4a;
}

/* NOTE */
.vc-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 16px;
}

/* ===============================
   LANDING HERO SAFETY FIX
=============================== */
.hero::before,
.hero::after,
.bnn-nav-overlay {
  pointer-events: none;
}
