/* ========== GLOBAL STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --green-primary: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-50: #f0fdf4;
  --emerald-600: #059669;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-950: #172554;
  --slate-950: #020617;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --red-400: #f87171;
  --red-500: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(34, 197, 94, 0.2);
}

/* ========== NAVBAR ========== */
.navbar-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 20px 60px -15px rgba(0, 0, 0, 0.08),
              0px 10px 30px -10px rgba(0, 0, 0, 0.06),
              inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3);
  padding: 20px 25px;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #014499, #1E841B, #F76900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar-logo span {
  -webkit-text-fill-color: #F76900;
}

/* ========== DECORATIVE BACKGROUNDS ========== */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb-green-tr {
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: rgba(187, 247, 208, 0.5);
}

.bg-orb-emerald-bl {
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: rgba(167, 243, 208, 0.5);
}

.bg-orb-green-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: rgba(220, 252, 231, 0.4);
  filter: blur(160px);
}

/* ========== GLASS CARD ========== */
.glass-card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.glass-card-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.glass-card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

.glass-card-dark > * {
  position: relative;
  z-index: 1;
}

/* ========== GLASS INPUTS (Light Theme) ========== */
.glass-input-group {
  margin-bottom: 0;
}

.glass-input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
}

.glass-input-wrapper {
  position: relative;
}

.glass-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  transition: color 0.3s;
  z-index: 2;
  pointer-events: none;
}

.glass-input-wrapper:focus-within .glass-input-icon {
  color: var(--green-primary);
}

.glass-input {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-left: 3rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #111827;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
}

.glass-input:focus {
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.glass-input::placeholder {
  color: #9ca3af;
}

.glass-input.is-invalid {
  border-color: #ef4444;
}

.glass-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.glass-select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 3rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #111827;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.glass-select:focus {
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9ca3af;
}

.invalid-feedback {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
}

/* ========== RADIO CARDS ========== */
.radio-card {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: all 0.3s;
}

.radio-card:hover {
  background: #f3f4f6;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card input[type="radio"]:checked ~ .radio-card-content {
  color: #111827;
}

.radio-card:has(input:checked) {
  border-color: var(--green-primary);
  background: var(--green-50);
}

.radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-card:has(input:checked) .radio-indicator {
  border-color: var(--green-primary);
  border-width: 4px;
}

.radio-card-title {
  font-weight: 500;
  color: #111827;
}

.radio-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========== BUTTONS ========== */
.btn-glass-primary {
  background: linear-gradient(to right, #16a34a, #059669);
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-glass-primary:hover {
  background: linear-gradient(to right, #22c55e, #10b981);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
  color: #fff;
}

.btn-glass-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-orange-gradient {
  background: linear-gradient(to right, #ea580c, #d97706);
  color: #fff;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-orange-gradient:hover {
  background: linear-gradient(to right, #f97316, #f59e0b);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
  color: #fff;
}

.btn-orange-gradient:disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

.btn-green-gradient {
  background: linear-gradient(to right, #16a34a, #059669);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-green-gradient:hover {
  background: linear-gradient(to right, #22c55e, #10b981);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.4);
  color: #fff;
}

.btn-blue-gradient {
  background: linear-gradient(to right, #2563eb, #0891b2);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-blue-gradient:hover {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  color: #fff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  color: #fff;
}

/* Shimmer animation for buttons */
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-12deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Spinner */
.spinner-border-sm-custom {
  width: 1.25rem;
  height: 1.25rem;
  border-width: 2px;
}

/* ========== DARK THEME BACKGROUNDS ========== */
.bg-dark-gradient {
  background: linear-gradient(135deg, #020617 0%, #172554 50%, #020617 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-dark-gradient .bg-orb-blue {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-rotate 20s linear infinite;
}

.bg-dark-gradient .bg-orb-purple {
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 384px;
  height: 384px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-rotate-reverse 25s linear infinite;
}

.bg-dark-gradient .bg-orb-orange {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 384px;
  height: 384px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-updown 15s ease-in-out infinite;
}

@keyframes float-rotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes float-rotate-reverse {
  0% { transform: rotate(360deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes float-updown {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 30px)); }
}

/* ========== REGISTRATION PAGE ========== */
.registration-page {
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

.registration-main-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(229, 231, 235, 0.6);
  border: 1px solid #e5e7eb;
  background: #fff;
}

.registration-form-side {
  padding: 2rem 3rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.registration-form-side::-webkit-scrollbar {
  display: none;
}

.registration-form-side h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.registration-image-side {
  position: relative;
  min-height: 740px;
}

.registration-image-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.registration-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 163, 74, 0.4), rgba(21, 128, 61, 0.2));
  mix-blend-mode: multiply;
}

.registration-image-card {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.registration-image-card .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #009a62;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== OTP POPUP ========== */
.otp-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.otp-backdrop.show {
  display: block;
  opacity: 1;
}

.otp-popup-wrapper {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1051;
  padding: 1rem;
}

.otp-popup-wrapper.show {
  display: flex;
}

.otp-popup {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px rgba(229, 231, 235, 0.5);
  max-width: 28rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s;
}

.otp-popup-wrapper.show .otp-popup {
  transform: scale(1);
  opacity: 1;
}

.otp-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.5), transparent, rgba(209, 250, 229, 0.5));
  pointer-events: none;
}

.otp-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.otp-close-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

.otp-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.otp-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.3s;
}

.otp-input:focus {
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.otp-progress-bar {
  width: 100%;
  height: 6px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
}

.otp-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #22c55e, #059669, #14b8a6);
  border-radius: 999px;
  transition: width 1s linear;
  position: relative;
}

.otp-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer-progress 1.5s linear infinite;
}

@keyframes shimmer-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ========== TRUST BUILDING CARDS ========== */
.trust-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-card-cyan:hover { border-color: #67e8f9; }
.trust-card-purple:hover { border-color: #d8b4fe; }
.trust-card-emerald:hover { border-color: #6ee7b7; }
.trust-card-orange:hover { border-color: #fdba74; }
.trust-card-blue:hover { border-color: #93c5fd; }

.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f3f4f6;
}

.trust-card-icon-cyan { background: #ecfeff; color: #0891b2; }
.trust-card-icon-purple { background: #faf5ff; color: #9333ea; }
.trust-card-icon-emerald { background: #ecfdf5; color: #059669; }
.trust-card-icon-orange { background: #fff7ed; color: #ea580c; }
.trust-card-icon-blue { background: #eff6ff; color: #2563eb; }

.trust-card-number {
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.1;
  transition: opacity 0.5s;
}

.trust-card:hover .trust-card-number { opacity: 0.2; }

.trust-card-number-cyan { color: #0891b2; }
.trust-card-number-purple { color: #9333ea; }
.trust-card-number-emerald { color: #059669; }
.trust-card-number-orange { color: #ea580c; }
.trust-card-number-blue { color: #2563eb; }

.trust-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.trust-card-desc {
  color: #6b7280;
  line-height: 1.6;
  transition: color 0.3s;
}

.trust-card:hover .trust-card-desc { color: #4b5563; }

.trust-card-link {
  margin-top: auto;
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.trust-card:hover .trust-card-link {
  opacity: 1;
  transform: translateY(0);
}

.trust-link-cyan { color: #0891b2; }
.trust-link-purple { color: #9333ea; }
.trust-link-emerald { color: #059669; }
.trust-link-orange { color: #ea580c; }
.trust-link-blue { color: #2563eb; }

/* ========== LOAN OFFER PAGE ========== */
.gradient-text-orange {
  background: linear-gradient(to right, #fb923c, #fbbf24, #fde047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-red {
  background: linear-gradient(to right, #f87171, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.user-detail-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: background 0.3s;
}

.user-detail-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-detail-card-highlight {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.user-detail-card-highlight:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(245, 158, 11, 0.3));
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Congratulations Banner */
.congrats-banner {
  position: relative;
  background: linear-gradient(to right, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  backdrop-filter: blur(4px);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}

.congrats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
  filter: blur(20px);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.congrats-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #22c55e, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
  animation: bounce-rotate 2s ease-in-out infinite;
}

@keyframes bounce-rotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  75% { transform: scale(1.1) rotate(-5deg); }
}

/* EMI Options */
.emi-option {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.emi-option:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.emi-option.selected {
  border: 2px solid var(--orange-500);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
}

.emi-option-content {
  padding: 1rem;
  text-align: center;
  position: relative;
}

.emi-months {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.emi-option.selected .emi-months {
  color: #fdba74;
}

.emi-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.emi-interest {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}

.emi-option.selected .emi-interest {
  color: #fdba74;
}

.emi-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #10b981);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.emi-option.selected .emi-check {
  display: flex;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.trust-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* ========== PAYMENT PAGE ========== */
.credit-card {
  position: relative;
  height: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #059669);
}

@media (min-width: 992px) {
  .credit-card {
    height: 320px;
  }
}

.credit-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.1) 10px, rgba(255, 255, 255, 0.1) 20px);
}

.credit-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-12deg);
  animation: card-shine 5s ease-in-out infinite;
}

@keyframes card-shine {
  0% { left: -100%; }
  40% { left: 200%; }
  100% { left: 200%; }
}

.credit-card-content {
  position: relative;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.card-chip {
  width: 48px;
  height: 40px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.8), rgba(217, 119, 6, 0.8));
  border: 1px solid rgba(245, 158, 11, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-chip-inner {
  width: 32px;
  height: 24px;
  border-radius: 0.375rem;
  border: 2px solid rgba(120, 53, 15, 0.5);
}

.mastercard-logo .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.mastercard-logo .circle-red { background: rgba(239, 68, 68, 0.9); }
.mastercard-logo .circle-amber { background: rgba(245, 158, 11, 0.9); margin-left: -16px; }

.card-number {
  font-size: 1.5rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Payment fees */
.fees-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.fees-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.fees-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

/* ========== THANK YOU PAGE ========== */
.success-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
  border: 4px solid rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.success-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--orange-500);
  border-right-color: var(--orange-500);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(244, 63, 94, 0.2));
  border: 4px solid rgba(239, 68, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.error-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 4px solid rgba(239, 68, 68, 0.5);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.company-logo-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-bars {
  display: flex;
  gap: 4px;
}

.logo-bar {
  width: 8px;
  height: 32px;
  border-radius: 999px;
}

.doc-section-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s;
  height: 100%;
}

.doc-section-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.doc-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-bullet-blue {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.doc-bullet-blue .inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
}

.doc-bullet-green {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.doc-bullet-green .inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

/* ========== FAILED PAGE ========== */
.error-banner {
  background: rgba(239, 68, 68, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
}

.reason-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: background 0.3s;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reason-card-red { border: 1px solid rgba(239, 68, 68, 0.3); }
.reason-card-orange { border: 1px solid rgba(249, 115, 22, 0.3); }
.reason-card-yellow { border: 1px solid rgba(234, 179, 8, 0.3); }

.reason-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: transform 0.3s;
}

.reason-card:hover .reason-icon-box {
  transform: scale(1.1);
}

.support-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
}

.support-contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.support-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.support-contact-card:hover .support-icon-box {
  transform: scale(1.1);
}

.support-icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.support-icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.no-debit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb923c;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ========== MOBILE STICKY BUTTON ========== */
.mobile-sticky-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  display: none;
}

.mobile-sticky-inner {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-gradient {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, #020617, rgba(2, 6, 23, 0.95), transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
  display: none;
}

/* ========== ANIMATIONS ========== */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }
.delay-6 { animation-delay: 0.6s; opacity: 0; }
.delay-7 { animation-delay: 0.7s; opacity: 0; }
.delay-8 { animation-delay: 0.8s; opacity: 0; }

/* ========== USER DETAIL ICON BOXES ========== */
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.user-detail-card:hover .icon-box {
  transform: scale(1.1);
}

.icon-box-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-box-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.icon-box-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .registration-image-side {
    display: none;
  }
  
  .registration-form-side {
    padding: 2rem 1.5rem;
  }
  
  .registration-form-side h1 {
    font-size: 1.5rem;
  }
  
  .mobile-sticky-btn {
    display: block;
  }

  .mobile-sticky-gradient {
    display: block;
  }

  .desktop-only-btn {
    display: none !important;
  }
}

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

@media (max-width: 575.98px) {
  .emi-option-content {
    padding: 0.75rem;
  }
  
  .emi-amount {
    font-size: 1rem;
  }
  
  .credit-card {
    height: 240px;
  }
  
  .card-number {
    font-size: 1.2rem;
  }
}
