/* ==========================================================================
   FloatLink Agent App & Portal CSS (Light & Modern Aesthetic)
   Designed to match the 4 Main Processes iOS/Android UI
   ========================================================================== */

:root {
  --app-bg: #F8FAFC;
  --app-card: #FFFFFF;
  --app-card-subtle: #F1F5F9;
  --app-border: #E2E8F0;
  --app-text: #0F172A;
  --app-text-muted: #64748B;
  
  --app-primary: #2563EB;
  --app-primary-hover: #1D4ED8;
  --app-primary-light: #EFF6FF;
  
  --app-success: #2ECC71;
  --app-success-dark: #10B981;
  --app-success-light: #ECFDF5;
  
  --app-danger: #EF4444;
  --app-warning: #F59E0B;
  
  --mtn-yellow: #FFCC00;
  --airtel-red: #E40000;
  --zamtel-green: #00A651;
  --zanaco-orange: #FF8C42;
  --fnb-teal: #00B4D8;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

/* App Container Layout */
.app-portal-wrapper {
  position: relative;
  background-color: #0B132B;
  min-height: 100vh;
  padding-top: calc(var(--nav-h, 80px) + 2.25rem);
  padding-bottom: 3.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.app-portal-wrapper #network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.75;
  pointer-events: none;
}

.app-portal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  background: var(--app-bg);
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
  .app-portal-container {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
}

/* Sidebar / Navigation */
.app-sidebar {
  background: #0F172A;
  color: #FFFFFF;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #1E293B;
}

.app-user-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.app-user-profile:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(30, 41, 59, 0.75);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.15);
}

.user-avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  letter-spacing: -0.5px;
}

.user-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #0F172A;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

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

.user-info h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F8FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}

.user-info span {
  font-size: 0.73rem;
  color: #94A3B8;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
}

/* Quick Admin Panel Card */
.admin-quick-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: #94A3B8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.admin-quick-card:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.admin-quick-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #60A5FA;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.admin-quick-header i {
  font-size: 1.05rem;
}

.admin-credentials {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  margin: 0.4rem 0;
  font-size: 0.76rem;
}

.admin-credentials-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.admin-credentials-row:last-child {
  margin-bottom: 0;
}

.admin-credentials-label {
  color: #64748B;
  font-weight: 600;
}

.admin-credentials-val {
  color: #F8FAFC;
  font-weight: 600;
  font-family: 'Space Grotesk', monospace;
}

.admin-console-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.55rem 0.85rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 10px;
  color: #60A5FA;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.admin-console-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.admin-console-btn i {
  transition: transform 0.2s ease;
}

.admin-console-btn:hover i {
  transform: translateX(3px) translateY(-1px);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.nav-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: 100%;
}

.nav-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.nav-tab-btn.active {
  color: #FFFFFF;
  background: var(--app-primary);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.nav-tab-btn i {
  font-size: 1.3rem;
}

.sidebar-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #1E293B;
}

.btn-logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #F87171;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.2);
}

/* Main Content Area */
.app-main-content {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 800px;
  background: #F8FAFC;
}

@media (max-width: 600px) {
  .app-main-content {
    padding: 1.5rem 1rem;
  }
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.process-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--app-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.process-subtitle {
  color: var(--app-text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* Phone UI Mockup Card (Simulating real smartphone on app.php) */
.mobile-ui-card {
  max-width: 395px;
  margin: 0.5rem auto 1.5rem;
  background: var(--app-card);
  border-radius: 40px;
  border: 12px solid #0F172A;
  outline: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.8rem 1.35rem 1.5rem;
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(0.97);
  transform-style: preserve-3d;
  box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(37, 99, 235, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  animation: fadeInScale 0.4s ease forwards;
}

.mobile-ui-card::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 14px;
  background: #0F172A;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.mobile-ui-card:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) translateY(-8deg) scale(0.99);
  box-shadow: -8px 30px 60px rgba(0, 0, 0, 0.55), 0 0 45px rgba(37, 99, 235, 0.3);
}

@keyframes fadeInScale {
  from { opacity: 0; transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) scale(0.93); }
  to { opacity: 1; transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(0.97); }
}

@media (max-width: 480px) {
  .mobile-ui-card {
    max-width: 100%;
    border-width: 8px;
    border-radius: 28px;
    transform: none;
  }
  .mobile-ui-card:hover {
    transform: none;
  }
}

.mobile-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--app-border);
}

.mobile-ui-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--app-text);
  margin: 0;
}

/* Process 1: Wallet Dashboard */
.wallet-balance-banner {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border-radius: 20px;
  padding: 1.75rem;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.wallet-balance-banner::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.balance-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.balance-val {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0.4rem 0 1rem;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ECC71;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.audit-trail-banner {
  background: var(--app-card-subtle);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--app-border);
}

.audit-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #3B82F6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.audit-text h5 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--app-text);
}

.audit-text p {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--app-text-muted);
}

.connected-wallets-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wallet-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--app-card);
  border: 1px solid var(--app-border);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.wallet-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.wallet-net-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.net-circle-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: white;
  box-shadow: var(--shadow-sm);
}

.net-circle-ico.mtn { background: var(--mtn-yellow); color: #000; }
.net-circle-ico.airtel { background: var(--airtel-red); }
.net-circle-ico.zamtel { background: var(--zamtel-green); }
.net-circle-ico.zanaco { background: var(--zanaco-orange); }
.net-circle-ico.fnb { background: var(--fnb-teal); }

.wallet-net-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--app-text);
}

.wallet-net-bal {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--app-text);
  font-family: 'Space Grotesk', sans-serif;
}

/* Process 2 & 3: Pull & Send Float Forms */
.form-card-section {
  margin-bottom: 1.25rem;
}

.form-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--app-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.select-card-box {
  background: var(--app-card-subtle);
  border: 1px solid var(--app-border);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-card-box:hover {
  border-color: var(--app-primary);
  background: #E2E8F0;
}

.swap-arrow-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--app-success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.swap-arrow-indicator.blue {
  background: var(--app-primary);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.amount-input-box {
  background: var(--app-card);
  border: 2px solid var(--app-border);
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.amount-input-box:focus-within {
  border-color: var(--app-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.amount-input-box input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--app-text);
  width: 100%;
  outline: none;
  font-family: 'Space Grotesk', sans-serif;
}

.quick-amount-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.amt-pill {
  flex: 1;
  padding: 0.5rem;
  background: var(--app-card-subtle);
  border: 1px solid var(--app-border);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--app-text);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.amt-pill:hover {
  background: #E2E8F0;
}

.amt-pill.max {
  background: var(--app-success);
  color: white;
  border-color: var(--app-success);
}

.pin-boxes-grid {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 0.75rem 0 1.5rem;
}

.pin-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 2px solid var(--app-border);
  background: var(--app-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--app-text);
  box-shadow: var(--shadow-sm);
}

.pin-box.filled {
  border-color: var(--app-primary);
  background: var(--app-primary-light);
}

.btn-app-action {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-app-action.green {
  background: var(--app-success);
  color: white;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.35);
}

.btn-app-action.green:hover {
  background: var(--app-success-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.45);
}

.btn-app-action.blue {
  background: var(--app-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-app-action.blue:hover {
  background: var(--app-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);
}

/* Process 4: Success Screen */
.success-screen-center {
  text-align: center;
  padding: 1.5rem 0;
}

.success-check-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--app-success-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
}

.success-check-circle::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--app-success);
  border-radius: 50%;
}

.success-check-circle i {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
}

.success-title {
  color: var(--app-success);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}

.success-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--app-text);
  margin: 0.3rem 0 0.2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.success-route {
  color: var(--app-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.receipt-details-card {
  background: var(--app-card-subtle);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
  border: 1px solid var(--app-border);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.receipt-row:not(:last-child) {
  border-bottom: 1px dashed var(--app-border);
}

.receipt-lbl { color: var(--app-text-muted); font-weight: 500; }
.receipt-val { color: var(--app-text); font-weight: 700; }

.status-completed-pill {
  background: var(--app-success-light);
  color: var(--app-success-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.75rem;
}

.btn-app-outline {
  width: 100%;
  padding: 0.85rem;
  background: white;
  border: 2px solid var(--app-primary);
  color: var(--app-primary);
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.btn-app-outline:hover {
  background: var(--app-primary-light);
}

/* Login Overlay in Portal */
.portal-login-box {
  max-width: 420px;
  margin: 1rem auto 3rem;
  background: var(--app-card);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--app-border);
  text-align: center;
}

.portal-login-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--app-text);
  margin: 1rem 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.portal-login-box p {
  color: var(--app-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-input-portal {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.form-input-portal:focus {
  outline: none;
  border-color: var(--app-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.demo-credentials-pill {
  background: var(--app-card-subtle);
  border: 1px dashed var(--app-border);
  border-radius: 12px;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--app-text-muted);
  margin-bottom: 1.5rem;
  text-align: left;
}

.demo-credentials-pill strong {
  color: var(--app-text);
}

/* ==========================================================================
   Smooth Method Slider Toggle (Mobile Money <-> Bank Account)
   ========================================================================== */
.method-toggle-slider-wrap {
  margin-bottom: 1.25rem;
}

.method-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 4px;
  user-select: none;
}

.method-toggle-bg {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.method-toggle-track.bank-active .method-toggle-bg {
  transform: translateX(100%);
}

.method-toggle-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 0.75rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 12px;
  transition: color 0.3s ease;
}

.method-toggle-btn.active {
  color: #0F172A;
}

.method-toggle-btn i {
  font-size: 1.1rem;
}

/* Bank Selection Grid */
.bank-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .bank-selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bank-card-item {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.65rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bank-card-item:hover {
  border-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.bank-card-item.selected {
  border-color: #2563EB;
  background: #EFF6FF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.bank-card-item .bank-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  color: #FFFFFF;
}

.bank-card-item .bank-ico.zanaco { background: #FF8C42; }
.bank-card-item .bank-ico.fnb { background: #00B4D8; }
.bank-card-item .bank-ico.absa { background: #E40000; }
.bank-card-item .bank-ico.stanbic { background: #003399; }
.bank-card-item .bank-ico.atlas { background: #8B5CF6; }
.bank-card-item .bank-ico.access { background: #0D9488; }

.bank-card-item .bank-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #0F172A;
  text-align: center;
  line-height: 1.1;
}

.bank-card-item .check-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: #2563EB;
  color: #FFF;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.bank-card-item.selected .check-badge {
  display: flex;
}

/* Lenco Account Name Lookup Box */
.account-name-box {
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.account-name-box.loading {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #B45309;
}

.account-name-box.verified {
  background: #ECFDF5;
  border-color: #10B981;
  color: #065F46;
}

.account-name-box .verified-badge {
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 0.4rem;
  display: inline-block;
}

/* Coming Soon Sticker & Disabled Button */
.coming-soon-wrapper {
  position: relative;
  margin-top: 1.25rem;
}

.coming-soon-sticker {
  position: absolute;
  top: -12px;
  right: 12px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.disabled-bank-btn {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  background: #94A3B8 !important;
  color: #F1F5F9 !important;
  box-shadow: none !important;
  border: none !important;
}

