/*============================================
  SIGN-UP WIZARD SECTION
  ============================================ */
/* === Wizard Container & Layout === */
.wizard {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 80vh
}

.wizard__content {
  min-width: 0;
}

.wizard__steps {
  margin-bottom: 3rem;
}


@media (max-width: 1200px) {
  .wizard {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .wizard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* === Wizard Step === */
.wizard__step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.wizard__step--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1);}
}

.wizard__step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.wizard__step-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 1rem auto;
  border-radius: 2px;
}

.wizard__step-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.wizard__step-container {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(234, 175, 70, 0.2);
  position: relative;
  overflow: visible;
}

.wizard__step-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0.8;
}

  /* === Progress Tracker === */
.wizard__progress {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(234, 175, 70, 0.1);
}

.wizard__progress-bar-container .progress {
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wizard__progress-bar {
  background: var(--gradient-gold) !important;
  transition: width 0.6s ease;
  position: relative;
}

.wizard__progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.wizard__progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.wizard__progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  color: #6c757d;
  position: relative;
  border: 3px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
}

.wizard__progress-step::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.wizard__progress-step--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(6, 87, 158, 0.4);
}

.wizard__progress-step--active::before {
  opacity: 1;
}

.wizard__progress-step--completed {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(234, 175, 70, 0.4);
}

.wizard__progress-step--completed::after {
  content: '✓';
  font-size: 1.2rem;
}

.wizard__progress-step:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wizard__progress-step--completed:hover,
.wizard__progress-step--active:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(6, 87, 158, 0.4);
}

.wizard__progress-step:not(.wizard__progress-step--completed):not(.wizard__progress-step--active) {
  opacity: 0.7;
}

.wizard__progress-step:not(.wizard__progress-step--completed):not(.wizard__progress-step--active):hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(155, 2, 2, 0.9);
  cursor: not-allowed;
}

/* === Address Picker === */
.address-picker {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
}

.address-picker__no-paste-warning {
  font-family: var(--font-body) !important;
}

.address-picker__help-text {
  font-family: var(--font-body) !important;
}

.address-picker__input {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 50px !important;
}

.address-picker__input--searching {
  border: 2px solid #007bff !important;
  animation: pulse-border 1s ease-in-out 4;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.address-picker__dropdown {
  position: absolute;
  border: 2px solid var(--color-primary);
  border-radius: 0 0 15px 15px;
  border-top: none;
  z-index: 100000;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
}

.address-picker__item {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.address-picker__item:first-child {
  margin-top: 4px;
}

.address-picker__item:hover {
  background-color: #e9e9e9;
}

.address-picker__item--active {
  background-color: DodgerBlue !important;
  color: #ffffff !important;
}

/* === Interest Capture Section === */
.interest-capture {
  transition: all 0.3s ease-in-out;
  transform-origin: top center;
}

.interest-capture__card {
  border: 2px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(6, 87, 158, 0.95) 0%, rgba(6, 87, 158, 0.85) 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
}

.interest-capture__form-control {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid var(--color-accent) !important;
  color: white !important;
  font-family: var(--font-body) !important;
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.interest-capture__form-control:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #f3bd65 !important;
  box-shadow: 0 0 0 0.25rem rgba(243, 189, 101, 0.25) !important;
  color: white !important;
}

.interest-capture__form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}


@keyframes gentle-pulse {
  0% {
    box-shadow: 0 2px 8px rgba(6, 87, 158, 0.1);
  }
  50% {
    box-shadow: 0 2px 12px rgba(6, 87, 158, 0.2);
  }
  100% {
    box-shadow: 0 2px 8px rgba(6, 87, 158, 0.1);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.interest-capture--show {
  animation: slideInFromTop 0.3s ease-out;
}

.interest-capture::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

@media (max-width: 768px) {
  .interest-capture__btn {
    font-size: 0.9rem;
    min-width: 180px;
  }
}

/* === Plan Summary Sidebar === */
.wizard__sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
  background: var(--bg-card);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.wizard__sidebar:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 22px 45px, rgba(0, 0, 0, 0.25) 0px 18px 15px;
}

.wizard__sidebar-content {
  padding: 2rem;
  position: relative;
}

.wizard__sidebar-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 25px 25px 0 0;
}

.wizard__sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
  user-select: none;
}

.wizard__sidebar-title {
  text-transform: capitalize;
  margin: 0;
}

.wizard__sidebar-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.25rem;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wizard__sidebar-toggle:hover {
  background-color: rgba(6, 87, 158, 0.1);
  color: var(--color-accent);
  transform: scale(1.1);
}

.wizard__sidebar-toggle i {
  transition: transform 0.3s ease;
}

.wizard__sidebar-section {
  margin-bottom: 1.5rem;
  background: rgba(6, 87, 158, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid rgba(234, 175, 70, 0.3);
}

.wizard__sidebar-divider {
  border: none;
  border-top: 3px solid var(--color-accent);
  margin: 1.5rem 0;
  opacity: 0.6;
}

.wizard__sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4e7d 100%);
  border-radius: var(--radius-sm);
  margin: -0.5rem -1rem 0 -1rem;
  box-shadow: 0 4px 15px rgba(6, 87, 158, 0.3);
  transition: all 0.3s ease;
}

.wizard__sidebar-total:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 87, 158, 0.4);
}

.wizard__sidebar-value {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--color-accent);
}

.wizard__sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(234, 175, 70, 0.2);
  transition: all 0.2s ease;
}

.wizard__sidebar-item:hover {
  background: rgba(234, 175, 70, 0.1);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
}

.wizard__sidebar-item:last-child {
  border-bottom: none;
}

.wizard__sidebar-footer {
  margin-top: 1.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 1rem 1.25rem;
  background: rgba(234, 175, 70, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(234, 175, 70, 0.3);
  text-align: center;
}

.wizard__sidebar-collapsed-total {
  display: none;
  margin-bottom: 1rem;
}

.wizard__sidebar-collapsible {
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .wizard__sidebar-toggle {
    display: none;
  }
  .wizard__sidebar-collapsed-total {
    display: none !important;
  }
  .wizard__sidebar-collapsible {
    max-height: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1024px) {
  .wizard__sidebar {
    order: -1;
    position: static;
    margin-bottom: 1rem;
  }

  .wizard__sidebar-header {
    margin-bottom: 0.75rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 0.5rem 0;
  }

  .wizard__sidebar-title {
    font-size: 1.1rem;
  }

  .wizard__sidebar-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
  }

  .wizard__sidebar--collapsed .wizard__sidebar-collapsible {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
  }

  .wizard__sidebar--collapsed .wizard__sidebar-collapsed-total {
    display: block;
  }

  .wizard__sidebar--collapsed .wizard__sidebar-toggle i {
    transform: rotate(180deg);
  }

  .wizard__sidebar:not(.wizard__sidebar--collapsed) .wizard__sidebar-collapsed-total {
    display: none;
  }
}

/* === Wizard Cards === */
.wizard__card {
  border: 2px solid rgba(234, 175, 70, 0.3);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
  transition: all 0.3s ease;
}

.wizard__card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px, rgba(0, 0, 0, 0.15) 0px 8px 20px;
  border-color: var(--color-accent);
}

.wizard__card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4e7d 100%) !important;
  border: none !important;
  padding: 1.5rem 2rem;
  position: relative;
}

.wizard__card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

.wizard__card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: white !important;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard__card-header i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.wizard__card-body {
  font-family: var(--font-body);
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* === Form Controls === */
.wizard__form-control {
  border: 2px solid rgba(6, 87, 158, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wizard__form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(234, 175, 70, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.wizard__form-control:hover {
  border-color: rgba(234, 175, 70, 0.6);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.wizard__form-control:invalid {
  background-color: rgba(220, 53, 69, 0.1);
}

.wizard__form-control:invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}

.wizard__form-control:valid {
  border-color: #28a745;
}

.wizard__form-control:valid:focus {
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
  border-color: #28a745;
}

/* === Selection Card (for plan/addon selection) === */
.wizard__selection-card {
  background: linear-gradient(135deg, rgba(0, 82, 155, 0.95) 0%, rgba(0, 82, 155, 0.85) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.wizard__selection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.wizard__selection-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 50px, rgba(0, 0, 0, 0.25) 0px 20px 20px;
  border-color: var(--color-accent);
}

.wizard__selection-card--selected {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(0, 82, 155, 0.9) 100%);
  box-shadow: 0 0 0 3px rgba(239, 177, 58, 0.4), rgba(0, 0, 0, 0.35) 0px 25px 50px;
}

.wizard__selection-card-body {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  z-index: 1;
  padding: 1.75rem;
  text-align: center;
}
.wizard__card-list-item {
  font-family: var(--font-body);
}
.wizard__card-subtitle {
  font-family: var(--font-heading);
}


.wizard__selection-checkbox {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--color-accent);
  background-color: transparent;
  transition: all 0.2s ease;
}

.wizard__selection-checkbox:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  background-image: none;
}

.wizard__selection-checkbox:checked::after {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* === Calendar Component === */
.calendar {
  background-color: rgb(229, 231, 229);
  border-radius: 30px;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.calendar__week-day {
  grid-template-columns: repeat(7, 1fr);
}

.calendar__week-day-cell {
  height: 50px;
  width: 50px;
}

.calendar__days {
  grid-template-columns: repeat(7, 1fr);
}

.calendar__day {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.calendar__day-available {
  background-color: #28a745 !important;
  border-radius: 50% !important;
  color: white !important;
}

.calendar__day-available:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4) !important;
  background-color: #34ce57 !important;
}

.calendar__day-available--selected {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(144, 238, 144, 0.5) !important;
  background-color: #90ee90 !important;
  border: 3px solid var(--color-primary) !important;
  border-radius: 50% !important;
  position: relative !important;
}

.calendar__day-unavailable {
  background-color: #dc3545 !important;
  border-radius: 50% !important;
  color: white !important;
  position: relative !important;
}

.calendar__day-unavailable::after {
  content: "X" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #000000 !important;
  font-size: 35px !important;
  font-weight: 900 !important;
  z-index: 10 !important;
  pointer-events: none !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3) !important;
}

.calendar__day-unavailable:hover {
  transform: translateY(1px) scale(1.02) !important;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3) !important;
  background-color: #e65d6d !important;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .calendar {
    width: 100%;
    max-width: 100%;
  }
  .calendar__week-day-cell,
  .calendar__day {
    height: 40px;
    width: 40px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .calendar {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
  .calendar__week-day-cell,
  .calendar__day {
    height: 35px;
    width: 35px;
    font-size: 0.75rem;
  }
  .calendar__day-unavailable::after {
    font-size: 25px !important;
  }
}

/* === Time Slots Component === */
.time-slots {
  background-color: rgb(229, 231, 229);
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  min-width: 400px;
  height: max-content;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.time-slots__button {
  min-height: 80px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border-width: 2px;
  border-color: #c3c2c8;
  color: #151426;
  position: relative;
  overflow: hidden;
}

.time-slots__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #d6e3ff !important;
  border-color: var(--color-primary) !important;
  color: #0d1117 !important;
}

.time-slots__button--selected {
  animation: selectPulse 0.3s ease-in-out;
}

@keyframes selectPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.time-slots__button:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .time-slots {
    min-width: 250px;
    transform: scale(0.85);
  }
  .time-slots__button {
    min-height: 60px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .time-slots {
    min-width: 220px;
    border-radius: 20px;
    transform: scale(0.95);
  }
  .time-slots__button {
    min-height: 55px;
    font-size: 0.8rem;
    border-radius: 10px;
  }
}

/* === Navigation Wrapper === */
.wizard__nav {
  padding: 2rem;
  border-top: 3px solid var(--color-accent);
  margin-top: 2rem;
  background: var(--bg-card);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: var(--font-body) !important;
}

.wizard__nav .btn {
  min-width: 100px;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

/* === Navigation Button States === */
.wizard__nav .btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-color: #28a745;
  color: white;
  font-weight: 700;
}

.wizard__nav .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838 0%, #1dc5a3 100%);
}

.wizard__nav .btn:disabled,
.wizard__nav .btn.btn-disabled-state {
  opacity: 0.5;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
  filter: grayscale(0.3);
}

.wizard__nav .btn:disabled:hover,
.wizard__nav .btn.btn-disabled-state:hover {
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Override for enabled buttons */
.wizard__nav .btn:not(:disabled):not(.btn-disabled-state) {
  cursor: pointer !important;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
}

.wizard__nav .btn:not(:disabled):not(.btn-disabled-state):hover {
  cursor: pointer !important;
}

/*============================================
  NEWS TICKER SECTION
  ============================================ */
.news-ticker {
  background: linear-gradient(45deg, var(--everfast-blue) 0%, #0066cc 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 82, 155, 0.3);
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
  border: 2px solid var(--color-accent);
}

.news-ticker__label {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.news-ticker__content {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.news-ticker__text {
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  padding-left: 30px;
  animation: scroll-ticker 15s linear 1;
  line-height: 1.2;
}

.news-ticker__highlight {
  color: var(--color-accent);
  font-weight: 700;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.news-ticker:hover .news-ticker__text {
  animation-play-state: paused;
}

.news-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to left, var(--everfast-blue), transparent);
  z-index: 5;
  pointer-events: none;
}

.news-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, var(--everfast-blue), transparent);
  z-index: 5;
  pointer-events: none;
}

.news-ticker__pause-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
}

.news-ticker__pause-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.news-ticker--paused .news-ticker__text {
  animation-play-state: paused;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .news-ticker__text {
    animation: none;
    transform: translateX(0);
    text-align: center;
    padding: 0 20px;
  }

  .news-ticker__pause-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .news-ticker {
    height: 50px;
  }

  .news-ticker__label {
    font-size: 0.8rem;
    padding: 0 15px;
  }

  .news-ticker__text {
    font-size: 0.9rem;
    animation-duration: 26s;
    padding-left: 15px;
  }
}

@media (max-width: 576px) {
  .news-ticker {
    height: 45px;
  }

  .news-ticker__label {
    font-size: 0.75rem;
    padding: 0 12px;
  }

  .news-ticker__text {
    font-size: 0.85rem;
    animation-duration: 24s;
    padding-left: 12px;
  }

  .news-ticker__pause-btn {
    width: 30px;
    height: 30px;
    right: 8px;
  }
}

