/* ============================================================
   AK Naukri Portal — Main Stylesheet
   ============================================================ */

:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #dbeafe;
  --bg:            #f8fafc;
  --text:          #1e293b;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --card:          #ffffff;
  --success:       #16a34a;
  --danger:        #dc2626;
  --warning:       #d97706;
  --info:          #0891b2;
  --radius:        8px;
  --shadow:        0 1px 4px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --transition:    .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; } .mt-5 { margin-top: 40px; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; } .mb-5 { margin-bottom: 40px; }
.d-flex { display: flex; } .flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: 4px; } .gap-2 { gap: 8px; } .gap-3 { gap: 16px; }
.w-100 { width: 100%; } .fw-bold { font-weight: 700; }
.hidden { display: none !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; color: #fff; }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn-danger   { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #b91c1c; }
.btn-success  { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #15803d; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 12px 28px; font-size: 16px; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-green  { background: #dcfce7; color: #15803d; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-red    { background: #fee2e2; color: #b91c1c; }
.badge-gray   { background: #f1f5f9; color: #475569; }
.badge-purple { background: #ede9fe; color: #6d28d9; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-teal   { background: #ccfbf1; color: #0f766e; }
.badge-pink   { background: #fce7f3; color: #be185d; }

/* ── Cards ── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-body { padding: 20px; }
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 16px; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-control::placeholder { color: #94a3b8; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-text { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

/* ── Navbar ── */
.navbar {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-brand img { height: 36px; width: auto; }
.navbar-brand span { font-size: 18px; font-weight: 800; color: var(--primary); }
.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a { padding: 7px 12px; border-radius: 6px; font-size: 14px; color: var(--text); font-weight: 500; transition: var(--transition); }
.navbar-nav a:hover { background: var(--bg); text-decoration: none; color: var(--primary); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.navbar-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.navbar-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 160px;
  z-index: 999;
  display: none;
  padding: 6px;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; font-size: 14px; color: var(--text); border-radius: 6px; }
.dropdown-menu a:hover { background: var(--bg); text-decoration: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  padding: 70px 0 80px;
  text-align: center;
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.hero p  { font-size: clamp(15px, 2vw, 20px); opacity: .88; margin-bottom: 36px; }

.search-bar {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  flex-wrap: wrap;
}
.search-bar input {
  flex: 1;
  min-width: 160px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
  color: var(--text);
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar .btn { padding: 10px 24px; font-size: 15px; }

/* Autocomplete */
.autocomplete-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 220px;
  overflow-y: auto;
  z-index: 9999;
  min-width: 260px;
}
.autocomplete-dropdown .ac-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.autocomplete-dropdown .ac-item:last-child { border-bottom: none; }
.autocomplete-dropdown .ac-item:hover { background: var(--bg); }
.ac-wrap { position: relative; flex: 1; min-width: 160px; }
.ac-wrap input { width: 100%; }

/* ── Section ── */
.section { padding: 60px 0; }
.section-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.section-sub  { color: var(--muted); font-size: 15px; margin-bottom: 36px; }

/* ── Job Card ── */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.job-card:hover { box-shadow: 0 4px 20px rgba(37,99,235,.15); transform: translateY(-2px); }
.job-card-head { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.job-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; border: 1px solid var(--border); padding: 4px; background: #f8fafc; flex-shrink: 0; }
.job-logo-placeholder { width: 52px; height: 52px; background: var(--primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; flex-shrink: 0; }
.job-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.job-card h3 a { color: var(--text); }
.job-card h3 a:hover { color: var(--primary); text-decoration: none; }
.job-company { font-size: 13px; color: var(--muted); }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.job-meta span { display: flex; align-items: center; gap: 4px; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; }
.job-salary { font-size: 14px; font-weight: 700; color: var(--success); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-size: 36px; font-weight: 800; color: var(--primary); }
.stat-label  { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ── Category Grid ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: var(--transition); cursor: pointer; }
.cat-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(37,99,235,.12); text-decoration: none; }
.cat-card i { font-size: 28px; color: var(--primary); margin-bottom: 10px; }
.cat-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cat-card span { font-size: 12px; color: var(--muted); }

/* ── How it works ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 24px 16px; }
.step-num { width: 52px; height: 52px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 16px; }
.step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 14px; }

/* ── Footer ── */
.footer { background: #0f172a; color: #94a3b8; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand span { font-size: 20px; font-weight: 800; color: #fff; }
.footer-brand p { margin-top: 10px; font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #94a3b8; font-size: 14px; text-decoration: none; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.social-links { display: flex; gap: 12px; }
.social-links a { color: #64748b; font-size: 18px; transition: color var(--transition); }
.social-links a:hover { color: #fff; text-decoration: none; }

/* ── Jobs Page ── */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.filter-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 80px; }
.filter-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; cursor: pointer; font-size: 13px; color: var(--text); }
.filter-check input[type=checkbox] { cursor: pointer; }

/* ── Pagination ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
  min-width: 36px; height: 36px; border: 1.5px solid var(--border);
  background: #fff; border-radius: var(--radius); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text); transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; }

/* ── Job Detail ── */
.job-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.job-detail-main .job-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.job-detail-main .job-logo { width: 72px; height: 72px; }
.job-detail-title h1 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.job-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.job-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }

.job-section { margin-bottom: 28px; }
.job-section h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.job-meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.job-meta-item { display: flex; gap: 10px; align-items: flex-start; }
.job-meta-item i { color: var(--primary); margin-top: 2px; width: 16px; }
.job-meta-item .label { font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.job-meta-item .value { font-size: 14px; font-weight: 600; }
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag { background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }

.company-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.company-sidebar .company-logo { width: 64px; height: 64px; margin-bottom: 12px; }
.company-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }

/* ── Auth Pages ── */
.auth-page { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 40px 16px; background: var(--bg); }
.auth-box { background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.12); padding: 40px; width: 100%; max-width: 440px; }
.auth-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.auth-box .subtitle { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { flex: 1; padding: 10px; background: none; border: none; font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Dashboard ── */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.dashboard-sidebar { background: #fff; border-right: 1px solid var(--border); padding: 24px 0; }
.sidebar-menu { list-style: none; }
.sidebar-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 14px; font-weight: 500; color: var(--muted); transition: var(--transition); cursor: pointer; text-decoration: none; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.sidebar-menu a i { width: 18px; text-align: center; }
.sidebar-user { padding: 20px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.sidebar-user .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.sidebar-user .name { font-weight: 700; font-size: 14px; }
.sidebar-user .role { font-size: 12px; color: var(--muted); }
.dashboard-content { padding: 28px; flex: 1; }
.dashboard-tab { display: none; }
.dashboard-tab.active { display: block; }
.dashboard-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-box .num { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-box .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-box .icon { font-size: 22px; color: var(--primary); float: right; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { background: var(--bg); }
th { padding: 12px 14px; text-align: left; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); }
td { padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fafc; }
.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── Modals ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
.modal-header { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 18px; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); padding: 2px 6px; border-radius: 4px; }
.modal-close:hover { background: var(--bg); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--text); color: #fff; padding: 13px 20px; border-radius: var(--radius); font-size: 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 16px rgba(0,0,0,.2); animation: toastIn .3s ease; min-width: 260px; max-width: 360px; }
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
.toast.info    { background: var(--info); }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

/* ── Spinner ── */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.spinner-dark { border-color: rgba(0,0,0,.15); border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; z-index: 10; }

/* ── Alerts ── */
.alert { padding: 13px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-danger  { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info    { background: #dbeafe; color: #1d4ed8; border: 1px solid #bfdbfe; }
.alert-warning { background: #fef9c3; color: #a16207; border: 1px solid #fde68a; }

/* ── Blog ── */
.blogs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); text-decoration: none; }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; }

/* ── Upload ── */
.upload-area { border: 2px dashed var(--border); border-radius: var(--radius); padding: 30px; text-align: center; cursor: pointer; transition: var(--transition); }
.upload-area:hover { border-color: var(--primary); background: var(--primary-light); }
.upload-area i { font-size: 32px; color: var(--muted); margin-bottom: 10px; }
.upload-area p { font-size: 14px; color: var(--muted); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-actions .btn { display: none; }
  .navbar-hamburger { display: flex; flex-direction: column; justify-content: center; }
  .navbar-mobile.open .navbar-nav {
    display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; padding: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.1); z-index: 999;
    border-top: 1px solid var(--border);
  }
  .navbar-mobile.open .navbar-actions { display: flex; padding: 0 12px 12px; }

  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-sidebar.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .jobs-grid { grid-template-columns: 1fr; }
  table { font-size: 12px; }
  th, td { padding: 10px 8px; }
  .modal { max-height: 95vh; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 0 60px; }
  .section { padding: 40px 0; }
  .auth-box { padding: 28px 20px; }
  .dashboard-content { padding: 16px; }
  .stat-number { font-size: 28px; }
}

/* ── Page specific ── */
.page-header { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; padding: 40px 0; }
.page-header h1 { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.page-header p { opacity: .85; font-size: 15px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: .4; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text); }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: #cbd5e1; border-radius: 999px; transition: .3s; }
.slider::before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .3s; }
input:checked + .slider { background: var(--primary); }
input:checked + .slider::before { transform: translateX(20px); }
