/* ═══════════════════════════════════════════════════════════════════════════
   FASTR BOOKING WIZARD — Sensational Photography
   Premium 4-step booking experience
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── OVERLAY & WIZARD CONTAINER ─────────────────────────────────────────── */
.fastr-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
  overflow-y: auto;
}

.fastr-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.fastr-wizard {
  background: linear-gradient(160deg, #0e0e14 0%, #111118 50%, #0c0c12 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.06),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(212,175,55,0.04);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.fastr-wizard::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: url('/images/fastr/fastr_logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.fastr-header,
.fastr-progress,
.fastr-body,
.fastr-footer {
  position: relative;
  z-index: 1;
}

.fastr-overlay.is-open .fastr-wizard {
  transform: translateY(0) scale(1);
}

/* ── WIZARD HEADER ──────────────────────────────────────────────────────── */
.fastr-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(212,175,55,0.04) 0%, transparent 100%);
}

.fastr-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fastr-logo-badge-img {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(14, 14, 20, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.fastr-logo-badge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fastr-header-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.fastr-header-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: 2px;
}

.fastr-close-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.fastr-close-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

/* ── PROGRESS STEPS ─────────────────────────────────────────────────────── */
.fastr-progress {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.fastr-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.fastr-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.fastr-step-item:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 12px;
  transition: background 0.4s ease;
}

.fastr-step-item.done:not(:last-child)::after,
.fastr-step-item.active:not(:last-child)::after {
  background: linear-gradient(90deg, #d4af37, rgba(212,175,55,0.3));
}

.fastr-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}

.fastr-step-item.done .fastr-step-dot {
  background: rgba(212,175,55,0.15);
  border-color: #d4af37;
  color: #d4af37;
}

.fastr-step-item.active .fastr-step-dot {
  background: linear-gradient(135deg, #d4af37, #f5d470);
  border-color: #d4af37;
  color: #0a0a0f;
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
  transform: scale(1.1);
}

.fastr-step-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.fastr-step-item.active .fastr-step-label {
  color: rgba(212,175,55,0.9);
}

.fastr-step-item.done .fastr-step-label {
  color: rgba(255,255,255,0.55);
}

@media (max-width: 600px) {
  .fastr-step-label { display: none; }
  .fastr-progress { padding: 14px 20px; }
}

/* ── WIZARD BODY ────────────────────────────────────────────────────────── */
.fastr-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.fastr-body::-webkit-scrollbar {
  width: 4px;
}

.fastr-body::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 2px;
}

.fastr-step-panel {
  display: none;
  padding: 28px 32px;
  animation: fastrFadeIn 0.3s ease;
}

.fastr-step-panel.is-active {
  display: block;
}

@keyframes fastrFadeIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0);    }
}

.fastr-step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.fastr-step-heading em {
  color: #d4af37;
  font-style: italic;
}

.fastr-step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 28px;
  font-family: 'DM Sans', sans-serif;
}

/* ── STEP 1: SERVICE SELECTOR ────────────────────────────────────────────── */
.fastr-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.fastr-service-card {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
}

.fastr-service-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.05);
  transform: translateY(-1px);
}

.fastr-service-card.selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.fastr-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.fastr-service-card.selected .fastr-service-icon {
  background: rgba(212,175,55,0.25);
}

.fastr-service-info {
  flex: 1;
  min-width: 0;
}

.fastr-service-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 3px;
}

.fastr-service-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fastr-service-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
  color: transparent;
}

.fastr-service-card.selected .fastr-service-check {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0a0f;
}

/* ── STEP 2: CREW BUILDER ────────────────────────────────────────────────── */
.fastr-crew-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.fastr-crew-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 20px;
  transition: border-color 0.25s ease;
  gap: 16px;
}

.fastr-crew-row.has-members {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}

.fastr-crew-emoji {
  font-size: 1.5rem;
  width: 42px;
  text-align: center;
  flex-shrink: 0;
}

.fastr-crew-info {
  flex: 1;
  min-width: 0;
}

.fastr-crew-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 2px;
}

.fastr-crew-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}

.fastr-crew-rate {
  font-size: 0.78rem;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.fastr-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fastr-counter-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 300;
  line-height: 1;
}

.fastr-counter-btn:hover {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
  color: #d4af37;
}

.fastr-counter-btn:active {
  transform: scale(0.92);
}

.fastr-counter-btn.minus:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.fastr-counter-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  min-width: 20px;
  text-align: center;
  transition: transform 0.15s ease, color 0.15s ease;
}

.fastr-counter-val.bump {
  transform: scale(1.3);
  color: #d4af37;
}

/* DAYS SELECTOR */
.fastr-days-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 20px;
}

.fastr-days-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}

.fastr-days-label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── STEP 3: DETAILS ─────────────────────────────────────────────────────── */
.fastr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fastr-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fastr-form-group.full-width {
  grid-column: 1 / -1;
}

.fastr-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fastr-input,
.fastr-textarea,
.fastr-select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.fastr-input:focus,
.fastr-textarea:focus,
.fastr-select:focus {
  border-color: rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.fastr-input::placeholder,
.fastr-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.fastr-textarea {
  resize: vertical;
  min-height: 90px;
}

.fastr-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fastr-select option {
  background: #1a1a24;
  color: #fff;
}

.fastr-input[type="date"] {
  color-scheme: dark;
}

@media (max-width: 600px) {
  .fastr-form-grid { grid-template-columns: 1fr; }
}

/* ── STEP 4: REVIEW & PAY ────────────────────────────────────────────────── */
/* ── STEP 4: REVIEW & PAY ────────────────────────────────────────────────── */
.fastr-review-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .fastr-review-grid { grid-template-columns: 1fr; gap: 20px; }
}

.fastr-summary-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fastr-summary-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.fastr-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
}

.fastr-summary-row:last-child {
  border-bottom: none;
}

.fastr-summary-row .label {
  color: rgba(255,255,255,0.45);
}

.fastr-summary-row .value {
  color: #fff;
  font-weight: 400;
  text-align: right;
}

.fastr-summary-val-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fastr-edit-link {
  font-size: 0.65rem;
  color: #d4af37;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, border-bottom 0.2s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.fastr-edit-link:hover {
  border-bottom-color: #d4af37;
}

.fastr-summary-row:hover .fastr-edit-link {
  opacity: 1;
}

.fastr-summary-row.total-row {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.fastr-summary-row.total-row .label {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.fastr-summary-row.total-row .value {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.15rem;
}

.fastr-discount-row .value {
  color: #4ade80;
}

/* Payment breakdown card */
.fastr-payment-split {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fastr-payment-split h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.fastr-split-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: 'DM Sans', sans-serif;
}

.fastr-split-item:last-child { border-bottom: none; }

.fastr-split-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fastr-split-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-now {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-later {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fastr-split-name {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.fastr-split-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.fastr-split-item:first-child .fastr-split-amount {
  color: #d4af37;
}

/* ── DISCOUNT INPUT ──────────────────────────────────────────────────────── */
.fastr-discount-wrap {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.fastr-discount-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: all 0.2s ease;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fastr-discount-input:focus {
  border-color: rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.fastr-discount-input::placeholder {
  color: rgba(255,255,255,0.22);
  text-transform: none;
  letter-spacing: 0;
}

.fastr-apply-btn {
  padding: 12px 20px;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fastr-apply-btn:hover {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.5);
}

.fastr-discount-msg {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  padding: 8px 12px;
  border-radius: 8px;
  display: none;
}

.fastr-discount-msg.success {
  display: block;
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
}

.fastr-discount-msg.error {
  display: block;
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ── BOTTOM TICKER BAR ───────────────────────────────────────────────────── */
.fastr-ticker {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 32px;
  background: rgba(4,4,8,0.8);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.fastr-ticker-info {
  flex: 1;
  min-width: 0;
}

.fastr-ticker-crew {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fastr-ticker-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.fastr-ticker-price.price-bump {
  transform: scale(1.08);
  color: #f5d470;
}

.fastr-ticker-advance {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
}

.fastr-ticker-advance span {
  color: rgba(212,175,55,0.7);
}

.fastr-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.fastr-btn-back {
  padding: 11px 20px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fastr-btn-back:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.fastr-btn-next {
  padding: 11px 24px;
  background: linear-gradient(135deg, #d4af37, #c9a227);
  border: none;
  border-radius: 12px;
  color: #0a0a0f;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fastr-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
  background: linear-gradient(135deg, #e0be4a, #d4af37);
}

.fastr-btn-next:active {
  transform: translateY(0);
}

.fastr-btn-next:disabled,
.fastr-btn-back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.fastr-btn-pay {
  padding: 13px 28px;
  background: linear-gradient(135deg, #d4af37, #c9a227);
  border: none;
  border-radius: 14px;
  color: #0a0a0f;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.fastr-btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}

.fastr-btn-pay.loading {
  opacity: 0.7;
  cursor: wait;
}

/* Razorpay security badge */
.fastr-rzp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Sans', sans-serif;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}

/* ── SUCCESS PANEL ───────────────────────────────────────────────────────── */
.fastr-success-panel {
  display: none;
  padding: 48px 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.fastr-success-panel.is-active {
  display: flex;
}

.fastr-success-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border: 2px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 24px;
  animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 0 16px rgba(212,175,55,0); }
}

.fastr-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px;
}

.fastr-success-title em { color: #d4af37; font-style: italic; }

.fastr-success-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  max-width: 440px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.fastr-booking-id-chip {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.fastr-booking-id-chip strong {
  color: #d4af37;
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
}

.fastr-whatsapp-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
}

.fastr-btn-done {
  padding: 12px 32px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fastr-btn-done:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ── SERVICE CARD FASTR BUTTONS ─────────────────────────────────────────── */
.service-card .service-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-fastr-express {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  border: 1.5px solid rgba(212,175,55,0.4);
  border-radius: 10px;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.btn-fastr-express:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.15));
  border-color: rgba(212,175,55,0.7);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,175,55,0.2);
  color: #d4af37;
}

.btn-view-pkg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-view-pkg:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* existing service-link hide override */
.service-card .service-link { display: none !important; }

/* Crew Icon Badge Styling */
.fastr-crew-icon-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 72px;
  flex-shrink: 0;
}

/* ── MOBILE ADJUSTMENTS ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .fastr-header, .fastr-step-panel { padding: 20px; }
  .fastr-ticker { padding: 12px 20px; }
  .fastr-step-heading { font-size: 1.4rem; }
  .fastr-ticker-crew { display: none; }
  .fastr-rzp-badge { display: none; }
  .fastr-btn-pay { padding: 12px 18px; font-size: 0.88rem; }
  
  /* Crew Row Responsive Grid Layout */
  .fastr-crew-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
    padding: 14px;
  }
  .fastr-crew-icon-badge {
    grid-column: 1;
    grid-row: 1;
  }
  .fastr-crew-info {
    grid-column: 2;
    grid-row: 1;
  }
  .fastr-crew-rate {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
  }
  .fastr-crew-row .fastr-counter {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 8px;
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  /* Full screen modal experience on mobile */
  .fastr-overlay {
    padding: 0;
  }
  .fastr-wizard {
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
  }
}

@media (max-width: 480px) {
  .fastr-service-grid { grid-template-columns: 1fr; }
  .fastr-nav-btns { gap: 8px; }
  .fastr-btn-back { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   FASTR — EQUIPMENT RENTAL EXTENSION (v2)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── STEP 0: BOOKING MODE SELECTOR ──────────────────────────────────────── */
.fastr-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .fastr-mode-grid { grid-template-columns: 1fr; gap: 10px; }
}

.fastr-mode-card {
  background: rgba(255,255,255,0.02);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 26px 18px 22px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.fastr-mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.fastr-mode-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.fastr-mode-card:hover::before { opacity: 1; }

.fastr-mode-card.selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.2), 0 16px 40px rgba(0,0,0,0.5);
}

.fastr-mode-card.selected::before { opacity: 1; }

.fastr-mode-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  transition: all 0.28s ease;
}

.fastr-mode-card.selected .fastr-mode-icon {
  background: linear-gradient(135deg, #d4af37, #f5d470);
  color: #0a0a0f;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.fastr-mode-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.fastr-mode-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.fastr-mode-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: #d4af37;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.fastr-mode-card.selected .fastr-mode-badge {
  opacity: 1;
}

/* ── EQUIPMENT CATEGORY TABS ─────────────────────────────────────────────── */
.fastr-equip-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.fastr-equip-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.fastr-equip-tab:hover {
  border-color: rgba(212,175,55,0.4);
  color: rgba(212,175,55,0.9);
  background: rgba(212,175,55,0.06);
}

.fastr-equip-tab.active {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.08));
  border-color: rgba(212,175,55,0.6);
  color: #d4af37;
  box-shadow: 0 2px 12px rgba(212,175,55,0.15);
}

.fastr-equip-tab-badge {
  background: rgba(212,175,55,0.25);
  color: #d4af37;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
}

/* ── EQUIPMENT ITEMS GRID ────────────────────────────────────────────────── */
.fastr-equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  animation: fastrFadeIn 0.3s ease;
}

@media (max-width: 600px) {
  .fastr-equip-grid { grid-template-columns: 1fr; }
}

.fastr-equip-card {
  background: rgba(255,255,255,0.025);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  position: relative;
}

.fastr-equip-card:hover {
  border-color: rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.03);
}

.fastr-equip-card.has-qty {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.fastr-equip-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fastr-equip-cat-badge {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 8px;
  text-align: center;
  flex-shrink: 0;
  min-width: 50px;
}

.fastr-equip-info {
  flex: 1;
  min-width: 0;
}

.fastr-equip-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 2px;
  line-height: 1.3;
}

.fastr-equip-subtitle {
  font-size: 0.72rem;
  color: rgba(212,175,55,0.7);
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 4px;
}

.fastr-equip-spec {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.4;
}

.fastr-equip-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}

.fastr-equip-rate {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d4af37;
  font-family: 'DM Sans', sans-serif;
}

.fastr-equip-rate span {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

/* ── EQUIPMENT SELECTION SUMMARY BAR ─────────────────────────────────────── */
.fastr-equip-summary-bar {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  gap: 12px;
  flex-wrap: wrap;
}

.fastr-equip-summary-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.fastr-equip-summary-count strong {
  color: #d4af37;
  font-size: 0.92rem;
}

.fastr-equip-summary-total {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.fastr-equip-summary-total span {
  color: #d4af37;
  font-size: 1rem;
}

/* ── VERIFICATION NOTICE (DigiLocker / Undertaking) ─────────────────────── */
.fastr-verification-notice {
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
}

.fastr-verification-notice h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.fastr-verification-notice ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fastr-verification-notice li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.fastr-verification-notice li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(212,175,55,0.6);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── DELIVERY OPTIONS ────────────────────────────────────────────────────── */
.fastr-delivery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

@media (max-width: 480px) {
  .fastr-delivery-row { grid-template-columns: 1fr; }
}

.fastr-delivery-opt {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fastr-delivery-opt:hover {
  border-color: rgba(212,175,55,0.3);
}

.fastr-delivery-opt.selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.08);
}

.fastr-delivery-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.fastr-delivery-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fastr-delivery-opt.selected .fastr-delivery-dot {
  border-color: #d4af37;
}

.fastr-delivery-opt.selected .fastr-delivery-dot::after {
  opacity: 1;
}

.fastr-delivery-opt-info {
  flex: 1;
}

.fastr-delivery-opt-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.fastr-delivery-opt-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

/* Delivery address input — shown only when delivery is selected */
.fastr-delivery-address-wrap {
  display: none;
  margin-top: 4px;
  animation: fastrFadeIn 0.25s ease;
}

.fastr-delivery-address-wrap.visible {
  display: block;
}

/* ── REVIEW — EQUIPMENT LINE ITEMS ──────────────────────────────────────── */
.fastr-equip-review-list {
  margin-top: 6px;
}

.fastr-equip-review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  gap: 8px;
}

.fastr-equip-review-item:last-child {
  border-bottom: none;
}

.fastr-equip-review-name {
  color: rgba(255,255,255,0.65);
  flex: 1;
  line-height: 1.3;
}

.fastr-equip-review-qty {
  font-size: 0.7rem;
  color: rgba(212,175,55,0.7);
  background: rgba(212,175,55,0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
  flex-shrink: 0;
}

.fastr-equip-review-price {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}

/* ── REVIEW BREAKDOWN SUB-TOTALS ─────────────────────────────────────────── */
.fastr-subtotal-block {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.fastr-subtotal-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}

.fastr-subtotal-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}

/* ── SECTION DIVIDER inside wizard body ─────────────────────────────────── */
.fastr-section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
}

.fastr-section-divider span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fastr-section-divider::before,
.fastr-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

/* ── STEP PANEL: MODE STEP (panel 0) ─────────────────────────────────────── */
.fastr-mode-tagline {
  display: inline-block;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: rgba(212,175,55,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  font-family: 'DM Sans', sans-serif;
}

/* ── TICKER MODE INDICATOR ───────────────────────────────────────────────── */
.fastr-ticker-mode {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  color: #d4af37;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  vertical-align: middle;
  margin-right: 6px;
}

/* ── SCROLL CONTAINER for equipment grid ─────────────────────────────────── */
.fastr-equip-scroll {
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
  padding-right: 4px;
}

.fastr-equip-scroll::-webkit-scrollbar { width: 4px; }
.fastr-equip-scroll::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 2px;
}

@media (max-width: 600px) {
  .fastr-equip-scroll { max-height: none; }
}

/* ── VERIFICATION BLOCK (Aadhaar / Undertaking) ─────────────────────────── */
.fastr-verification-block {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.fastr-vb-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.fastr-vb-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #d4af37;
  flex-shrink: 0;
}

.fastr-vb-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.fastr-vb-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.fastr-vb-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.fastr-vb-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fastr-vb-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
}

.fastr-vb-step-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fastr-vb-step-info strong {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.fastr-vb-step-info span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Checkbox Styling */
.fastr-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.fastr-checkbox-label input[type="checkbox"] {
  display: none;
}

.fastr-checkmark {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}

.fastr-checkbox-label input[type="checkbox"]:checked + .fastr-checkmark {
  background: #d4af37;
  border-color: #d4af37;
}

.fastr-checkbox-label input[type="checkbox"]:checked + .fastr-checkmark::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ─── WEB APP SELECTION CARD (DETAILS STEP 1) ──────────────────────────────── */
.fastr-selection-review-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.fsrb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.fsrb-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

.fsrb-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
}

.fsrb-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fsrb-row {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
}

.fsrb-row strong {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  display: inline-block;
  width: 75px;
}

/* ─── DIGILOCKER PANEL (STEP 3) ───────────────────────────────────────────── */
.fastr-digilocker-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 10px 0;
  position: relative;
}

.dl-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 14px;
}

.dl-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1.5px solid #3b82f6;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.dl-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.dl-tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.dl-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  margin: 12px 0 20px 0;
}

.dl-timer-wrap {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}

#dlTimer {
  color: #eab308;
  font-weight: 700;
}

/* DigiLocker Success Section */
.dl-success-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.fastr-digilocker-container h4 {
  text-align: center;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}

.dl-success-detail {
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-bottom: 20px;
}

.dl-profile-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dl-profile-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #fff;
}

.dl-profile-row .lbl {
  color: rgba(255,255,255,0.45);
}

/* ─── UNDERTAKING CONTAINER (STEP 4) ──────────────────────────────────────── */
.fastr-undertaking-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

.undertaking-text-box {
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.undertaking-text-box h4 {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: #d4af37;
  margin-bottom: 12px;
  text-align: center;
}

.undertaking-text-box p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 10px;
}

.signature-preview-wrap {
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  background: rgba(212, 175, 55, 0.02);
  text-align: center;
}

.sig-preview-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.sig-preview-text {
  font-family: 'Playfair Display', 'Alex Brush', cursive, Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #d4af37;
  letter-spacing: 1px;
  padding: 8px 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ─── PAYMENT POLICY STYLING FIX ─────────────────────────────────────────── */
.fastr-payment-split {
  margin-top: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.fastr-payment-split h4 {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fastr-split-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fastr-split-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fastr-split-badge {
  font-size: 0.64rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid;
}

.badge-now {
  background: rgba(74, 222, 128, 0.15);
  border-color: #4ade80;
  color: #4ade80;
}

.fastr-split-name {
  font-size: 0.86rem;
  color: #fff;
}

.fastr-split-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* Cursive font fallback for digital signature */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* ── 3D CINEMATIC OVERLAY & TILT EFFECTS ─────────────────────────────────── */
.tilt-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Base style resets to make background images blend perfectly */
.package-card.tilt-card,
.fastr-equip-card.tilt-card {
  background: rgba(14, 14, 20, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.card-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.18; /* subtle baseline for readability */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
}

.tilt-card:hover .card-bg-image {
  transform: scale(1.08) translateZ(-10px); /* slightly recedes to create depth */
  opacity: 0.48; /* pop on hover */
}

/* Glass overlay for blending images and readability */
.card-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(14, 14, 20, 0.3) 0%, rgba(10, 10, 15, 0.95) 95%);
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.4s ease;
}

.tilt-card:hover .card-glass-overlay {
  background: linear-gradient(to bottom, rgba(14, 14, 20, 0.1) 0%, rgba(10, 10, 15, 0.88) 95%);
}

/* Glare overlay */
.card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  border-radius: inherit;
  background: transparent;
  transition: background 0.15s ease-out;
}

/* Parallax floating depth */
.parallax-depth {
  position: relative;
  z-index: 3;
  transform: translateZ(0px);
  transition: transform 0.25s ease-out;
}

/* Adjust pointer events for interactive elements inside cards */
.parallax-depth button,
.parallax-depth a {
  pointer-events: auto;
}

/* Ensure child layouts look perfect on top of backdrop */
.fastr-equip-card-top,
.fastr-equip-card-bottom,
.package-card-header,
.package-card-desc,
.pkg-crew,
.pkg-crew-note,
.pkg-price-row,
.pkg-action-row {
  position: relative;
  z-index: 3;
}

/* ── INTERACTIVE CURSOR GLOW FOR TILT CARDS ────────────────────────────── */
.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(212, 175, 55, 0.45), /* Rich Gold glow border */
    transparent 50%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    450px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(212, 175, 55, 0.05), /* Subtle gold background glow */
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tilt-card:hover::before,
.tilt-card:hover::after {
  opacity: 1;
}

/* ── 3D STEP TRANSITIONS ────────────────────────────────────────────────── */
.fastr-body.step-transitioning {
  perspective: 1500px;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden !important;
}

@keyframes deckExitNext {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, -300px) rotateY(-45deg);
  }
}

@keyframes deckEnterNext {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, -300px) rotateY(45deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
}

@keyframes deckExitPrev {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, -300px) rotateY(45deg);
  }
}

@keyframes deckEnterPrev {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, -300px) rotateY(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
}

.deck-exit-next {
  animation: deckExitNext 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  pointer-events: none;
}

.deck-enter-next {
  animation: deckEnterNext 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.deck-exit-prev {
  animation: deckExitPrev 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  pointer-events: none;
}

.deck-enter-prev {
  animation: deckEnterPrev 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


