/* ============================================================
   INDEPENDENT PROFILE REGISTRATION - MIDNIGHT CHAMPAGNE THEME
   Matches global.css and agency registration design
============================================================ */

/* ================= BODY & PAGE WRAPPER ================= */
body.page-template-register-independent-profile {
  background: var(--bg-primary, #0d1117) !important;
  color: var(--text-primary, #ffffff);
}

/* WordPress theme wrappers */
body.page-template-register-independent-profile #page,
body.page-template-register-independent-profile .site,
body.page-template-register-independent-profile .site-main,
body.page-template-register-independent-profile main,
body.page-template-register-independent-profile .page-wrap,
body.page-template-register-independent-profile .content-area,
body.page-template-register-independent-profile .site-content {
  background: var(--bg-primary, #0d1117) !important;
  background-image: none !important;
}

/* Header + footer styling */
body.page-template-register-independent-profile header,
body.page-template-register-independent-profile header * {
  background: var(--bg-secondary, #1c1f26) !important;
}

body.page-template-register-independent-profile footer {
  background: var(--bg-secondary, #1c1f26) !important;
}

/* Remove dark overlays */
body.page-template-register-independent-profile .hero,
body.page-template-register-independent-profile .hero-wrap,
body.page-template-register-independent-profile .page-hero,
body.page-template-register-independent-profile .section-hero,
body.page-template-register-independent-profile .dark,
body.page-template-register-independent-profile .bg-dark {
  background: transparent !important;
  background-image: none !important;
}

/* Remove theme overlays */
body.page-template-register-independent-profile::before,
body.page-template-register-independent-profile::after,
body.page-template-register-independent-profile .site::before,
body.page-template-register-independent-profile .site-content::before {
  content: none !important;
}

/* ================= WIZARD PAGE CONTAINER ================= */

#wizardPage {
  background: var(--bg-primary, #0d1117);
  position: relative;
  min-height: 100vh;
}

/* Subtle glow effect */
#wizardPage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 400px;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ================= PROGRESS DOTS ================= */

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
  background: var(--bg-secondary, #1c1f26);
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.progress-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  position: relative;
}

.progress-dot::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(100% + 0.75rem);
  width: 1.5rem;
  height: 2px;
  background: var(--border-medium, rgba(255, 255, 255, 0.15));
  transition: background 0.3s ease;
}

.progress-dot:last-child::after {
  display: none;
}

.progress-dot.completed::after {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
}

.progress-dot.active,
.progress-dot.completed {
  opacity: 1;
}

.dot-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tertiary, #161922);
  border: 2px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted, #6b6b7b);
}

.progress-dot.active .dot-circle {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
  border-color: var(--champagne, #d4af37);
  color: var(--text-on-gold, #1a1a1a);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.progress-dot.completed .dot-circle {
  background: var(--champagne, #d4af37);
  border-color: var(--champagne, #d4af37);
  color: var(--text-on-gold, #1a1a1a);
}

.progress-dot.completed .dot-circle::before {
  content: '✓';
  position: absolute;
  font-size: 0.9rem;
}

.dot-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted, #6b6b7b);
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.progress-dot.active .dot-label {
  color: var(--text-primary, #ffffff);
  font-weight: 600;
}

/* ================= WIZARD CONTAINER ================= */

.wizard-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-secondary, #1c1f26);
  padding: 0;
}

/* Edit mode header */
.wizard-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  background: var(--bg-tertiary, #161922);
}

.wizard-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary, #ffffff);
  background: linear-gradient(135deg, var(--text-primary, #ffffff) 0%, var(--champagne, #d4af37) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wizard-close-btn {
  font-size: 1.5rem;
  color: var(--text-secondary, #a8a8b8);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.wizard-close-btn:hover {
  color: var(--champagne, #d4af37);
  background: var(--surface-hover, rgba(255, 255, 255, 0.05));
}

/* ================= WIZARD CARDS ================= */

.wizard-card {
  background: var(--bg-secondary, #1c1f26);
  padding: 2rem 1.5rem;
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: calc(100vh - 120px);
}

.wizard-card.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary, #ffffff) 0%, var(--champagne, #d4af37) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wizard-sub {
  color: var(--text-secondary, #a8a8b8);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ================= SECTION GROUPS ================= */

.section-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.section-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.section-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary, #ffffff);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ================= FORM ELEMENTS ================= */

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row:has(.field:nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary, #ffffff);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  background: var(--bg-tertiary, #161922);
  color: var(--text-primary, #ffffff);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted, #6b6b7b);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.field input:hover:not(:focus),
.field select:hover:not(:focus),
.field textarea:hover:not(:focus) {
  border-color: var(--border-strong, rgba(255, 255, 255, 0.25));
  background: var(--bg-elevated, #252932);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Select dropdown */
.field select {
  cursor: pointer;
  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='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Validation error */
.field-error,
.field input.error,
.field select.error {
  border-color: var(--error, #ef4444) !important;
  background: rgba(239, 68, 68, 0.1) !important;
}

/* Hidden field */
.hidden {
  display: none !important;
}

/* Hint text */
.hint,
.muted-text {
  font-size: 0.8rem;
  color: var(--text-muted, #6b6b7b);
  margin-top: 0.375rem;
  line-height: 1.4;
}

/* ================= CHECKBOXES & RADIOS ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.services-grid label,
.check-pill,
.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-tertiary, #161922);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary, #a8a8b8);
}

.services-grid label:hover,
.check-pill:hover,
.radio-pill:hover {
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  color: var(--text-primary, #ffffff);
  transform: translateY(-1px);
}

.services-grid input[type="checkbox"],
.services-grid input[type="radio"],
.check-pill input,
.radio-pill input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--champagne, #d4af37);
  flex-shrink: 0;
}

.services-grid label:has(input:checked),
.check-pill:has(input:checked),
.radio-pill:has(input:checked) {
  border-color: var(--champagne, #d4af37);
  background: linear-gradient(135deg, #1c1f26 0%, #161922 100%);
  color: var(--text-primary, #ffffff);
  box-shadow: 0 0 0 1px var(--champagne, #d4af37), 0 4px 20px rgba(212, 175, 55, 0.25);
}

/* Days grid */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.days-grid label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-tertiary, #161922);
  font-weight: 500;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-secondary, #a8a8b8);
}

.days-grid label:hover {
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  color: var(--text-primary, #ffffff);
}

.days-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--champagne, #d4af37);
}

.days-grid label:has(input:checked) {
  border-color: var(--champagne, #d4af37);
  background: linear-gradient(135deg, #1c1f26 0%, #161922 100%);
  color: var(--text-primary, #ffffff);
  box-shadow: 0 0 0 1px var(--champagne, #d4af37);
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ================= BUTTONS ================= */

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
  color: var(--text-on-gold, #1a1a1a);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6c05f 0%, #ffeed6 50%, #e6c05f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary, #a8a8b8);
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
}

.btn-ghost:hover {
  border-color: var(--champagne, #d4af37);
  color: var(--champagne, #d4af37);
  background: var(--surface-hover, rgba(255, 255, 255, 0.05));
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.add-tour-btn {
  margin-top: 1rem;
  width: auto;
}

/* ================= TOUR SCHEDULE ================= */

.tour-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tour-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-tertiary, #161922);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: 8px;
}

.tour-row .field {
  margin-bottom: 0;
}

.tour-row .field label {
  font-size: 0.8rem;
  margin-bottom: 0.375rem;
}

.remove-tour {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  align-self: flex-end;
  color: var(--error, #ef4444);
  border: 1px solid var(--error, #ef4444);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-tour:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* ================= FILE UPLOADS ================= */

.file-box {
  margin-bottom: 1.5rem;
}

.file-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary, #ffffff);
  font-size: 0.9rem;
}

.file-box input[type="file"] {
  display: block;
  width: 100%;
  padding: 1rem;
  border: 2px dashed var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-tertiary, #161922);
  color: var(--text-secondary, #a8a8b8);
  font-size: 0.9rem;
}

.file-box input[type="file"]:hover {
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  color: var(--text-primary, #ffffff);
}

.upload-panel {
  margin-bottom: 2rem;
}

.upload-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-primary, #ffffff);
  font-weight: 700;
  font-size: 0.9rem;
}

.upload-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 2px dashed var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  background: var(--bg-tertiary, #161922);
  cursor: pointer;
  margin-bottom: 1rem;
  color: var(--text-secondary, #a8a8b8);
  transition: all 0.2s ease;
}

.upload-drop:hover {
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  color: var(--text-primary, #ffffff);
}

.upload-drop input {
  display: none;
}

.upload-instructions {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary, #a8a8b8);
  line-height: 1.7;
}

.upload-instructions li {
  margin-bottom: 0.5rem;
}

.upload-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted, #6b6b7b);
  line-height: 1.5;
}

.preview-grid,
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.preview-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-tertiary, #161922);
  border: 2px solid var(--border-medium, rgba(255, 255, 255, 0.15));
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= NOTICE BOX ================= */

.notice-box {
  background: linear-gradient(135deg, #1c1f26 0%, #161922 100%);
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  margin: 1.25rem 0;
}

.notice-box svg {
  flex-shrink: 0;
  color: var(--champagne, #d4af37);
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

.notice-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary, #a8a8b8);
  line-height: 1.6;
}

.notice-box strong {
  color: var(--text-primary, #ffffff);
}

/* Terms rows */
.terms-row label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 1rem;
  border: 1.5px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-tertiary, #161922);
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.9rem;
  color: var(--text-secondary, #a8a8b8);
}

.terms-row label:hover {
  border-color: var(--champagne, #d4af37);
  background: var(--bg-elevated, #252932);
  color: var(--text-primary, #ffffff);
}

.terms-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--champagne, #d4af37);
}

.terms-row label:has(input:checked) {
  border-color: var(--champagne, #d4af37);
  background: linear-gradient(135deg, #1c1f26 0%, #161922 100%);
  color: var(--text-primary, #ffffff);
}

/* ================= VALIDATION MESSAGE ================= */

.validation-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1.5px solid var(--error, #ef4444);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.validation-message.fade-out {
  animation: fadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.validation-message svg {
  color: var(--error, #ef4444);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.validation-message span {
  color: var(--error, #ef4444);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================= LOADING SPINNER ================= */

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================= RESPONSIVE - MOBILE ================= */

@media (max-width: 768px) {
  .progress-dots {
    gap: 1rem;
    padding: 1rem 0.75rem;
  }

  .progress-dot::after {
    display: none;
  }

  .dot-circle {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .dot-label {
    font-size: 0.65rem;
    max-width: 70px;
  }

  .wizard-card {
    padding: 1.5rem 1rem;
  }

  .wizard-title {
    font-size: 1.5rem;
  }

  .form-row:has(.field:nth-child(2)) {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .days-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .radio-grid {
    grid-template-columns: 1fr;
  }

  .tour-row {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column-reverse;
    padding: 1.25rem 0 0;
  }

  .btn {
    width: 100%;
  }

  .wizard-wrap {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .wizard-card {
    padding: 1rem 0.75rem;
  }

  .days-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
  }

  .days-grid label {
    padding: 0.625rem 0.375rem;
    font-size: 0.75rem;
  }
}

/* ================= DESKTOP OPTIMIZATION ================= */

@media (min-width: 1024px) {
  .wizard-wrap {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  }

  .wizard-card {
    padding: 2.5rem 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .step-actions {
    padding: 2rem 0 0;
  }
}

@media (min-width: 1440px) {
  .wizard-wrap {
    max-width: 1400px;
  }
}

/* ================= ACCESSIBILITY ================= */

.btn:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--champagne, #d4af37);
  outline-offset: 2px;
}

.progress-dot:focus-visible {
  outline: 2px solid var(--champagne, #d4af37);
  outline-offset: 4px;
  border-radius: 50%;
}

/* ================= PRINT STYLES ================= */

@media print {
  .progress-dots,
  .step-actions {
    display: none;
  }

  .wizard-card {
    box-shadow: none;
    border: 1px solid var(--border-medium, rgba(255, 255, 255, 0.15));
  }

  #wizardPage {
    background: white;
  }

  #wizardPage::before {
    display: none;
  }
}