/* ============================================
   WorkLink Nigeria — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #1E3A8A;
  --primary-dark: #152d6e;
  --primary-light: #2d52b8;
  --secondary: #06B6D4;
  --secondary-dark: #0592aa;
  --accent: #F59E0B;
  --accent-dark: #d97706;
  --bg: #F9FAFB;
  --bg-card: #ffffff;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-focus: #06B6D4;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(30,58,138,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-height: 70px;
  --bottom-nav: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.logged-in { padding-bottom: var(--bottom-nav); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }

img { max-width: 100%; height: auto; }

/* ---- UTILITIES ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.hidden { display: none; }
.w-full { width: 100%; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-reviewing { background: #EDE9FE; color: #5B21B6; }
.badge-transit { background: #DBEAFE; color: #1D4ED8; }
.badge-accepted { background: #D1FAE5; color: #065F46; }
.badge-rejected { background: #FEE2E2; color: #991B1B; }
.badge-paid { background: #D1FAE5; color: #065F46; }
.badge-unpaid { background: #FEE2E2; color: #991B1B; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.35s ease;
}
.btn:active::after { opacity: 1; transform: scale(1.2); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.9; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }
.form-error { font-size: 0.8125rem; color: var(--danger); margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-lift:hover { transform: translateY(-4px); }

/* ---- ALERTS ---- */
.alert {
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-warning { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }
.alert-info { background: #DBEAFE; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}
.navbar-brand .logo-icon {
  width: 78px;
  height: 78px;
  background: none;/*linear-gradient(135deg, var(--primary), var(--secondary));*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.navbar-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(30,58,138,0.06); }
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
@media(max-width:768px){
  .hamburger { display: flex; }
  .navbar-center { 
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 999;
  }
  .navbar-center.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
}

/* ---- BOTTOM NAV ---- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.bottom-nav .container { display: flex; height: 100%; }
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  border-radius: 12px;
}
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.active .bnav-icon {
  background: rgba(30,58,138,0.1);
  transform: translateY(-2px);
}
.bnav-icon {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  transition: all var(--transition);
}
.bottom-nav-item:hover .bnav-icon { background: rgba(30,58,138,0.06); }
.bnav-label { font-size: 0.6875rem; font-weight: 600; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3278 40%, #0f1f5c 100%);
  color: #fff;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease both;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s ease 0.4s both;
  position: relative;
  z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.hero-stat-label { font-size: 0.8125rem; opacity: 0.75; }

/* ---- SECTION ---- */
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(30,58,138,0.08);
  color: var(--primary);
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.0625rem; }

/* ---- HOW IT WORKS ---- */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.how-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.how-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.how-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.how-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- TARGET USERS ---- */
.target-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.target-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.target-item:hover {
  border-color: var(--secondary);
  background: linear-gradient(135deg, rgba(6,182,212,0.04), rgba(30,58,138,0.04));
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.target-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.target-item span:last-child { font-size: 0.875rem; font-weight: 600; color: var(--text); }

/* ---- METRICS ---- */
.metrics-section {
  background: linear-gradient(135deg, var(--primary), #1a3278);
  color: #fff;
  padding: 4rem 0;
}
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.metric-item { text-align: center; }
.metric-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-label { font-size: 1rem; opacity: 0.85; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: rgba(30,58,138,0.03); }
.faq-question.open { background: rgba(30,58,138,0.04); color: var(--primary); }
.faq-icon { font-size: 1.25rem; transition: transform var(--transition); flex-shrink: 0; color: var(--text-muted); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 0.75rem 1.25rem 1.25rem; }

/* ---- FOOTER ---- */
.footer {
  background: #0f1b3d;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; }

/* ---- AUTH PAGES ---- */
.auth-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}
@media(max-width:768px){ .auth-wrapper { grid-template-columns: 1fr; } }
.auth-panel {
  background: linear-gradient(160deg, var(--primary), #1a3278, #0f1f5c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.auth-panel::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.25) 0%, transparent 70%);
}
.auth-panel-content { position: relative; z-index: 1; max-width: 380px; }
.auth-panel-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.auth-panel-content p { opacity: 0.8; font-size: 1rem; line-height: 1.7; }
.auth-features { margin-top: 2.5rem; }
.auth-feature { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9375rem; }
.auth-feature-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 2.5rem; }
.auth-card { width: 100%; max-width: 440px; }
.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.auth-logo .logo-icon {
  width: 88px;
  height: 88px;
  background: none;/*linear-gradient(135deg, var(--primary), var(--secondary));*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.auth-title { font-size: 1.75rem; margin-bottom: 0.35rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }
@media(max-width:768px){ .auth-panel { display: none; } .auth-form-side { padding: 2rem 1.25rem; } }

/* ---- DASHBOARD LAYOUT ---- */
.dashboard { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - var(--nav-height)); }
@media(max-width:900px){ .dashboard { grid-template-columns: 1fr; } }
.sidebar {
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  scrollbar-width: thin;
}
@media(max-width:900px){ .sidebar { display: none; } }
.sidebar-section { padding: 0 1rem 1rem; }
.sidebar-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); padding: 0 0.5rem; margin-bottom: 0.5rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.875rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  margin-bottom: 0.125rem;
  cursor: pointer;
  text-decoration: none;
}
.sidebar-link:hover { background: rgba(30,58,138,0.06); color: var(--primary); }
.sidebar-link.active { background: rgba(30,58,138,0.1); color: var(--primary); font-weight: 600; }
.sidebar-link .link-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: background var(--transition); flex-shrink: 0; }
.sidebar-link.active .link-icon { background: rgba(30,58,138,0.12); }
.sidebar-divider { height: 1px; background: var(--border); margin: 0.75rem 1rem; }
.dashboard-main { padding: 2rem 1.5rem; overflow-x: hidden; }
@media(max-width:600px){ .dashboard-main { padding: 1.25rem 1rem; } }

/* ---- STATS CARDS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.stat-icon.blue { background: rgba(30,58,138,0.1); color: var(--primary); }
.stat-icon.cyan { background: rgba(6,182,212,0.1); color: var(--secondary); }
.stat-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.stat-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.stat-icon.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.stat-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }

/* ---- TABLE ---- */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead tr { background: rgba(30,58,138,0.04); }
th { padding: 0.875rem 1rem; text-align: left; font-size: 0.8125rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
td { padding: 0.875rem 1rem; font-size: 0.9rem; border-top: 1px solid var(--border); color: var(--text); }
tr:hover td { background: rgba(30,58,138,0.02); }
.table-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* ---- JOB CARDS ---- */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.5rem;
  transition: all var(--transition);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.company-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.job-title { font-family: 'Syne', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.2rem; }
.job-company { font-size: 0.875rem; color: var(--text-muted); }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.875rem 0; }
.job-meta-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--text-muted); background: var(--bg); padding: 0.25rem 0.6rem; border-radius: 6px; }
.job-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.job-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.job-salary { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.9375rem; }

/* ---- PROFILE ---- */
.profile-header-card {
  background: linear-gradient(135deg, var(--primary), #1a3278);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.profile-info p { opacity: 0.8; font-size: 0.9375rem; }

/* ---- PROGRESS ---- */
.progress-bar { background: rgba(255,255,255,0.15); border-radius: 50px; height: 8px; overflow: hidden; margin-top: 0.75rem; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 50px; transition: width 1s ease; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.8125rem; margin-bottom: 0.3rem; opacity: 0.9; }

/* ---- STATUS TIMELINE ---- */
.status-timeline { display: flex; gap: 0; overflow: hidden; border-radius: 50px; border: 1.5px solid var(--border); background: #fff; }
.status-step {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
}
.status-step.done { background: var(--primary); color: #fff; }
.status-step.current { background: var(--accent); color: #fff; }

/* ---- PAGE HEADER ---- */
.page-header { margin-bottom: 2rem; }
.page-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.35rem; }
.page-header p { color: var(--text-muted); font-size: 0.9375rem; }
.page-header-row { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ---- NOTIFICATION BANNER ---- */
.notification-card {
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(30,58,138,0.06));
  border: 1.5px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.notification-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 0.1rem; }
.notification-text { font-size: 0.9rem; }
.notification-text strong { display: block; margin-bottom: 0.2rem; color: var(--primary); }

/* ---- FILE UPLOAD ---- */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: #fafafa;
}
.file-upload-zone:hover { border-color: var(--secondary); background: rgba(6,182,212,0.04); }
.file-upload-zone.dragover { border-color: var(--secondary); background: rgba(6,182,212,0.08); }
.file-upload-icon { font-size: 2.5rem; margin-bottom: 0.75rem; color: var(--text-light); }
.file-upload-text { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.file-upload-hint { font-size: 0.8125rem; color: var(--text-muted); }

/* ---- PAGINATION ---- */
.pagination { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.page-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-size: 1.1875rem; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text-muted); padding: 0.25rem; line-height: 1; transition: color var(--transition); }
.modal-close:hover { color: var(--danger); }
.modal-body { padding: 1.5rem 1.75rem; }
.modal-footer { padding: 1rem 1.75rem 1.5rem; display: flex; justify-content: flex-end; gap: 0.75rem; }

/* ---- TABS ---- */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 1.75rem; overflow-x: auto; }
.tab-btn {
  padding: 0.75rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.search-bar:focus-within { border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(6,182,212,0.12); }
.search-bar input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  background: transparent;
}
.search-bar button { padding: 0.65rem 1rem; background: var(--primary); color: #fff; border: none; cursor: pointer; transition: background var(--transition); }
.search-bar button:hover { background: var(--primary-light); }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.3; }
.empty-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-text { color: var(--text-muted); font-size: 0.9375rem; }

/* ---- ADMIN SIDEBAR SPECIFIC ---- */
.admin-sidebar { background: #0f1b3d; }
.admin-sidebar .sidebar-title { color: rgba(255,255,255,0.35); }
.admin-sidebar .sidebar-link { color: rgba(255,255,255,0.6); }
.admin-sidebar .sidebar-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-sidebar .sidebar-link.active { background: rgba(6,182,212,0.2); color: var(--secondary); }
.admin-sidebar .sidebar-divider { background: rgba(255,255,255,0.1); }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
@media(max-width:768px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30,58,138,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info-item:last-child { border-bottom: none; }

/* ---- PAYMENT CARD ---- */
.payment-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  padding: 2.5rem;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.payment-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}
.payment-amount span { font-size: 1.5rem; vertical-align: super; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { opacity: 1; transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { transform: scale(1); } }

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-fade-in { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ---- RESPONSIVE DASHBOARD ---- */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media(max-width:900px){ .mobile-header { display: flex; } }
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem;
}

/* ---- MISC ---- */
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.p-0 { padding: 0; }

/* Print styles */
@media print { .navbar, .bottom-nav, .sidebar { display: none !important; } }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* Focus visible */
:focus-visible { outline: 2.5px solid var(--secondary); outline-offset: 2px; }

/* About section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:768px){ .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-visual {
  background: linear-gradient(135deg, var(--primary), #1a3278);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
}
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width:640px){ .mission-vision-grid { grid-template-columns: 1fr; } }
.mv-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.mv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.mv-card.mission::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--accent), var(--secondary)); }
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.mv-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
