/*
Theme Name: JobHive
Theme URI: https://jobhive.com
Author: JobHive Team
Author URI: https://jobhive.com
Description: A bold, modern WordPress theme for job boards and career platforms. Features job listings, employer profiles, and category filtering.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jobhive
Tags: jobs, job-board, career, employment, dark, modern, bold
*/

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

:root {
  --bg:         #0B0C0F;
  --bg2:        #13151A;
  --bg3:        #1C1F27;
  --accent:     #CAFF00;
  --accent2:    #FF6B35;
  --text:       #F0F0F0;
  --muted:      #8A8F9E;
  --border:     #252830;
  --card-bg:    #13151A;
  --white:      #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.6);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* =========================================
   HEADER / NAV
   ========================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--text);
  background: var(--bg3);
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-ghost {
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { background: #b8e800; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(202,255,0,0.25); }
.btn-secondary {
  padding: 10px 22px;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(202,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,255,0,0.08);
  border: 1px solid rgba(202,255,0,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label { font-size: 13px; color: var(--muted); }
/* Hero Search */
.hero-search-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.search-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.search-row { display: flex; flex-direction: column; gap: 12px; }
.search-field {
  position: relative;
}
.search-field svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  width: 18px; height: 18px;
  pointer-events: none;
}
.search-field input,
.search-field select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.search-field input::placeholder { color: var(--muted); }
.search-field input:focus,
.search-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(202,255,0,0.1); }
.search-btn-full {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.search-btn-full:hover { background: #b8e800; box-shadow: 0 6px 24px rgba(202,255,0,0.3); transform: translateY(-1px); }
.popular-tags { margin-top: 18px; }
.popular-tags p { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.tag-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 5px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.tag-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(202,255,0,0.05); }

/* =========================================
   CATEGORIES SECTION
   ========================================= */
.section { padding: 80px 0; }
.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
}
.section-sub { font-size: 16px; color: var(--muted); margin-top: 12px; max-width: 500px; }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.cat-card:hover { border-color: rgba(202,255,0,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 48px; height: 48px;
  background: var(--bg3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: var(--transition);
}
.cat-card:hover .cat-icon { background: rgba(202,255,0,0.1); }
.cat-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cat-count { font-size: 13px; color: var(--muted); }
.cat-arrow {
  position: absolute;
  top: 24px; right: 20px;
  color: var(--muted);
  font-size: 18px;
  transition: var(--transition);
}
.cat-card:hover .cat-arrow { color: var(--accent); transform: translateX(4px); }

/* =========================================
   FEATURED JOBS
   ========================================= */
.jobs-section { background: var(--bg2); }
.jobs-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.job-card:hover { border-color: rgba(202,255,0,0.25); box-shadow: var(--shadow); transform: translateX(4px); }
.job-card.featured { border-left: 3px solid var(--accent); }
.job-logo {
  width: 60px; height: 60px;
  background: var(--bg3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.job-info {}
.job-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-featured { background: rgba(202,255,0,0.12); color: var(--accent); border: 1px solid rgba(202,255,0,0.2); }
.badge-new { background: rgba(255,107,53,0.12); color: var(--accent2); border: 1px solid rgba(255,107,53,0.2); }
.badge-remote { background: rgba(100,180,255,0.1); color: #64B4FF; border: 1px solid rgba(100,180,255,0.2); }
.badge-fulltime { background: rgba(160,255,160,0.08); color: #90EE90; border: 1px solid rgba(160,255,160,0.2); }
.job-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: var(--transition);
}
.job-card:hover .job-title { color: var(--accent); }
.job-details { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.job-detail { display: flex; align-items: center; gap: 5px; }
.job-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.job-salary {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.job-date { font-size: 12px; color: var(--muted); }
.btn-apply {
  padding: 9px 20px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-apply:hover { background: #b8e800; transform: translateY(-1px); }
.btn-save {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  transition: var(--transition);
}
.btn-save:hover { color: var(--accent); border-color: var(--accent); }

/* =========================================
   FILTERS BAR
   ========================================= */
.filters-bar {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-label { font-size: 13px; font-weight: 600; color: var(--muted); flex-shrink: 0; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.filter-chip {
  padding: 6px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover,
.filter-chip.active { border-color: var(--accent); color: var(--accent); background: rgba(202,255,0,0.05); }
.filter-count { margin-left: auto; font-size: 13px; color: var(--muted); flex-shrink: 0; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.how-step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  position: relative;
  transition: var(--transition);
}
.how-step:hover .step-num { background: rgba(202,255,0,0.08); border-color: var(--accent); box-shadow: 0 0 0 8px rgba(202,255,0,0.05); }
.step-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =========================================
   EMPLOYERS / LOGOS
   ========================================= */
.employers-section { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.employers-label { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 36px; letter-spacing: 1px; text-transform: uppercase; }
.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.employer-logo {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  transition: var(--transition);
  cursor: default;
}
.employer-logo:hover { color: var(--white); border-color: rgba(202,255,0,0.3); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(202,255,0,0.2); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-role { font-size: 12px; color: var(--muted); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, rgba(202,255,0,0.06) 0%, rgba(255,107,53,0.04) 100%);
  border: 1px solid rgba(202,255,0,0.1);
  border-radius: var(--radius-lg);
  margin: 0 24px 80px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(202,255,0,0.08) 0%, transparent 70%);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}
.cta-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: var(--transition);
}
.social-link:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* =========================================
   SINGLE JOB PAGE
   ========================================= */
.single-job-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 48px 0 80px;
  align-items: start;
}
.job-header-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}
.job-header-top { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.company-logo-lg {
  width: 80px; height: 80px;
  background: var(--bg3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.job-header-info {}
.job-header-title { font-family: var(--font-display); font-size: 36px; color: var(--white); letter-spacing: 0.5px; margin-bottom: 8px; }
.company-name { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.company-name a { color: var(--accent); }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-body-content { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.job-body-content h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); margin: 28px 0 14px; }
.job-body-content h2:first-child { margin-top: 0; }
.job-body-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.job-body-content ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.job-body-content ul li { font-size: 15px; color: var(--muted); padding-left: 20px; position: relative; }
.job-body-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.job-sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.sidebar-apply {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}
.sidebar-apply:hover { background: #b8e800; box-shadow: 0 8px 24px rgba(202,255,0,0.3); }
.sidebar-save { width: 100%; padding: 14px; background: transparent; border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); margin-bottom: 28px; }
.sidebar-save:hover { border-color: var(--accent); color: var(--accent); }
.sidebar-details { display: flex; flex-direction: column; gap: 16px; }
.sidebar-detail { display: flex; justify-content: space-between; align-items: center; }
.detail-key { font-size: 13px; color: var(--muted); }
.detail-val { font-size: 13px; font-weight: 600; color: var(--white); }
.sidebar-divider { height: 1px; background: var(--border); margin: 16px 0; }

/* =========================================
   ARCHIVE / ALL JOBS
   ========================================= */
.archive-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 48px 0 80px; align-items: start; }
.filter-sidebar { position: sticky; top: 90px; }
.filter-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.filter-widget h3 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; }
.filter-option:last-child { border-bottom: none; }
.filter-option input[type="checkbox"] {
  width: 16px; height: 16px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}
.filter-option label { font-size: 14px; color: var(--muted); cursor: pointer; flex: 1; transition: var(--transition); }
.filter-option:hover label { color: var(--text); }
.filter-option-count { font-size: 12px; color: var(--muted); background: var(--bg3); padding: 2px 7px; border-radius: 100px; }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 40px;
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.page-hero-sub { font-size: 16px; color: var(--muted); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* =========================================
   PAGINATION
   ========================================= */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 40px 0; }
.page-num {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.page-num:hover,
.page-num.current { border-color: var(--accent); color: var(--accent); background: rgba(202,255,0,0.05); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .single-job-layout { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 48px 1fr; }
  .job-actions { display: none; }
  .hero-stats { gap: 20px; }
  .cta-section { padding: 48px 24px; margin: 0 16px 60px; }
  .jobs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .nav-actions .btn-ghost { display: none; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* =========================================
   UTILITIES
   ========================================= */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.gap-2 { gap: 8px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
