/* ============================================
   SCOLAGE B2C — Student Fellowship Portal
   Electric Blue / Dark / Neon Futuristic Theme
   ============================================ */

:root {
  --b2c-dark: #0d1117;
  --b2c-dark-light: #161b22;
  --b2c-dark-mid: #1c2333;
  --b2c-blue: #00a8ff;
  --b2c-blue-light: #33bbff;
  --b2c-cyan: #00f0ff;
  --b2c-purple: #8b5cf6;
  --b2c-pink: #ec4899;
  --b2c-green: #10b981;
  --b2c-white: #f0f6fc;
  --b2c-text: #e6edf3;
  --b2c-text-muted: #8b949e;
  --b2c-gradient: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1c2333 100%);
  --b2c-card-bg: rgba(28, 35, 51, 0.6);
  --b2c-card-border: rgba(0, 168, 255, 0.12);
  --b2c-glow-blue: 0 0 40px rgba(0, 168, 255, 0.15);
  --b2c-glow-cyan: 0 0 40px rgba(0, 240, 255, 0.15);
}

body.b2c {
  background: var(--b2c-dark);
  color: var(--b2c-text);
}

/* ---- NAVBAR ---- */
.b2c .navbar {
  background: transparent;
}

.b2c .navbar.scrolled {
  background: rgba(13, 17, 23, 0.92);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.b2c .nav-logo .brand-name {
  color: var(--b2c-blue);
}

.b2c .nav-logo .brand-tagline {
  color: var(--b2c-text-muted);
}

.b2c .nav-links a {
  color: var(--b2c-text);
}

.b2c .nav-links a::after {
  background: var(--b2c-cyan);
}

.b2c .nav-toggle span {
  background: var(--b2c-text);
}

.b2c .nav-cta {
  background: linear-gradient(135deg, var(--b2c-blue), var(--b2c-cyan));
  color: var(--b2c-dark);
}

.b2c .nav-cta:hover {
  box-shadow: 0 4px 25px rgba(0, 168, 255, 0.35);
  transform: translateY(-2px);
}

/* ---- HERO ---- */
.b2c-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.b2c-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.b2c-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2c-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 17, 23, 0.93) 0%,
    rgba(13, 17, 23, 0.78) 50%,
    rgba(13, 17, 23, 0.88) 100%
  );
}

/* Animated gradient orbs */
.b2c-hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.b2c-hero-bg .orb-1 {
  width: 400px;
  height: 400px;
  background: var(--b2c-blue);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.b2c-hero-bg .orb-2 {
  width: 300px;
  height: 300px;
  background: var(--b2c-purple);
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
}

.b2c-hero-bg .orb-3 {
  width: 200px;
  height: 200px;
  background: var(--b2c-cyan);
  top: 40%;
  left: 50%;
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 15px) scale(1.02); }
}

.b2c-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2c-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
  color: var(--b2c-cyan);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: badgeGlow 3s ease infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 240, 255, 0); }
  50% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.15); }
}

.b2c-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  max-width: 800px;
}

.b2c-hero h1 .glow {
  background: linear-gradient(135deg, var(--b2c-blue), var(--b2c-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2c-hero-sub {
  font-size: 1.15rem;
  color: var(--b2c-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 640px;
}

.b2c-hero-sub strong {
  color: var(--b2c-cyan);
  font-weight: 600;
}

.btn-blue {
  background: linear-gradient(135deg, var(--b2c-blue), var(--b2c-cyan));
  color: var(--b2c-dark);
  font-weight: 700;
  box-shadow: 0 6px 30px rgba(0, 168, 255, 0.3);
}

.btn-blue:hover {
  box-shadow: 0 8px 50px rgba(0, 168, 255, 0.5);
  transform: translateY(-3px);
}

/* Progress Bar FOMO */
.hero-progress {
  margin-top: 32px;
  width: 100%;
  max-width: 420px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--b2c-text-muted);
  margin-bottom: 10px;
}

.progress-label .progress-percent {
  color: var(--b2c-cyan);
  font-weight: 700;
}

.progress-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--b2c-blue), var(--b2c-cyan));
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(6px);
  animation: progressPulse 2s ease infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--b2c-text-muted);
  max-width: 480px;
}

.hero-referral {
  margin-top: 12px;
  font-size: 0.85rem;
}

.hero-referral a {
  color: var(--b2c-cyan);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  transition: border-color 0.3s ease;
}

.hero-referral a:hover {
  border-color: var(--b2c-cyan);
}

/* ---- FELLOWSHIP BENEFITS: BENTO GRID ---- */
.b2c-benefits {
  background: var(--b2c-gradient);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 50px;
}

.bento-card {
  background: var(--b2c-card-bg);
  border: 1px solid var(--b2c-card-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.3);
  box-shadow: var(--b2c-glow-blue);
}

/* Layout: first card large (spans 2 cols), others mixed */
.bento-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-card:nth-child(3) {
  grid-column: span 1;
}

.bento-card:nth-child(4) {
  grid-column: span 1;
}

.bento-card:nth-child(5) {
  grid-column: span 2;
}

.bento-card:nth-child(6) {
  grid-column: span 1;
}

.bento-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.bento-card:nth-child(2) .bento-image {
  height: 260px;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-image img {
  transform: scale(1.06);
}

.bento-content {
  padding: 28px;
}

.bento-unlock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b2c-cyan);
  margin-bottom: 12px;
  background: rgba(0, 240, 255, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
}

.bento-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.bento-content p {
  font-size: 0.9rem;
  color: var(--b2c-text-muted);
  line-height: 1.65;
}

/* ---- CURRICULUM & MENTORSHIP ---- */
.b2c-curriculum {
  background: var(--b2c-dark-light);
  position: relative;
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mentor-card {
  background: var(--b2c-card-bg);
  border: 1px solid var(--b2c-card-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.mentor-card:hover {
  border-color: rgba(0, 168, 255, 0.3);
  box-shadow: var(--b2c-glow-blue);
  transform: translateY(-4px);
}

.mentor-card .mentor-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.mentor-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mentor-card p {
  font-size: 0.8rem;
  color: var(--b2c-text-muted);
  line-height: 1.5;
}

.workshop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.workshop-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b2c-card-bg);
  border: 1px solid var(--b2c-card-border);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--b2c-text);
  transition: all 0.3s ease;
}

.workshop-pill:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 168, 255, 0.08);
  transform: translateY(-2px);
}

.workshop-pill .pill-icon {
  font-size: 1.2em;
}

/* ---- HOW IT WORKS: ROADMAP ---- */
.b2c-roadmap {
  background: var(--b2c-gradient);
  position: relative;
  overflow: hidden;
}

.roadmap-container {
  margin-top: 60px;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Vertical line */
.roadmap-line {
  position: absolute;
  left: 32px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.roadmap-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--b2c-blue), var(--b2c-cyan));
  border-radius: 3px;
  transition: height 0.1s linear;
}

.roadmap-step {
  display: flex;
  gap: 32px;
  margin-bottom: 50px;
  position: relative;
  align-items: flex-start;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--b2c-dark);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--b2c-text-muted);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.roadmap-step.active .step-marker {
  background: linear-gradient(135deg, var(--b2c-blue), var(--b2c-cyan));
  border-color: var(--b2c-cyan);
  color: var(--b2c-dark);
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
}

.step-content {
  padding: 4px 0;
  flex: 1;
}

.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b2c-blue);
  margin-bottom: 8px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--b2c-text-muted);
  line-height: 1.7;
}

/* Step 3 highlight — larger & emphasized */
.roadmap-step.highlight .step-marker {
  width: 80px;
  height: 80px;
  min-width: 80px;
  font-size: 1.6rem;
}

.roadmap-step.highlight .step-content {
  background: var(--b2c-card-bg);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.roadmap-step.highlight .step-content h3 {
  color: var(--b2c-cyan);
}

/* ---- REFERRAL ---- */
.b2c-referral {
  background: var(--b2c-dark-light);
  text-align: center;
}

.referral-card {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.06), rgba(0, 240, 255, 0.03));
  border: 1px solid rgba(0, 168, 255, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 600px;
  margin: 40px auto 0;
}

.referral-card .referral-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.referral-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.referral-card p {
  font-size: 0.95rem;
  color: var(--b2c-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-power {
  background: linear-gradient(135deg, var(--b2c-purple), var(--b2c-pink));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.3);
}

.btn-power:hover {
  box-shadow: 0 8px 50px rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
}

/* ---- FOOTER CTA ---- */
.b2c-footer-cta {
  background: linear-gradient(135deg, var(--b2c-dark-mid), var(--b2c-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.b2c-footer-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.05), transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.b2c-footer-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.b2c-footer-cta .section-subtitle {
  margin: 0 auto 32px;
}

.footer-progress {
  max-width: 380px;
  margin: 0 auto 36px;
}

.footer-secondary {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--b2c-text-muted);
}

.footer-secondary a {
  color: var(--b2c-cyan);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

.footer-secondary a:hover {
  border-color: var(--b2c-cyan);
}

/* ---- TRUST BAR B2C ---- */
.b2c .trust-bar {
  background: rgba(13, 17, 23, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.b2c .trust-bar-label {
  color: var(--b2c-text-muted);
}

.b2c .marquee-item {
  color: var(--b2c-text);
}

/* ---- SITE FOOTER B2C ---- */
.b2c .site-footer {
  background: var(--b2c-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.b2c .footer-brand .brand-name {
  color: var(--b2c-blue);
}

.b2c .footer-links a {
  color: var(--b2c-text-muted);
}

.b2c .footer-copy {
  color: var(--b2c-text-muted);
}

/* ---- RESPONSIVE B2C ---- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card:nth-child(1) { grid-column: span 2; }
  .bento-card:nth-child(2) { grid-column: span 1; grid-row: span 1; }
  .bento-card:nth-child(5) { grid-column: span 2; }

  .curriculum-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(5) {
    grid-column: span 1;
  }

  .bento-card:nth-child(2) {
    grid-row: span 1;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-container {
    padding-left: 0;
  }

  .b2c .nav-links {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
  }

  .referral-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .bento-image {
    height: 180px;
  }

  .bento-card:nth-child(2) .bento-image {
    height: 180px;
  }

  .roadmap-step {
    gap: 20px;
  }

  .step-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
  }

  .roadmap-step.highlight .step-marker {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .roadmap-line {
    left: 22px;
  }
}

/* ============================================
   NEW ADMISSION PARTNER & BATTLE LOGIC STYLES
   ============================================ */

/* Hero Video */
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}

/* College Directory */
.college-gallery {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.college-gallery::-webkit-scrollbar {
  display: none;
}

.college-card {
  flex: 0 0 320px;
  background: var(--b2c-card-bg);
  border: 1px solid var(--b2c-card-border);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.college-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.4);
  box-shadow: var(--b2c-glow-blue);
}

.college-img {
  position: relative;
  height: 200px;
}

.college-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.college-card:hover .college-img img {
  transform: scale(1.06);
}

.verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(4px);
}

.college-info {
  padding: 24px;
}

.college-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.college-info p {
  font-size: 0.9rem;
  color: var(--b2c-text-muted);
  margin-bottom: 24px;
}

.btn-outline-cyber {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--b2c-cyan);
  color: var(--b2c-cyan);
  background: transparent;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-cyber:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  color: #fff;
}

/* Base lock icon style */
.lock-icon {
  display: inline-block;
  margin-right: 4px;
  filter: grayscale(0.6) opacity(0.8);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-style: normal;
}

/* Hover effect on the card triggers the lock glow */
.bento-card:hover .lock-icon {
  filter: drop-shadow(0 0 10px var(--b2c-cyan)) grayscale(0) opacity(1);
  transform: scale(1.15);
}

/* Alternative approach using CSS Content replacement for absolute emoji swap emoji swapping */
.lock-icon::before {
  content: "🔒";
}

.bento-card:hover .lock-icon::before {
  content: "🔓";
}

/* Remove original emoji we kept in span text for fallback */
.lock-icon {
  font-size: 0;
}
.lock-icon::before {
  font-size: 14px;
}

/* Mystery & Gold Glow */
.unlock-gold {
  color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.1) !important;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.bento-mystery {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: inset 0 0 40px rgba(251, 191, 36, 0.05);
}

.bento-mystery:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

.bento-mystery:hover .lock-icon {
  filter: drop-shadow(0 0 10px #fbbf24) grayscale(0) opacity(1);
}

.gold-glow {
  color: #fbbf24 !important;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Battle Table */
.battle-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--b2c-card-border);
  background: var(--b2c-card-bg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.battle-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.battle-table th, .battle-table td {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.battle-table th {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--b2c-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.battle-table td {
  font-size: 1.05rem;
  color: #fff;
  vertical-align: middle;
}

.table-highlight-col {
  background: rgba(0, 240, 255, 0.02);
  position: relative;
  border-left: 1px solid rgba(0, 240, 255, 0.1);
  border-right: 1px solid rgba(0, 240, 255, 0.1);
}

.battle-table th.table-highlight-col {
  color: var(--b2c-cyan);
  border-top: 3px solid var(--b2c-cyan);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.08) 0%, rgba(0, 240, 255, 0.01) 100%);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.table-positive {
  color: var(--b2c-cyan) !important;
  font-weight: 700;
}

.table-negative {
  color: var(--b2c-text-muted) !important;
  font-style: italic;
}

.table-footer-row td {
  border-bottom: none;
  font-size: 1.15rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 24px;
}

.table-footer-row .table-highlight-col {
  color: #fff;
  text-shadow: 0 0 15px var(--b2c-cyan);
  background: rgba(0, 240, 255, 0.06);
  border-bottom: 3px solid var(--b2c-cyan);
}

/* Roadmap Highlights */
.roadmap-step.highlight.neon-key .step-marker {
  box-shadow: 0 0 40px var(--b2c-cyan);
  background: var(--b2c-cyan);
  color: var(--b2c-dark);
  border: none;
}

.neon-text {
  color: var(--b2c-cyan) !important;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* ============================================
   NEW FORMS: REFERRAL & REGISTRATION
   ============================================ */

/* 1. College Referral Portal (Glassmorphism + Neon Gold) */
.b2c-referral-portal {
  background: var(--b2c-gradient);
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.glass-referral-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
}

/* Neon Gold Border & Glow */
.gold-neon-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.gold-neon-border:focus-within {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.referral-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.gold-lightning {
  animation: goldPulse 2s infinite alternate;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes goldPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); }
}

.referral-header-text h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.referral-header-text p {
  color: var(--b2c-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.referral-header-text .cta-mini {
  margin-top: 10px;
  color: #D4AF37;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Form Groups & Inputs (Clean White Text) */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #fff;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus, .form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #D4AF37;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-gold-submit {
  width: 100%;
  background: linear-gradient(135deg, #D4AF37, #F3E5AB);
  color: #0A0E1A;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-gold-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #F3E5AB, #D4AF37);
}

.referral-success {
  text-align: center;
  padding: 40px 20px;
}

.referral-success .success-icon {
  font-size: 3rem;
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  margin-bottom: 20px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.referral-success h3 {
  color: #D4AF37;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.referral-success p {
  color: var(--b2c-text);
  line-height: 1.6;
}

/* 2. Smart-Capture Registration Form (Apple/Stripe Vibe) */
.b2c-registration-section {
  background: var(--b2c-dark);
  padding: 80px 0;
}

.stripe-form-wrapper {
  background: #ffffff; /* High-contrast minimalist white */
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0,0,0,0.05);
  color: #111827; /* Dark text for light bg */
  position: relative;
  overflow: hidden;
}

.stripe-form-wrapper .form-header h2 {
  color: #111827 !important; /* Override white */
}

.stripe-form-wrapper .form-header p {
  color: #6B7280 !important;
}

/* Progress Indicator */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 20px;
}

.progress-step {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s ease;
}

.progress-step.active {
  color: var(--b2c-blue);
}

.progress-step.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--b2c-blue);
  box-shadow: 0 -2px 10px rgba(0, 168, 255, 0.5);
}

/* Form Steps */
.form-step {
  display: none;
  animation: slideIn 0.4s ease forwards;
}

.form-step.step-active {
  display: block;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.smart-group {
  margin-bottom: 24px;
}

.smart-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.smart-group input[type="text"],
.smart-group input[type="tel"],
.smart-group input[type="email"],
.smart-group input[type="number"],
.smart-group select {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  color: #111827;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.smart-group input:focus,
.smart-group select:focus {
  background: #fff;
  border-color: var(--b2c-blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.15);
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  color: #6B7280;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.smart-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}

/* Custom Checkboxes / Radios */
.checkbox-grid, .radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.custom-checkbox, .custom-radio {
  display: flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.custom-checkbox:hover, .custom-radio:hover {
  border-color: #9CA3AF;
  background: #F3F4F6;
}

.custom-checkbox input, .custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark, .radio-mark {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #D1D5DB;
  border-radius: 6px;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s ease;
}

.radio-mark {
  border-radius: 50%;
}

.custom-checkbox input:checked ~ .checkmark,
.custom-radio input:checked ~ .radio-mark {
  background-color: var(--b2c-blue);
  border-color: var(--b2c-blue);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-mark:after {
  content: "";
  position: absolute;
  display: none;
  background: white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-checkbox input:checked ~ .checkmark:after,
.custom-radio input:checked ~ .radio-mark:after {
  display: block;
}

/* Buttons */
.btn-stripe {
  background: #111827;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-stripe:hover {
  background: #374151;
  transform: translateY(-1px);
}

.btn-stripe-secondary {
  background: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-stripe-secondary:hover {
  background: #E5E7EB;
}

.btn-giant-neon {
  background: linear-gradient(135deg, var(--b2c-blue), var(--b2c-cyan));
  color: var(--b2c-dark);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 168, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-giant-neon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 168, 255, 0.6);
}

.reg-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon-giant {
  font-size: 4rem;
  color: var(--b2c-blue);
  background: rgba(0, 168, 255, 0.1);
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reg-success h3 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 16px;
}

.reg-success p {
  color: #4B5563;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .checkbox-grid, .radio-grid {
    grid-template-columns: 1fr;
  }
}

