/* ===== 1. Design Tokens ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-card: #111827;
  --bg-card-hover: #151d2e;
  --bg-input: #0d1117;
  --bg-hero: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  --border-card: #1e293b;
  --border-input: #2d3a52;
  --border-focus: #3b82f6;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-green: #22c55e;
  --accent-amber: #f59e0b;
  --accent-purple: #a855f7;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #60a5fa;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
  --shadow-focus: 0 0 0 3px rgba(59,130,246,0.3);
  --transition: 0.2s ease;
}

/* ===== 2. Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== 3. Header / Brand ===== */
.site-header {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.brand-name .highlight {
  color: var(--accent);
}
.brand-brokerage {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-top: 1px;
}
.header-nav {
  display: flex;
  gap: 6px;
}
.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

/* ===== 4. Layout ===== */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 120px;
}

/* ===== 5. Hero ===== */
.hero {
  text-align: center;
  padding: 32px 0 24px;
}
.hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.hero .sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

/* ===== 6. Progress Stepper ===== */
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
}
.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stepper-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--border-input);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.stepper-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.stepper-line {
  width: 40px;
  height: 2px;
  background: var(--border-input);
  margin: 0 8px;
  transition: background 0.3s ease;
}
.stepper-step.active .stepper-circle {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.stepper-step.active .stepper-label {
  color: var(--text-primary);
}
.stepper-step.done .stepper-circle {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: #fff;
}
.stepper-step.done .stepper-label {
  color: var(--accent-green);
}
.stepper-line.done {
  background: var(--accent-green);
}
.stepper-line.active {
  background: var(--accent);
}

/* ===== 7. Cards ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 0 16px;
}
.card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

/* ===== 8. Steps ===== */
.step {
  display: none;
}
.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== 9. Form Grid ===== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ===== 10. Labels & Inputs ===== */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.field input,
.field select {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-input);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font);
  transition: all var(--transition);
  width: 100%;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-focus);
}
.field input::placeholder {
  color: var(--text-muted);
}
.field input[readonly] {
  opacity: 0.7;
  cursor: default;
}
.field small {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ===== 11. Pill Toggles ===== */
.pill-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-input);
  background: var(--bg-input);
}
.pill-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  text-align: center;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.pill-btn.active {
  background: var(--accent);
  color: #fff;
}
.pill-btn:not(.active):hover {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

/* ===== 12. Range Sliders ===== */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-input);
  outline: none;
  border: none;
  padding: 0;
}
.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.slider-row input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.slider-val {
  font-size: 0.85rem;
  color: var(--text-accent);
  font-weight: 600;
  min-width: 48px;
  text-align: right;
}

/* ===== 13. Collapsible Advanced ===== */
.advanced-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font);
  padding: 10px 14px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all var(--transition);
  margin-top: 4px;
}
.advanced-toggle:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}
.advanced-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}
.advanced-toggle.open .arrow {
  transform: rotate(90deg);
}
.advanced-panel {
  display: none;
  padding-top: 16px;
}
.advanced-panel.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ===== 14. Tooltips ===== */
.tooltip-trigger {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--border-input);
  color: var(--text-muted);
  border: none;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.tooltip-trigger:hover {
  background: var(--accent);
  color: #fff;
}
.tooltip-content {
  display: none;
  background: #1e293b;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}
.tooltip-content.visible {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* ===== 15. Consent ===== */
.consent-group {
  border-top: 1px solid var(--border-card);
  margin-top: 20px;
  padding-top: 16px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-input);
  background: var(--bg-input);
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.consent-disclosure {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.consent-disclosure a {
  color: var(--text-accent);
  text-decoration: underline;
}

/* ===== 16. Buttons ===== */
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  flex: 1;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-input);
  color: var(--text-secondary);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 12px 16px;
}
.btn-ghost:hover {
  color: var(--text-primary);
}
button:disabled,
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== 17. Results ===== */
.results-hero {
  background: var(--bg-hero);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.results-hero .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.results-hero .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1.1;
}
.results-hero .per-month {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 4px 0 0;
}

/* ===== 18. Donut Chart ===== */
.chart-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.donut {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.donut-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.donut-hole .donut-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.donut-hole .donut-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.chart-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  width: 100%;
  max-width: 360px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-dot.pi { background: var(--accent); }
.legend-dot.tax { background: var(--accent-amber); }
.legend-dot.ins { background: var(--accent-green); }
.legend-dot.hoa { background: var(--accent-purple); }
.legend-amount {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== 19. Breakdown Table ===== */
.breakdown {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.breakdown tr {
  border-bottom: 1px solid var(--border-card);
}
.breakdown tr:last-child {
  border-bottom: none;
}
.breakdown td {
  padding: 10px 0;
  font-size: 0.9rem;
}
.breakdown td:last-child {
  text-align: right;
  font-weight: 600;
}
.breakdown .total-row td {
  padding-top: 14px;
  font-size: 1rem;
  font-weight: 700;
  border-top: 2px solid var(--border-input);
}

/* ===== 20. Disclosure / Info Box ===== */
.info-box {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0;
}
.info-box strong {
  color: var(--text-primary);
}

/* ===== 21. Footer Disclosures ===== */
.disclosures {
  border-top: 1px solid var(--border-card);
  margin-top: 32px;
  padding-top: 24px;
}
.disclosures p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.disclosures .eho {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.disclosures .eho svg {
  flex-shrink: 0;
}

/* ===== 22. Sticky Mini-Disclaimer ===== */
.sticky-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-card);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  z-index: 99;
}

/* ===== 23. CRM Status ===== */
.status {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== 24. Responsive ===== */
@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .results-hero .amount { font-size: 3.4rem; }
  .chart-section { flex-direction: row; justify-content: center; }
  .wrap { padding: 32px 24px 120px; }
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .stepper-label { display: inline; }
}

@media (min-width: 1024px) {
  .wrap {
    max-width: 780px;
    padding: 40px 32px 120px;
  }
}

/* ===== 25. Mobile Adjustments ===== */
@media (max-width: 639px) {
  .stepper-label { display: none; }
  .stepper-line { width: 24px; }
  .header-nav a { font-size: 0.78rem; padding: 6px 8px; }
  .brand-name { font-size: 1rem; }
  .card { padding: 20px 16px; }
  .results-hero { padding: 24px 16px; }
  .results-hero .amount { font-size: 2.4rem; }
  .chart-legend { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; justify-content: center; }
}

/* ===== 26. Print ===== */
@media print {
  .site-header, .sticky-disclaimer, .stepper, .actions { display: none; }
  body { background: #fff; color: #111; }
  .card { border: 1px solid #ddd; }
}

/* ===== 27. Accessibility ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ===== Booking Modal ===== */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  animation: modalIn 0.25s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.booking-close:hover { background: #f5f5f5; color: #333; }

.booking-modal h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
}

.booking-sub {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
}

/* Date pills */
.date-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.date-pills::-webkit-scrollbar { display: none; }

.date-pill {
  flex-shrink: 0;
  padding: 10px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.date-pill:hover { border-color: #1a1a2e; color: #1a1a2e; }
.date-pill.active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

/* Slots area */
.slots-area {
  min-height: 80px;
  margin-top: 8px;
}
.slots-loading, .slots-empty, .slots-hint {
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 24px 0;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.slot-btn {
  padding: 12px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.slot-btn:hover {
  border-color: #1a1a2e;
  background: #f8f8fc;
  color: #1a1a2e;
}

/* Confirm card */
.confirm-card {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0 20px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.confirm-row + .confirm-row { border-top: 1px solid #eee; }
.confirm-label { font-size: 13px; color: #888; font-weight: 500; }
.confirm-value { font-size: 14px; color: #1a1a2e; font-weight: 600; }

.booking-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

/* Success */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: successPop 0.4s ease-out;
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-note {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 16px 0;
  line-height: 1.5;
}

#bookStep3 { text-align: center; }
#bookStep3 .confirm-card { text-align: left; }
#bookStep3 .btn { margin: 0 auto; display: inline-flex; }

@media (max-width: 600px) {
  .booking-modal { padding: 24px 20px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-actions { flex-direction: column; }
}


/* Booking contact form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.booking-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}
.booking-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a2e;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.booking-field input:focus {
  outline: none;
  border-color: #1a1a2e;
}
.booking-field input::placeholder {
  color: #bbb;
}
