body {
  background: #fafafa;
}

/* ──────── NAVBAR ──────── */
.navbar-bfc {
  background: rgba(26,26,46,.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .2s;
}

.navbar-bfc.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.2); }

.navbar-bfc .nav-link {
  color: rgba(255,255,255,.7) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 0;
  margin: 0 14px;
  position: relative;
  transition: color .2s;
}

.navbar-bfc .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bfc-orange);
  transition: all .3s;
  transform: translateX(-50%);
}

.navbar-bfc .nav-link:hover::after,
.navbar-bfc .nav-link.active::after { width: 100%; }
.navbar-bfc .nav-link:hover,
.navbar-bfc .nav-link.active { color: #fff !important; }

/* ──────── UTILITY ──────── */
.icon-wrap-sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bfc-orange-soft);
  color: var(--bfc-orange);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap-md {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bfc-orange-soft);
  color: var(--bfc-orange);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ──────── BUTTONS ──────── */
.btn-bfc {
  background: var(--bfc-orange);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all .25s;
}

.btn-bfc:hover {
  background: #d35400;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,.35);
}

.btn-bfc-outline {
  border: 2px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all .25s;
}

.btn-bfc-outline:hover {
  border-color: var(--bfc-orange);
  background: var(--bfc-orange);
  color: #fff;
}

.btn-wa {
  background: #25d366;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all .25s;
}

.btn-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

/* ──────── HERO ──────── */
.hero-bfc {
  position: relative;
  background: linear-gradient(160deg, #0a0a14 0%, #1a1a2e 35%, #16213e 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bfc::after {
  content: 'BORNEO FC';
  position: absolute;
  right: -2%;
  top: -8%;
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,.015);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
  user-select: none;
  white-space: nowrap;
}

.hero-bfc::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(225deg, rgba(230,126,34,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bfc .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-bfc .hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--bfc-orange), var(--bfc-orange-light), transparent);
  pointer-events: none;
  opacity: .5;
}

.hero-bfc .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,126,34,.12);
  border: 1px solid rgba(230,126,34,.2);
  color: var(--bfc-orange-light);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.hero-bfc h1 {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.15;
  letter-spacing: -.5px;
}

.hero-bfc h1 .gradient-text {
  background: linear-gradient(135deg, var(--bfc-orange), var(--bfc-orange-light), var(--bfc-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bfc .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 520px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.hero-stats .stat-item {
  position: relative;
}

.hero-stats .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(255,255,255,.08);
}

.hero-stats .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.hero-visual .vis-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230,126,34,.1);
  pointer-events: none;
}

.hero-visual .vis-ring-1 { width: 280px; height: 280px; }
.hero-visual .vis-ring-2 { width: 220px; height: 220px; border-color: rgba(230,126,34,.07); border-style: dashed; }
.hero-visual .vis-ring-3 { width: 160px; height: 160px; border-color: rgba(230,126,34,.04); }

.hero-visual .vis-icon-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-visual .vis-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(230,126,34,.05);
  border: 1.5px solid rgba(230,126,34,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: rgba(230,126,34,.35);
  transition: all .3s;
}

.hero-visual .vis-icon-item:hover .vis-circle {
  background: rgba(230,126,34,.1);
  border-color: rgba(230,126,34,.18);
  color: var(--bfc-orange-light);
  transform: scale(1.1);
}

.hero-visual .vis-label {
  font-size: .6rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-visual .vis-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(230,126,34,.15);
  pointer-events: none;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ──────── SECTION STYLES ──────── */
.section-wrapper {
  padding: 60px 0;
}

.section-wrapper-alt {
  padding: 60px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bfc-orange-soft);
  color: var(--bfc-orange);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.section-header h2 {
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--bfc-dark);
  margin-bottom: 6px;
}

.section-header p {
  color: #888;
  max-width: 480px;
  margin: 0 auto;
  font-size: .95rem;
}

.section-header .section-line {
  width: 50px;
  height: 3px;
  background: var(--bfc-orange);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ──────── PROGRAM CARDS ──────── */
.card-program {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  border: 1px solid #eee;
  box-shadow: var(--bfc-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-program:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.08), 0 5px 15px rgba(0,0,0,.04);
  border-color: transparent;
}

.card-program .card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f3f, #1a3c8f);
}

.card-program .card-img-wrap .card-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}

.card-program .card-img-wrap .card-placeholder img {
  width: auto !important;
  height: auto !important;
  max-width: 80%;
  max-height: 36px;
  object-fit: contain !important;
  transition: none !important;
}

.card-program .card-img-wrap .card-placeholder .placeholder-divider {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
}

.card-program .card-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.card-program:hover .card-img-wrap > img { transform: scale(1.06); }

.card-program .card-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5));
  pointer-events: none;
}

.card-program .card-img-wrap .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--bfc-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.card-program .card-img-wrap .card-status-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-program .card-img-wrap .status-pill {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .7rem;
  font-weight: 600;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-program .card-img-wrap .status-pill i { font-size: .55rem; }

.card-program .card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-program .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--bfc-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-program .card-text {
  color: #888;
  font-size: .9rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.card-program .card-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: .83rem;
  color: #999;
}

.card-program .btn-daftar,
.card-program .btn-bfc.btn-sm {
  background: var(--bfc-orange);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

.card-program .btn-bfc.btn-sm:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230,126,34,.3);
}

.card-program .btn-bfc.btn-sm i { transition: transform .2s; }
.card-program .btn-bfc.btn-sm:hover i { transform: translateX(3px); }

/* ──────── DASHBOARD HERO (compact) ──────── */
.hero-dash {
  background: linear-gradient(135deg, #0a1f3f 0%, #1a3c8f 50%, #0a1f3f 100%);
  position: relative;
}

.hero-dash-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-dash .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}

.hero-dash h1 { font-size: 1.35rem !important; }
.hero-dash h1 .gradient-text {
  background: linear-gradient(135deg, var(--bfc-orange-light), var(--bfc-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-dash-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-dash-stats .stat-item { text-align: center; }

.hero-dash-stats .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hero-dash-stats .stat-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.5);
}

.hero-dash-stats .stat-item + .stat-item { position: relative; }
.hero-dash-stats .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.12);
}

/* ──────── CATEGORY HEADER ──────── */
.category-header {
  position: relative;
}

.category-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--bfc-orange);
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10,31,63,.06);
  color: var(--brand-blue, #0a1f3f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.category-title {
  font-size: 1.1rem;
  color: var(--bfc-dark);
}

/* ──────── CARD REGISTERED BADGE ──────── */
.card-registered-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* ──────── STEP CARD ──────── */
.step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: var(--bfc-shadow);
  transition: all .3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bfc-shadow-hover);
  border-color: var(--bfc-orange-soft);
}

/* ──────── FADE IN ANIMATION ──────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp .5s ease forwards;
}

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

/* ──────── BENEFIT CARDS ──────── */
.card-benefit {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  box-shadow: var(--bfc-shadow);
  height: 100%;
}

.card-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--bfc-shadow-hover);
  border-color: var(--bfc-orange-soft);
}

.card-benefit .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bfc-orange-soft);
  color: var(--bfc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: all .3s;
}

.card-benefit:hover .benefit-icon {
  background: var(--bfc-orange);
  color: #fff;
  transform: scale(1.05);
}

.card-benefit h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bfc-dark);
  margin-bottom: 8px;
}

.card-benefit p {
  color: #888;
  font-size: .85rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ──────── STEPS ──────── */
.step-wrapper {
  counter-reset: step;
  position: relative;
}

.step-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 39px;
  width: 2px;
  background: linear-gradient(to bottom, var(--bfc-orange-soft), var(--bfc-orange-light));
}

@media (min-width: 768px) {
  .step-wrapper::before { left: 50%; margin-left: -1px; }
}

.step-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .step-item {
    width: 50%;
    padding-left: 0;
  }
  .step-item:nth-child(odd) {
    padding-right: 48px;
    text-align: right;
  }
  .step-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 48px;
  }
}

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

.step-number {
  position: absolute;
  left: 20px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bfc-orange);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230,126,34,.3);
  z-index: 1;
}

@media (min-width: 768px) {
  .step-item:nth-child(odd) .step-number { left: auto; right: -20px; }
  .step-item:nth-child(even) .step-number { left: -20px; }
}

.step-content {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--bfc-shadow);
  transition: all .3s;
}

.step-content:hover {
  box-shadow: var(--bfc-shadow-hover);
  border-color: var(--bfc-orange-soft);
}

.step-content h6 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--bfc-dark);
  margin-bottom: 4px;
}

.step-content p {
  color: #888;
  font-size: .83rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ──────── FORM ──────── */
.form-label {
  font-weight: 600;
  font-size: .82rem;
  color: #374151;
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--bfc-orange);
  box-shadow: 0 0 0 3px rgba(230,126,34,.12);
}

.form-control.is-invalid, .form-select.is-invalid { border-color: #dc3545; }
.invalid-feedback { font-size: .78rem; }

.form-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--bfc-shadow);
}

.form-card .form-card-header {
  background: var(--bfc-dark);
  color: #fff;
  padding: 18px 20px;
  font-weight: 700;
  font-size: .95rem;
}

.form-card .form-card-body { padding: 22px; }

.prerequisite-box {
  background: var(--bfc-orange-soft);
  border: 1px dashed var(--bfc-orange);
  border-radius: 8px;
  padding: 16px;
}

/* ──────── FILE INPUT ──────── */
.file-input-wrap {
  position: relative;
}

.file-input-wrap .file-name {
  display: block;
  font-size: .8rem;
  color: #6c757d;
  margin-top: 4px;
  padding-left: 2px;
}

/* ──────── LOADING ──────── */
#loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

#loading-overlay.show { display: flex; }

.spinner-bfc {
  width: 40px;
  height: 40px;
  position: relative;
}

.spinner-bfc::before,
.spinner-bfc::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
}

.spinner-bfc::before {
  border-top-color: var(--bfc-orange);
  animation: spin .7s linear infinite;
}

.spinner-bfc::after {
  border-right-color: rgba(255,255,255,.2);
  animation: spin .9s linear infinite reverse;
}

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

/* ──────── SCROLL TO TOP ──────── */
#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bfc-dark);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .25s;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

#scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  background: var(--bfc-orange);
  border-color: var(--bfc-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,.3);
}

/* ──────── ALERTS ──────── */
.alert-premium {
  border: none;
  border-radius: 10px;
  padding: 14px 18px;
}

.alert-premium.alert-success { background: #f0fdf4; color: #166534; }
.alert-premium.alert-danger { background: #fef2f2; color: #991b1b; }

/* ──────── DETAIL ──────── */
.detail-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--bfc-shadow);
}

.detail-cover img { width: 100%; display: block; }

.detail-content {
  font-size: .95rem;
  line-height: 1.75;
  color: #4b5563;
}

.detail-section {
  border: 1px solid #eee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--bfc-shadow);
}

.detail-section .detail-section-body { padding: 24px; }

/* ──────── FOOTER ──────── */
.footer-bfc {
  background: var(--bfc-darker);
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .85rem;
}

.footer-bfc a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-bfc a:hover { color: var(--bfc-orange-light); }

.footer-bfc .footer-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}

.footer-bfc .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
}

.footer-bfc .footer-contact-item i {
  margin-top: 3px;
  color: rgba(230,126,34,.5);
  font-size: .85rem;
  flex-shrink: 0;
}

.footer-bfc .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  transition: all .2s;
}

.footer-bfc .footer-social-link:hover {
  background: rgba(230,126,34,.15);
  transform: translateY(-2px);
}

/* ──────── FILE PREVIEW ──────── */
.file-preview {
  border: 1px solid #eee;
  object-fit: cover;
  width: 100%;
  max-height: 120px;
  display: none;
}

/* ──────── CTA ──────── */
.cta-section {
  background: linear-gradient(135deg, var(--bfc-darker), var(--bfc-dark));
  padding: 50px 0;
  text-align: center;
}

.cta-section h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

.cta-section p {
  color: rgba(255,255,255,.5);
  max-width: 440px;
  margin: 8px auto 20px;
}

/* ──────── EMPTY STATE ──────── */
.empty-state { padding: 80px 20px; }
.empty-state i { font-size: 3rem; color: #ddd; }
.empty-state h4 { font-weight: 700; margin-top: 16px; color: #374151; }
.empty-state p { color: #aaa; max-width: 360px; margin: 8px auto 0; }

/* ──────── ERROR PAGE ──────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  text-align: center;
}

.error-page .error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--bfc-orange), var(--bfc-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page .error-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-top: 8px;
}

.error-page .error-text {
  color: rgba(255,255,255,.45);
  max-width: 400px;
  margin: 8px auto 24px;
}

.error-page .btn-error {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.error-page .btn-error:hover {
  background: var(--bfc-orange);
  border-color: var(--bfc-orange);
  color: #fff;
}

/* ──────── STEP CIRCLE ──────────── */
.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--bfc-orange), var(--bfc-orange-light));
  box-shadow: 0 4px 14px rgba(230,126,34,.3);
}

/* ──────── LOGIN ANIMATION ──────── */
.login-card {
  animation: loginFadeIn .6s ease-out;
}

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

/* ──────── ANIMATIONS ──────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all .55s ease-out;
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: .08s; }
.stagger-3 { transition-delay: .16s; }
.stagger-4 { transition-delay: .24s; }
.stagger-5 { transition-delay: .32s; }
.stagger-6 { transition-delay: .4s; }

/* ──────── RESPONSIVE ──────── */
@media (max-width: 991px) {
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .hero-bfc { min-height: auto; padding: 48px 0 !important; }
  .hero-bfc::after { font-size: 5rem; }
  .hero-bfc h1 { font-size: 1.7rem !important; }
  .hero-bfc .hero-subtitle { font-size: .9rem; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-number { font-size: 1.2rem; }
  .hero-stats .stat-item + .stat-item::before { left: -10px; }
  .section-wrapper, .section-wrapper-alt { padding: 40px 0; }
  .error-page .error-code { font-size: 5rem; }
  #scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ──────── BATCH SELECTION ──────── */
.batch-option {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all .2s;
  background: #fff;
}

.batch-option:hover:not(.disabled) {
  border-color: var(--bfc-orange);
  background: var(--bfc-orange-soft);
}

.batch-option.selected {
  border-color: var(--bfc-orange);
  background: var(--bfc-orange-soft);
  box-shadow: 0 0 0 3px rgba(230,126,34,.12);
}

.batch-option.disabled {
  opacity: .55;
  cursor: not-allowed;
  background: #f9fafb;
}

.batch-option .batch-radio {
  margin-top: 2px;
}

/* ──────── PACKAGE SELECTION ──────── */
.package-option {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 6px;
  transition: all .2s;
}

.package-option:not(.d-none):hover {
  border-color: var(--bfc-orange);
  background: var(--bfc-orange-soft);
}

.package-option:not(.d-none):has(.package-radio:checked) {
  border-color: var(--bfc-orange);
  background: var(--bfc-orange-soft);
  box-shadow: 0 0 0 3px rgba(230,126,34,.12);
}

/* ──────── BATCH LIST (dashboard cards) ──────── */
.batch-list {
  background: #f9fafb;
  border-radius: 8px;
  padding: 6px 8px;
}

.batch-item {
  transition: background .15s;
}

.batch-item:hover {
  background: rgba(230,126,34,.05);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ──────── HELPERS ──────── */
.dot-indicator { font-size: .5rem; }
.bar-progress { border-radius: 4px; transition: width .4s; }
.bg-orange { background: var(--bfc-orange, #ea3d0c); }
