#quote-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.option {
  width: 100%;
  max-width: 550px;
  background: #111;
  padding: 16px 22px;
  border: 1px solid #333;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto 28px; /* label | price | tick */
  align-items: center;
  gap: 12px;
  color: #00ff9c;
  transition: 0.25s ease;
  box-shadow: 0 0 10px rgba(0, 255, 156, 0.12);
  cursor: pointer;                 /* ✅ toute la box est cliquable */
  user-select: none;
  outline: none;
}

.option:hover {
  border-color: #00ff9c;
  box-shadow: 0 0 18px rgba(0, 255, 156, 0.35);
}

.option:focus-visible {
  box-shadow: 0 0 0 2px #0c0c0c, 0 0 0 4px #00ff9c;
}

.service-label {
  font-weight: 700;
  color: #00ff9c;
}

.service-price {
  color: #f5e000;
  font-family: 'Share Tech Mono', monospace;
}

/* Icône de sélection (tick) */
.tick {
  width: 22px;
  height: 22px;
  border: 2px solid #2e2e2e;
  border-radius: 6px;
  position: relative;
  transition: 0.2s ease;
}

.option.selected .tick {
  border-color: #00ff9c;
  box-shadow: 0 0 10px rgba(0,255,156,0.6);
}

.option.selected .tick::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #0c0c0c;
  background: #00ff9c;
  border-radius: 4px;
}

/* Total */
#quote-result {
  margin-top: 25px;
  font-size: 1.3rem;
  color: #f5e000;
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 0 0 6px #f5e000;
}

#request-quote { margin-top: 35px; }
