/* Aboki Van Quote — avq.css */
#avq-wrap {
  max-width: 680px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Steps bar */
.avq-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
  background: #9B0A26;
  padding: 16px 20px 0;
  border-radius: 12px 12px 0 0;
}
.avq-step { flex: 1; }
.avq-step-bar {
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: background .3s;
}
.avq-step.active .avq-step-bar,
.avq-step.done .avq-step-bar {
  background: #fff;
}

/* Panel */
.avq-panel {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.avq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 18px;
}

/* Tip box */
.avq-tip {
  background: #eef4ff;
  border: 1px solid #c9d9f5;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: .9rem;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Fields */
.avq-field { margin-bottom: 18px; }
.avq-field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: #2c2c2c;
  margin-bottom: 6px;
}
.avq-field input,
.avq-field select {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .95rem;
  color: #333;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.avq-field input:focus,
.avq-field select:focus { border-color: #9B0A26; }
.avq-hint {
  display: block;
  font-size: .8rem;
  color: #888;
  margin-top: 4px;
}

/* Service buttons */
.avq-service-btns,
.avq-pay-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.avq-svc,
.avq-pay-btn {
  flex: 1;
  min-width: 100px;
  padding: 11px 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: .9rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all .2s;
}
.avq-svc:hover, .avq-pay-btn:hover { border-color: #9B0A26; color: #9B0A26; }
.avq-svc.active, .avq-pay-btn.active {
  background: #9B0A26;
  border-color: #9B0A26;
  color: #fff;
}

/* Primary button */
.avq-btn-primary {
  width: 100%;
  background: #9B0A26;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, opacity .2s;
}
.avq-btn-primary:hover { background: #7a0820; }
.avq-btn-primary:disabled { opacity: .6; cursor: not-allowed; }

.avq-btn-outline {
  background: #fff;
  color: #9B0A26;
  border: 2px solid #9B0A26;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.avq-btn-outline:hover { background: #9B0A26; color: #fff; }

/* Quote result box */
.avq-quote-box {
  background: #f8f8f8;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.avq-quote-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: .95rem;
  color: #555;
}
.avq-quote-row:last-child { border-bottom: none; }
.avq-price-row { font-size: 1.15rem; color: #1a1a1a; padding-top: 12px; }
.avq-price-row strong { color: #9B0A26; font-size: 1.4rem; }

/* Stripe card element */
#avq-card-element {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

/* Error */
.avq-error {
  color: #c0392b;
  font-size: .88rem;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fdf0f0;
  border-radius: 6px;
}

/* Google autocomplete dropdown z-index fix */
.pac-container { z-index: 99999 !important; }

/* Spinner */
.avq-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 3px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: avq-spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes avq-spin { to { transform: rotate(360deg); } }

@media (max-width: 500px) {
  .avq-panel { padding: 20px 16px; }
  .avq-service-btns, .avq-pay-btns { flex-direction: column; }
}
