/* ======================================================
   ANDAMAN WIZARD - DEDICATED CHECKOUT & PAYMENT PAGE STYLES
   ====================================================== */

/* --- Step Progress Bar --- */
.checkout-steps-bar {
  background: var(--dark-navy);
  padding: 12px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  font-weight: 600;
  font-size: 0.82rem;
}

.step-item.active {
  opacity: 1;
  color: var(--brand-sky);
}

.step-item.completed {
  opacity: 0.9;
  color: #10B981;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-item.active .step-number {
  background: var(--brand-sky);
  color: var(--dark-navy);
}

.step-item.completed .step-number {
  background: #10B981;
  color: #fff;
}

.step-divider {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

/* --- Top Summary Banner --- */
.checkout-header-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.checkout-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.payment-method-card {
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  background: #F8FAFC;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.payment-method-card:hover,
.payment-method-card.selected {
  border-color: var(--brand-sky);
  background: #F0F8FE;
  box-shadow: 0 2px 8px rgba(88, 182, 236, 0.12);
}

.fare-summary-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

/* Success Confirmation */
.success-checkmark-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.qr-ticket-box {
  background: #ffffff;
  border: 2px dashed var(--brand-sky);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

/* --- Mobile High Conversion & Trust Enhancements --- */
.trust-badge-strip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1E293B;
}

.mobile-sticky-bottom-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: #ffffff !important;
  border-top: 1px solid #E2E8F0 !important;
  box-shadow: 0 -8px 25px rgba(15, 23, 42, 0.18) !important;
  padding: 12px 16px !important;
}

@media (min-width: 992px) {
  .mobile-sticky-bottom-bar {
    display: none !important;
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: 85px !important;
  }
  .checkout-header-banner {
    padding: 16px 0;
  }
  .checkout-header-banner h2 {
    font-size: 1.35rem;
  }
  .checkout-card {
    padding: 16px;
    border-radius: 12px;
  }
  .step-item span:not(.step-number) {
    font-size: 0.75rem;
  }
}

