/* ════════════════════════════════════════════════════════════
   JOBDEXO — Master Stylesheet
   Theme: Teal (#0891b2) + Gold (#d4a017) | Mobile First
   ════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
  --teal:        #0891b2;
  --teal-dark:   #0e7490;
  --teal-light:  #e0f7fa;
  --gold:        #d4a017;
  --gold-dark:   #b8860b;
  --gold-light:  #fff8e1;
  --gradient:    linear-gradient(135deg, #0891b2 0%, #d4a017 100%);
  --gradient-r:  linear-gradient(135deg, #d4a017 0%, #0891b2 100%);

  --bg:          #f8fafc;
  --bg-white:    #ffffff;
  --bg-card:     #ffffff;
  --border:      #e2e8f0;
  --border-light:#f1f5f9;

  --text:        #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;

  --success:     #10b981;
  --warning:     #f59e0b;
  --danger:      #ef4444;
  --info:        #3b82f6;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --shadow-teal: 0 4px 20px rgba(8,145,178,.25);
  --shadow-gold: 0 4px 20px rgba(212,160,23,.25);

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  all .2s ease;
  --header-h:    68px;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  border: none;
}

/* ─── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ─── Top Bar ───────────────────────────────────────────────── */
.topbar {
  background: var(--gradient);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-links { display: flex; gap: 8px; align-items: center; }
.topbar-links a { color: rgba(255,255,255,.9); }
.topbar-links a:hover { color: #fff; }
@media (max-width: 480px) { .topbar-inner > span { display: none; } }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap img {
  width: 84px; height: 84px;
  border-radius: 20px;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tag { font-size: .65rem; color: var(--text-muted); font-weight: 500; }

/* Nav */
.main-nav { flex: 1; display: none; }
@media (min-width: 1024px) { .main-nav { display: block; } }
.main-nav ul { display: flex; gap: 4px; }
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: var(--teal-light);
}

/* Header CTA */
.header-cta { display: none; gap: 10px; }
@media (min-width: 768px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  right: -100%;
  width: min(320px, 85vw);
  height: calc(100vh - var(--header-h));
  background: var(--bg-white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transition: right .3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--teal-light); color: var(--teal); }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.w-full { width: 100%; text-align: center; }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.overlay.show { display: block; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0e7490 0%, #b8860b 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(8,145,178,.35);
}
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, #d4a017, #b8860b);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212,160,23,.4); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }

/* ─── Flash Messages ────────────────────────────────────────── */
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-weight: 500;
  font-size: .9rem;
  gap: 12px;
}
.flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--success); }
.flash-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--danger); }
.flash-warning { background: #fef3c7; color: #92400e; border-left: 4px solid var(--warning); }
.flash-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid var(--info); }
.flash-close { font-size: 1.1rem; opacity: .6; padding: 2px 6px; }
.flash-close:hover { opacity: 1; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.card-sm { padding: 14px 16px; border-radius: var(--radius-sm); }

/* ─── Job Cards ──────────────────────────────────────────────── */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.job-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(8,145,178,.3);
  transform: translateY(-2px);
}
.job-card:hover::before { opacity: 1; }

.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.job-company { font-size: .82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.job-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-top: 4px;
}
.job-title a { color: inherit; }
.job-title a:hover { color: var(--teal); }

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-fulltime  { background: #d1fae5; color: #065f46; }
.badge-internship{ background: #dbeafe; color: #1e40af; }
.badge-remote    { background: var(--teal-light); color: var(--teal-dark); }
.badge-wfh       { background: var(--gold-light); color: var(--gold-dark); }

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--text-muted);
}
.job-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  gap: 12px;
  flex-wrap: wrap;
}
.job-deadline { font-size: .78rem; color: var(--text-muted); }
.job-deadline.expiring { color: var(--danger); font-weight: 600; }

/* ─── Tags / Pills ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--border-light);
  color: var(--text-muted);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 500;
}
.tag-teal { background: var(--teal-light); color: var(--teal-dark); }
.tag-gold { background: var(--gold-light); color: var(--gold-dark); }

/* ─── Section Headings ───────────────────────────────────────── */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}
.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { color: var(--text-muted); font-size: .95rem; margin-top: 8px; }

/* ─── Hero Banner ────────────────────────────────────────────── */
.hero {
  background: var(--gradient);
  padding: 56px 0 64px;
  color: #fff;
  text-align: center;
  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.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.hero p  { font-size: clamp(.95rem, 2.5vw, 1.15rem); opacity: .9; max-width: 560px; margin: 0 auto 28px; }

/* Search Bar */
.search-bar {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-bar input {
  flex: 1;
  padding: 14px 18px;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
}
.search-bar input::placeholder { color: var(--text-light); }
.search-bar button {
  padding: 14px 22px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--gold-dark); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; }
.hero-stat-label { font-size: .78rem; opacity: .85; }

/* ─── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}
.filter-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--text);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,.1); }
.filter-chip {
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

/* ─── Grid Layouts ───────────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jobs-grid { grid-template-columns: repeat(3, 1fr); } }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 2fr 1fr; } }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label span { color: var(--danger); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,.1);
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--danger); margin-top: 4px; }
.word-counter { font-size: .78rem; color: var(--text-muted); text-align: right; margin-top: 4px; }
.word-counter.ok { color: var(--success); }

/* ─── Auth Pages ─────────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }

/* ─── Dashboard ──────────────────────────────────────────────── */
.dashboard-wrap { display: flex; min-height: calc(100vh - var(--header-h)); }
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  display: none;
}
@media (min-width: 1024px) { .sidebar { display: block; } }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--teal);
  background: var(--teal-light);
  border-left-color: var(--teal);
}
.dashboard-main { flex: 1; padding: 28px 24px; overflow-x: hidden; }

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.stat-card-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card-label { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

/* ─── Table ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; background: var(--bg-white); }
thead { background: var(--gradient); color: #fff; }
thead th { padding: 12px 16px; font-size: .82rem; font-weight: 600; text-align: left; white-space: nowrap; }
tbody td { padding: 13px 16px; font-size: .88rem; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg); }

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status-pending  { background: #fef3c7; color: #92400e; }
.status-approved { background: #d1fae5; color: #065f46; }
.status-rejected { background: #fee2e2; color: #991b1b; }

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { opacity: .5; }

/* ─── Single Job Page ────────────────────────────────────────── */
.job-detail-header {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.job-detail-title { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 8px; }
.job-detail-company { font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 16px; }
.job-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .job-info-grid { grid-template-columns: repeat(4, 1fr); } }
.job-info-item { background: var(--bg); border-radius: var(--radius-sm); padding: 12px; }
.job-info-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.job-info-val   { font-size: .92rem; font-weight: 700; color: var(--text); margin-top: 3px; }

.job-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.job-content h2:first-child { margin-top: 0; }
.job-content p, .job-content li { font-size: .93rem; color: var(--text-muted); line-height: 1.8; }
.job-content ul { padding-left: 20px; list-style: disc; }
.job-content ul li { margin-bottom: 4px; }

/* Apply Sticky Bar */
.apply-sticky {
  position: sticky;
  bottom: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
@media (min-width: 768px) { .apply-sticky { display: none; } }

/* ─── Empty State ────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: .9rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #0f172a; color: #94a3b8; margin-top: 60px; }
.footer-top { padding: 56px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }

.footer-brand .logo-name { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.footer-brand .logo-tag  { color: #64748b; }
.footer-desc { font-size: .85rem; line-height: 1.8; margin-top: 14px; color: #64748b; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1e293b;
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: #fff; }

.footer-col h4 { font-size: .88rem; font-weight: 700; color: #e2e8f0; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .7px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .85rem; color: #64748b; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom-inner { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: .8rem; color: #475569; }
.footer-bottom a { color: var(--gold); }
.footer-disclaimer { font-size: .73rem; color: #334155; }

/* ─── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── Skeleton Loading ───────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.section { padding: 48px 0; }
.section-sm { padding: 28px 0; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.rounded { border-radius: var(--radius); }
.shadow  { box-shadow: var(--shadow); }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2  { gap: 16px; }
.hidden { display: none; }

/* ─── Responsive Tweaks ──────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 32px 0; }
  .hero { padding: 36px 0 44px; }
  .auth-card { padding: 28px 20px; }
  .job-detail-header { padding: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}