/* ─── FLOATING WHATSAPP BUTTON ─── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: waPulse 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.wa-float svg { width: 28px; height: 28px; fill: white; display: block; }
@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ─── GET QUOTE MODAL ─── */
.quote-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-overlay.open { display: flex; }
.quote-modal {
  background: var(--bg, #0d0f1a);
  border: 1px solid var(--border, #1e2030);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.quote-modal h2 { font-size: 1.3rem; margin: 0 0 4px; color: var(--text, white); }
.quote-modal p.sub { color: var(--text-dim, #889); font-size: 0.85rem; margin: 0 0 20px; }
.quote-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--text-dim); font-size: 1.4rem;
  cursor: pointer; padding: 4px 8px;
  border-radius: 8px;
}
.quote-close:hover { background: rgba(255,255,255,0.08); }
.quote-modal label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text, white); margin-bottom: 4px;
}
.quote-modal input, .quote-modal select, .quote-modal textarea {
  width: 100%; padding: 10px 14px;
  border-radius: 10px; border: 1px solid var(--border, #1e2030);
  background: rgba(255,255,255,0.04);
  color: white; font-size: 0.9rem;
  margin-bottom: 14px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.quote-modal input:focus, .quote-modal select:focus, .quote-modal textarea:focus {
  outline: none;
  border-color: var(--primary, #6366f1);
}
.quote-modal select option { background: #0d0f1a; color: white; }
.quote-modal textarea { min-height: 60px; resize: vertical; }
.quote-submit {
  width: 100%; padding: 12px;
  border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--primary, #6366f1), #4f46e5);
  color: white; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: opacity 0.2s;
}
.quote-submit:hover { opacity: 0.9; }
.quote-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.quote-success {
  display: none; text-align: center; padding: 20px;
}
.quote-success.open { display: block; }
.quote-success .icon { font-size: 3rem; margin-bottom: 12px; }
.quote-success h3 { margin: 0 0 8px; color: var(--text, white); }
.quote-success p { color: var(--text-dim, #889); font-size: 0.85rem; margin: 0; }

@media (max-width: 768px) {
  .wa-float { bottom: 76px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
  .quote-modal { padding: 24px; }
}
