/* Kolay Transfer — 3 Adımlı Stepper */
.transfer-modal .modal-dialog {
  max-width: 640px;
}

.transfer-modal .transfer-modal-top {
  background: linear-gradient(135deg, #1A2332 0%, #0066CC 55%, #00A3E0 100%);
  padding: 1.5rem 1.75rem 2.25rem;
  position: relative;
}

.transfer-modal .transfer-modal-top::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1.25rem;
  background: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
}

.transfer-modal .transfer-modal-top .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.transfer-modal .transfer-modal-top h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.transfer-modal .transfer-modal-top p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

/* Stepper */
.transfer-stepper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0 0.25rem;
}

.transfer-step {
  flex: 0 0 4.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transfer-step-connector {
  flex: 1 1 0;
  min-width: 1.5rem;
  height: 2px;
  margin-top: 1.125rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 1px;
  transition: background 0.3s ease;
}

.transfer-step-connector.is-done {
  background: rgba(255, 255, 255, 0.85);
}

.transfer-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.transfer-step-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.transfer-step.active .transfer-step-num {
  background: #fff;
  color: #0066CC;
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.transfer-step.active .transfer-step-label {
  color: #fff;
  font-weight: 600;
}

.transfer-step.done .transfer-step-num {
  background: #fff;
  color: #10B981;
  border-color: #fff;
}

.transfer-step.done .transfer-step-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Panels */
.transfer-panel { display: none; }
.transfer-panel.active { display: block; }

.transfer-modal .modal-body {
  padding: 0.75rem 1.75rem 1rem;
  min-height: 320px;
}

.transfer-modal .modal-footer,
.transfer-modal-footer {
  padding: 0 1.75rem 1.5rem;
  border: none;
  background: #fff;
}

.transfer-info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
}

.transfer-info-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.transfer-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.transfer-info-item:first-child { padding-top: 0; }

.transfer-info-item .icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #e6f2ff;
  color: #0066CC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.transfer-price-box {
  background: linear-gradient(135deg, #e6f2ff 0%, #f0f9ff 100%);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.transfer-price-box .price-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0066CC;
  line-height: 1.1;
}

.transfer-summary dt {
  font-size: 0.75rem;
  color: #8c95a5;
  font-weight: 500;
}

.transfer-summary dd {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.transfer-summary dd:last-child { margin-bottom: 0; }
