/* ================================================================
   DIRAPATH – Kenya CBE Career Guidance Platform
   Main Stylesheet
   ================================================================ */

:root {
  --primary: #1a6b3c;
  --primary-dark: #134d2c;
  --primary-light: #2a8f52;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .2s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* ── Utilities ── */
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.fw-bold { font-weight: 700; }
.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; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all 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); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; }
.btn-ghost:hover { background: var(--border); color: var(--text); }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 6px 14px; font-size: .8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 600; letter-spacing: .3px;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-gray { background: #f1f5f9; color: #475569; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font);
  background: var(--bg-card); color: var(--text);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }

/* ── Cards ── */
.card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.card-body { padding: 20px 24px; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--bg); }

/* ── Alerts ── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 16px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* ── Navbar ── */
.navbar {
  background: var(--primary); color: #fff;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-lg);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; max-width: 1200px; margin: 0 auto;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo {
  width: 38px; height: 38px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--primary);
}
.navbar-title { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: .5px; }
.navbar-subtitle { font-size: .65rem; color: rgba(255,255,255,.7); display: block; margin-top: -2px; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,.85); padding: 8px 14px; border-radius: var(--radius);
  font-size: .88rem; font-weight: 500; transition: all var(--transition);
  text-decoration: none; border: none; background: none; cursor: pointer;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.15); color: #fff; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.navbar-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0a3320 100%);
  color: #fff; padding: 80px 20px; 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.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-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--secondary); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 36px; }
.hero-search { max-width: 640px; margin: 0 auto 40px; }
.search-box-hero {
  display: flex; background: #fff; border-radius: var(--radius-xl);
  padding: 8px; gap: 8px; box-shadow: var(--shadow-xl);
}
.search-box-hero input {
  flex: 1; border: none; outline: none; padding: 10px 16px;
  font-size: 1rem; color: var(--text); background: transparent;
}
.search-box-hero input::placeholder { color: var(--text-light); }
.search-btn-hero {
  background: var(--primary); color: #fff; border: none; border-radius: var(--radius-lg);
  padding: 10px 24px; font-size: .95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 8px; transition: background var(--transition);
}
.search-btn-hero:hover { background: var(--primary-dark); }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 900; color: var(--secondary); }
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

/* ── Section ── */
.section { padding: 60px 0; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 8px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; }

/* ── Grid ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* ── Career Card ── */
.career-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px;
  transition: all var(--transition); cursor: pointer;
  box-shadow: var(--shadow);
}
.career-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.career-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.career-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.career-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.career-card-meta { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 700px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border-radius: var(--radius-xl);
  border: 2px solid var(--border); padding: 32px 28px;
  text-align: center; transition: all var(--transition);
}
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-xl); transform: scale(1.03); }
.pricing-badge { display: inline-block; background: var(--secondary); color: #fff; padding: 4px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-bottom: 12px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin: 16px 0 4px; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-period { color: var(--text-muted); font-size: .88rem; margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 8px 0; font-size: .9rem; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--danger); font-weight: 700; flex-shrink: 0; }

/* ── University Card ── */
.uni-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 20px;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.uni-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.uni-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.uni-meta { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.uni-courses { font-size: .82rem; color: var(--text-light); }

/* ── Page Specific ── */
.page { display: none; }
.page.active { display: block; }

/* ── Search Page ── */
.search-filters {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow); margin-bottom: 28px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
}
.search-filters .form-group { margin-bottom: 0; flex: 1; min-width: 180px; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.results-count { font-size: .9rem; color: var(--text-muted); }

/* ── Career Detail ── */
.career-detail-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: var(--radius-xl); padding: 40px;
  display: flex; gap: 28px; align-items: center; margin-bottom: 32px;
}
.career-detail-icon {
  width: 80px; height: 80px; background: rgba(255,255,255,.2);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem; flex-shrink: 0;
}
.career-detail-title { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.career-detail-desc { font-size: .95rem; opacity: .88; line-height: 1.6; }
.career-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 24px 0; }
.career-meta-item { background: rgba(255,255,255,.15); border-radius: var(--radius); padding: 14px 16px; }
.career-meta-item .label { font-size: .75rem; opacity: .75; text-transform: uppercase; letter-spacing: .5px; }
.career-meta-item .value { font-size: 1.1rem; font-weight: 700; margin-top: 4px; }

.detail-section { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow); }
.detail-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: flex; gap: 8px; align-items: center; }

/* ── CBE Pathway Steps ── */
.pathway-steps { display: flex; flex-direction: column; gap: 0; }
.pathway-step { display: flex; gap: 16px; }
.pathway-step-line { display: flex; flex-direction: column; align-items: center; }
.pathway-step-circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.pathway-step-connector { width: 2px; background: var(--border); flex: 1; min-height: 20px; margin: 4px 0; }
.pathway-step-content { padding-bottom: 20px; }
.pathway-step-content h4 { font-size: .95rem; font-weight: 700; color: var(--text); }
.pathway-step-content p { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* ── Dashboard ── */
.dashboard-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: 32px; border-radius: var(--radius-xl); margin-bottom: 28px;
}
.dashboard-header h2 { font-size: 1.5rem; font-weight: 800; }
.dashboard-header p { opacity: .85; margin-top: 6px; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); text-align: center; }
.stat-card .stat-num { font-size: 2rem; font-weight: 900; color: var(--primary); }
.stat-card .stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* ── Tabs ── */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  padding: 10px 20px; font-size: .9rem; font-weight: 600; cursor: pointer;
  border: none; background: none; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn:hover { color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Personality Quiz ── */
.quiz-question { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.quiz-question h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-option {
  padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); font-size: .9rem;
  display: flex; gap: 12px; align-items: center;
}
.quiz-option:hover { border-color: var(--primary); background: #f0fdf4; }
.quiz-option.selected { border-color: var(--primary); background: #f0fdf4; font-weight: 600; }
.quiz-progress { height: 6px; background: var(--border); border-radius: 999px; margin-bottom: 24px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--primary); transition: width .4s ease; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-card); border-radius: var(--radius-xl);
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); transform: scale(.96);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { padding: 24px 28px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.2rem; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); padding: 4px; border-radius: var(--radius); transition: color var(--transition); }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px 28px; }
.modal-footer { padding: 16px 28px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Footer ── */
.footer {
  background: #0a1628; color: #94a3b8;
  padding: 50px 0 24px; margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-bottom: 36px; }
.footer-brand .navbar-title { color: #fff; font-size: 1.3rem; }
.footer-brand p { font-size: .88rem; margin-top: 12px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #94a3b8; font-size: .88rem; transition: color var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: .85rem; }
.footer-contact { color: var(--secondary); font-weight: 600; }

/* ── Admin ── */
.admin-sidebar {
  width: 220px; background: var(--primary-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 20px; flex-shrink: 0;
}
.admin-sidebar h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; opacity: .6; margin-bottom: 12px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius); cursor: pointer;
  font-size: .9rem; color: rgba(255,255,255,.8); transition: all var(--transition);
  margin-bottom: 4px; border: none; background: none; width: 100%;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,.15); color: #fff; }
.admin-layout { display: flex; gap: 24px; align-items: flex-start; }
.admin-content { flex: 1; min-width: 0; }
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th { background: var(--bg); padding: 12px 14px; text-align: left; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid var(--border); }
td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
tr:hover td { background: #f8fafc; }

/* ── CBE Framework Visual ── */
.cbe-framework { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.cbe-level {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 2px solid var(--border); padding: 20px; text-align: center;
  transition: all var(--transition);
}
.cbe-level:hover { border-color: var(--primary); }
.cbe-level-icon { font-size: 2rem; margin-bottom: 10px; }
.cbe-level-title { font-weight: 700; font-size: .95rem; color: var(--primary); }
.cbe-level-grades { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.cbe-level-desc { font-size: .82rem; margin-top: 8px; }

/* ── 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: 14px 20px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  font-size: .88rem; max-width: 320px; animation: slideIn .3s ease;
  display: flex; align-items: center; gap: 10px;
}
.toast.success { background: #166534; }
.toast.error { background: #991b1b; }
.toast.info { background: #1e40af; }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(10px); } }

/* ── Loading ── */
.spinner {
  width: 40px; height: 40px; border: 4px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .7s linear infinite; margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--primary-dark); flex-direction: column; padding: 12px; gap: 4px; }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: flex; }
  .hero { padding: 50px 16px; }
  .hero-stats { gap: 24px; }
  .search-box-hero { flex-wrap: wrap; padding: 12px; border-radius: var(--radius-lg); }
  .search-btn-hero { width: 100%; justify-content: center; }
  .career-detail-header { flex-direction: column; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
