/* =====================================================
   style.css — Seminar Registration System (v2)
   Premium: Navy + Gold + Purple | Font Awesome | No Emoji
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #1a2d45;
  --navy-mid:    #162035;
  --gold:        #C9A84C;
  --gold-light:  #e2c06e;
  --purple:      #6C3FC1;
  --purple-light:#8b5cf6;
  --purple-dark: #4c2d9c;
  --accent:      #00D4AA;
  --surface:     #f8faff;
  --surface2:    #eef2ff;
  --border:      #e2e8f0;
  --text-dark:   #1e293b;
  --text-mid:    #475569;
  --text-light:  #94a3b8;
  --white:       #ffffff;
  --danger:      #ef4444;
  --success:     #10b981;
  --warning:     #f59e0b;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(13,27,42,.08);
  --shadow:      0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:   0 20px 60px rgba(13,27,42,.18);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--surface);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { color: var(--purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple-dark); }

/* ── Utils ─────────────────────────────────────────── */
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.flex-1 { flex: 1; }
.text-purple { color: var(--purple) !important; }
.text-gold   { color: var(--gold)   !important; }
.text-navy   { color: var(--navy)   !important; }

/* ── Gradient Text ─────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar-custom {
  background: rgba(13,27,42,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 10px 0;
  transition: var(--transition);
}
.navbar-custom.scrolled {
  background: rgba(13,27,42,.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar-admin {
  background: rgba(13,27,42,.99) !important;
  border-bottom: 2px solid var(--gold) !important;
}
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.brand-icon.small { width: 28px; height: 28px; font-size: 13px; border-radius: 7px; }
.brand-text { color: #fff; font-weight: 800; font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-custom .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500; font-size: 14px;
  padding: 7px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-custom .nav-link:hover { color: var(--gold) !important; background: rgba(201,168,76,.1); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: none; color: #fff; font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(108,63,193,.35);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108,63,193,.5);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8842c);
  border: none; color: #fff; font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,.5);
}

/* ── Hero ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1e1063 70%, #2d1b69 100%);
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(108,63,193,.25), rgba(201,168,76,.08));
  animation: float 8s ease-in-out infinite;
  filter: blur(2px);
}
.hero-shape:nth-child(1) { width:600px;height:600px;top:-200px;right:-200px;animation-delay:-2s; }
.hero-shape:nth-child(2) { width:400px;height:400px;bottom:-100px;left:-100px;animation-delay:-5s;background:linear-gradient(135deg,rgba(0,212,170,.12),rgba(108,63,193,.18)); }
.hero-shape:nth-child(3) { width:250px;height:250px;top:30%;left:10%;animation-delay:-3s;background:rgba(201,168,76,.06); }
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(108,63,193,.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 40px 40px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: fadeInDown .8s ease both;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff; margin-bottom: 20px;
  animation: fadeInUp .8s .1s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7); margin-bottom: 36px;
  animation: fadeInUp .8s .2s ease both;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; animation: fadeInUp .8s .3s ease both; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; }
.hero-meta-item .icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,.18); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeInUp .8s .4s ease both; }
.cta-btn {
  padding: 15px 30px; border-radius: var(--radius-xl);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.cta-paid {
  background: linear-gradient(135deg, var(--gold), #a8842c);
  color: #fff; box-shadow: 0 8px 30px rgba(201,168,76,.45);
}
.cta-paid:hover { transform: translateY(-3px) scale(1.02); color:#fff; box-shadow: 0 16px 40px rgba(201,168,76,.6); }
.cta-free {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: #fff; border: 1.5px solid rgba(255,255,255,.25);
}
.cta-free:hover { background: rgba(255,255,255,.18); color:#fff; transform: translateY(-3px) scale(1.02); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; animation: fadeInUp .8s .5s ease both; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* ── Hero Floating Cards ───────────────────────────── */
.hero-card-stack { position: relative; width: 340px; height: 480px; }
.hero-main-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 24px;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
.hmc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hmc-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; flex-shrink: 0;
}
.hmc-title { color: #fff; font-weight: 700; font-size: 14px; }
.hmc-sub { color: rgba(255,255,255,.5); font-size: 12px; }
.hmc-item {
  background: rgba(255,255,255,.06); border-radius: 8px;
  padding: 9px 12px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: 12px; line-height: 1.3;
}
.hmc-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hmc-footer {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
}
.hmc-count { color: rgba(255,255,255,.6); font-size: 12px; }
.hmc-badge {
  background: var(--gold); color: #000;
  border-radius: 100px; padding: 3px 12px;
  font-size: 11px; font-weight: 800;
}
.hero-float-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 14px 16px;
  position: absolute; animation: float 6s ease-in-out infinite;
  min-width: 160px;
}
.fc-1 { top: 8%; left: -20px; animation-delay: -2s; }
.fc-2 { bottom: 10%; right: -20px; animation-delay: -4s; }
.fc-label { font-size: 11px; color: rgba(255,255,255,.6); }
.fc-value { font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1.2; margin-top: 4px; }

/* ── Scroll Indicator ──────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45); font-size: 22px;
  text-decoration: none; z-index: 2;
  transition: color .3s;
}
.scroll-indicator:hover { color: var(--gold); }

/* ── Section Helpers ───────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface2); color: var(--purple);
  border: 1px solid rgba(108,63,193,.18);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--navy); margin-bottom: 16px;
}
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}

/* ── Cards ─────────────────────────────────────────── */
.premium-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(13,27,42,.07), 0 1px 4px rgba(13,27,42,.04);
  border: 1px solid var(--border);
  transition: var(--transition); overflow: hidden;
}
.premium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(108,63,193,.18); }
.card-header-gradient {
  background: linear-gradient(135deg, var(--navy), var(--purple-dark));
  padding: 20px 24px; color: #fff;
}
.glass-card {
  background: rgba(255,255,255,.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); transition: var(--transition);
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Speaker Avatar ────────────────────────────────── */
.speaker-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; flex-shrink: 0;
}

/* ── Schedule Card ─────────────────────────────────── */
.schedule-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--surface2), rgba(201,168,76,.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 18px; flex-shrink: 0;
}
.schedule-card:hover .schedule-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
}
.day-header {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--purple-dark));
  color: #fff; border-radius: 100px;
  padding: 8px 24px; font-size: 14px; font-weight: 700;
  margin-bottom: 20px;
}

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 100%);
}
.cta-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(201,168,76,.15);
  border: 2px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gold);
  margin: 0 auto 20px;
}
.cta-title { color: #fff; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,.65); font-size: 16px; max-width: 480px; margin: 0 auto 36px; }

/* ── Seminar Selection ─────────────────────────────── */
.seminar-option { position: relative; cursor: pointer; display: block; }
.seminar-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.seminar-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; transition: var(--transition);
  cursor: pointer; background: #fff;
}
.seminar-option input:checked + .seminar-card {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(108,63,193,.04), rgba(108,63,193,.02));
  box-shadow: 0 0 0 4px rgba(108,63,193,.1);
}
.seminar-card:hover { border-color: var(--purple-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.seminar-title { font-weight: 700; color: var(--navy); font-size: 15px; }
.seminar-desc  { color: var(--text-mid); font-size: 13px; margin: 4px 0 8px; }
.check-indicator {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0; font-size: 12px;
}
.seminar-option input:checked + .seminar-card .check-indicator {
  background: var(--purple); border-color: var(--purple); color: #fff;
}
.quota-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.quota-badge.available { background: #dcfce7; color: #166534; }
.quota-badge.limited   { background: #fef3c7; color: #92400e; }
.quota-badge.full      { background: #fee2e2; color: #991b1b; }

/* ── Section Divider ───────────────────────────────── */
.section-divider { display: flex; align-items: center; gap: 12px; margin: 32px 0 16px; }
.section-divider .label {
  white-space: nowrap; font-weight: 700; font-size: 13px; color: var(--purple);
  background: linear-gradient(135deg, rgba(108,63,193,.08), rgba(201,168,76,.06));
  border: 1.5px solid rgba(108,63,193,.2); border-radius: 100px;
  padding: 6px 18px; display: flex; align-items: center; gap: 8px;
}
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Form ──────────────────────────────────────────── */
.form-section {
  padding-top: 100px; padding-bottom: 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface2) 100%);
}
.form-wrap      { max-width: 720px; margin: 0 auto; }
.form-wrap-wide { max-width: 920px; margin: 0 auto; }
.form-header    { text-align: center; margin-bottom: 36px; }
.form-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  margin: 0 auto 20px;
}
.form-icon.paid  { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.form-icon.free  { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #166534; }
.form-icon.admin { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: var(--purple); }
.form-label { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 15px; color: var(--text-dark); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(108,63,193,.1); outline: none;
}
.form-control::placeholder { color: var(--text-light); }

/* ── Step Indicator ────────────────────────────────── */
.steps-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  border: 2px solid var(--border); background: #fff; color: var(--text-light);
  transition: var(--transition); z-index: 1; position: relative;
}
.step-dot.active   { border-color: var(--purple); background: var(--purple); color: #fff; }
.step-dot.complete { border-color: var(--success);  background: var(--success);  color: #fff; }
.step-label { font-size: 11px; font-weight: 600; color: var(--text-light); white-space: nowrap; }
.step-label.active   { color: var(--purple); }
.step-label.complete { color: var(--success); }
.step-line { height: 2px; width: 64px; background: var(--border); margin-bottom: 22px; transition: var(--transition); }
.step-line.complete  { background: var(--success); }

/* ── Upload Area ───────────────────────────────────── */
.upload-area {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 44px 20px; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--surface);
}
.upload-area:hover, .upload-area.drag-over { border-color: var(--purple); background: rgba(108,63,193,.04); }
.upload-icon { font-size: 42px; color: var(--text-light); margin-bottom: 12px; }
.upload-preview { max-width: 100%; max-height: 220px; border-radius: var(--radius-sm); display: none; }

/* ── Payment Card ──────────────────────────────────── */
.payment-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 28px 32px; color: #fff;
  position: relative; overflow: hidden;
}
.payment-info-card::before {
  content: ''; position: absolute; top:-60px; right:-60px;
  width: 220px; height: 220px; background: rgba(201,168,76,.08); border-radius: 50%;
}
.payment-info-card .bank-name    { font-size: 22px; font-weight: 800; color: var(--gold); }
.payment-info-card .account-num  { font-size: 2rem; font-weight: 900; letter-spacing: 4px; font-family: monospace; }
.payment-info-card .account-name { color: rgba(255,255,255,.65); font-size: 14px; }

/* ── Loading Overlay ───────────────────────────────── */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,.72);
  backdrop-filter: blur(4px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.loading-overlay.active { display: flex; }
.loader-ring {
  width: 56px; height: 56px;
  border: 4px solid rgba(201,168,76,.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.loading-text { color: #fff; font-weight: 600; font-size: 16px; }

/* ── Alert ─────────────────────────────────────────── */
.alert { border: none; border-radius: var(--radius); padding: 14px 20px; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-danger   { background: #fee2e2; color: #991b1b; }
.alert-warning  { background: #fef3c7; color: #92400e; }
.alert-info     { background: #dbeafe; color: #1e40af; }

/* ── Admin Sidebar ─────────────────────────────────── */
.admin-wrapper { display: flex; min-height: 100vh; padding-top: 70px; }
.admin-sidebar {
  width: 260px; background: var(--navy); flex-shrink: 0;
  padding: 24px 0; position: fixed; top: 70px; left: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  border-right: 1px solid rgba(201,168,76,.12);
}
.admin-content { flex: 1; margin-left: 260px; padding: 32px; background: var(--surface); min-height: calc(100vh - 70px); }
.sidebar-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); padding: 16px 20px 8px; }
.sidebar-section { padding: 0 12px; margin-bottom: 4px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.68) !important; font-size: 14px; font-weight: 500;
  transition: var(--transition); text-decoration: none; margin-bottom: 2px;
}
.sidebar-link:hover { background: rgba(201,168,76,.1); color: var(--gold) !important; }
.sidebar-link.active {
  background: linear-gradient(135deg, rgba(108,63,193,.35), rgba(201,168,76,.08));
  color: var(--gold) !important; border-left: 3px solid var(--gold);
}
.sidebar-link .icon { font-size: 16px; width: 20px; text-align: center; }

/* ── Stat Card ─────────────────────────────────────── */
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); overflow: hidden;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card .stat-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.stat-card .stat-value { font-size: 2.2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-card .stat-label { font-size: 13px; color: var(--text-mid); margin-top: 6px; }

/* ── Table ─────────────────────────────────────────── */
.table-modern { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.table-modern thead th {
  background: var(--navy); color: rgba(255,255,255,.9);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  border: none; padding: 14px 16px;
}
.table-modern tbody td { padding: 13px 16px; vertical-align: middle; border-bottom: 1px solid var(--border); font-size: 14px; }
.table-modern tbody tr:last-child td { border-bottom: none; }
.table-modern tbody tr:hover td { background: var(--surface2); }

/* ── Status Badges ─────────────────────────────────── */
.badge-pending  { background: #fef3c7; color: #92400e; border-radius: 100px; padding: 4px 12px; font-weight: 600; font-size: 12px; white-space: nowrap; }
.badge-paid     { background: #dcfce7; color: #166534; border-radius: 100px; padding: 4px 12px; font-weight: 600; font-size: 12px; white-space: nowrap; }
.badge-rejected { background: #fee2e2; color: #991b1b; border-radius: 100px; padding: 4px 12px; font-weight: 600; font-size: 12px; white-space: nowrap; }

/* ── Footer ────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 40px 0 20px; margin-top: auto; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 24px 0 16px; }

/* ── Animations ────────────────────────────────────── */
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:translateY(0)} }
@keyframes slideDown  { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

.animate-fade-up { opacity:0; transform:translateY(30px); transition:opacity .6s ease,transform .6s ease; }
.animate-fade-up.visible { opacity:1; transform:translateY(0); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.2rem; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 1.9rem; }
  .hero-stats { gap: 16px; }
  .hero-stat .number { font-size: 1.5rem; }
  .cta-btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .admin-sidebar { transform: translateX(-100%); transition: var(--transition); position: fixed; z-index: 200; }
  .admin-sidebar.show { transform: translateX(0); }
  .admin-content { margin-left: 0; padding: 20px 16px; }
  .step-line { width: 32px; }
  .form-section { padding-top: 85px; padding-bottom: 60px; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.7rem; }
  .steps-indicator { gap: 0; }
  .step-dot { width: 32px; height: 32px; font-size: 12px; }
  .step-line { width: 20px; }
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: rgba(108,63,193,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
