/* ==============================
   VNV Multi-step Form — UI base
   ============================== */
.vnv-msef{
  --c:#26a69a; --bg:#0f1115; --card:#161a21; --txt:#e8eef7; --muted:#9fb0c3;
  color:var(--txt);
  background:var(--bg);
  border-radius:16px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  max-width:900px;
  margin:20px auto;
}
.vnv-msef-header{ text-align:center; margin-bottom:18px; }
.vnv-msef h2{ margin:0 0 6px; }
.vnv-msef p{ color:var(--muted); margin:0; }

.vnv-step{ background:var(--card); border-radius:14px; padding:18px; margin-top:16px; }
.vnv-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:900px){ .vnv-grid{ grid-template-columns:1fr 1fr; } }

label{ display:block; font-weight:600; margin-bottom:6px; }
input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=time],
input[type=number],
textarea{
  width:100%;
  max-width:100%;
  display:block;
  background:#0e1218;
  border:1px solid #222a36;
  color:var(--txt);
  border-radius:10px;
  padding:10px 12px;
  outline:none;
}
input:focus, textarea:focus{ border-color:var(--c); box-shadow:0 0 0 3px rgba(38,166,154,.15); }

/* Mapa (por si el form se usa fuera del modal) */
.vnv-map{ width:100%; height:260px; border-radius:12px; background:#0e1218; border:1px solid #222a36; }

/* Chips de servicios */
.vnv-group{ margin-top:14px; }
.vnv-group-title{ font-weight:800; margin-bottom:8px; color:#b9c8da; }
.vnv-services{ display:flex; flex-wrap:wrap; gap:10px; }
.vnv-chip{ cursor:pointer; position:relative; }
.vnv-chip input{          /* oculta el checkbox real */
  position:absolute !important;
  opacity:0 !important;
  width:1px; height:1px;
  pointer-events:none;
}
.vnv-chip span{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#0e1218;
  border:1px solid #222a36;
  font-size:.9rem;
}
.vnv-chip input:checked + span{
  background:var(--c);
  color:#081014;
  border-color:transparent;
  font-weight:700;
}

/* Botones */
.vnv-actions{ display:flex; gap:10px; justify-content:flex-end; margin-top:12px; }
.vnv-btn{ background:var(--c); color:#081014; border:none; padding:10px 16px; border-radius:10px; font-weight:800; cursor:pointer; }
.vnv-btn[disabled]{ opacity:.6; cursor:not-allowed; }

/* Éxito */
.vnv-success{ text-align:center; padding:22px; background:#0e1218; border:1px solid #222a36; border-radius:12px; margin-top:16px; }
.vnv-call-btn{
  display:inline-block; margin-top:14px; padding:12px 18px;
  background:#000; color:#fff; border-radius:10px; font-weight:800;
  text-decoration:none; text-transform:uppercase; letter-spacing:.5px;
}
.vnv-call-btn:hover{ filter:brightness(1.15); }
.vnv-success .vnv-muted{ opacity:.8; margin-top:10px; }

/* Validación */
.is-invalid{ border-color:#ff6b6b !important; box-shadow:0 0 0 3px rgba(255,107,107,.15) !important; }
.vnv-error{ margin-top:6px; color:#ffb3b3; font-size:13px; }

/* Date/Time pickers visibles en dark */
input[type="date"], input[type="time"]{ padding-right:42px; color-scheme:dark; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator{ filter:invert(1) brightness(1.6); opacity:1; cursor:pointer; }
input[type="time"]::-webkit-clear-button,
input[type="time"]::-webkit-inner-spin-button{ filter:invert(1); opacity:.7; }

/* Evitar desbordes */
#vnv-msef *, #vnv-msef *::before, #vnv-msef *::after{ box-sizing:border-box; }
#vnv-msef .vnv-grid > div{ min-width:0; }
#vnv-msef .vnv-step{ overflow:hidden; }
