/* JOBPLIX — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #0057FF;
  --primary-dark: #0041C2;
  --accent: #FF6B35;
  --accent-dark: #e55a26;
  --dark: #0F172A;
  --muted: #64748B;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================
   FLASH MESSAGES
   ============================ */
.flash {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}
.flash-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--primary); }
.nav-links .btn-post-job {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
}
.nav-links .btn-post-job:hover { background: var(--primary-dark); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all 0.3s; border-radius: 2px; }

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-content { max-width: 700px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 span { color: #FFD166; }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 36px;
}
.search-bar {
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
.search-bar .search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  min-width: 140px;
}
.search-bar .search-input i { color: var(--muted); font-size: 16px; }
.search-bar input, .search-bar select {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  color: var(--dark);
  background: transparent;
}
.search-bar select { cursor: pointer; }
.search-bar .divider { width: 1px; background: var(--border); align-self: stretch; margin: 8px 0; }
.search-bar .btn-search {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar .btn-search:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ============================
   JOB CARDS
   ============================ */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.25s;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #C7D9FF; }
.job-card:hover::before { background: var(--primary); }

.job-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.company-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.company-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.job-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.job-title a { color: inherit; }
.job-title a:hover { color: var(--primary); }
.company-name { color: var(--muted); font-size: 14px; }

.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.badge-blue   { background: #EFF6FF; color: #1D4ED8; }
.badge-green  { background: #ECFDF5; color: #059669; }
.badge-orange { background: #FFF7ED; color: #C2410C; }
.badge-purple { background: #F5F3FF; color: #6D28D9; }
.badge-yellow { background: #FFFBEB; color: #92400E; }
.badge-gray   { background: #F1F5F9; color: #475569; }

.job-location { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; }
.job-salary { color: var(--dark); font-size: 13px; font-weight: 600; }

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.job-time { color: var(--muted); font-size: 12px; }
.btn-view-job {
  background: var(--primary);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-view-job:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFFBEB;
  color: #92400E;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================
   CATEGORY CARDS
   ============================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card:hover .cat-icon { background: var(--primary); color: var(--white); }
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  transition: all 0.25s;
}
.cat-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--muted); }

/* ============================
   RECENT JOBS LIST
   ============================ */
.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-list-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.job-list-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.job-list-content { flex: 1; }
.job-list-title { font-size: 15px; font-weight: 600; color: var(--dark); }
.job-list-title a { color: inherit; }
.job-list-title a:hover { color: var(--primary); }
.job-list-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; color: var(--muted); font-size: 13px; }
.job-list-meta span { display: flex; align-items: center; gap: 5px; }
.job-list-actions { display: flex; align-items: center; gap: 8px; }

/* ============================
   HOW IT WORKS
   ============================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-item h3 { font-size: 18px; margin-bottom: 10px; }
.step-item p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-icon { font-size: 32px; color: var(--white); }

/* ============================
   ABOUT TEASER
   ============================ */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-teaser-img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-teaser-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 40px;
}
.about-teaser-img-placeholder i { font-size: 80px; margin-bottom: 16px; opacity: 0.5; }
.about-teaser-img-placeholder p { font-size: 16px; }
.about-teaser-content .eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.about-teaser-content h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.about-teaser-content p { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,87,255,0.3); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,53,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; color: var(--white); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-footer {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-brand .logo-footer span { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  z-index: 9999;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: var(--white); }

/* ============================
   JOBS PAGE — SIDEBAR FILTERS
   ============================ */
.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 40px 0;
}
.filter-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.filter-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-group { margin-bottom: 6px; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 0;
  font-size: 14px;
  color: var(--dark);
}
.filter-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.filter-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  transition: border-color 0.2s;
}
.filter-input:focus { outline: none; border-color: var(--primary); background: var(--white); }
.salary-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  left: 3px;
  top: 3px;
  transition: 0.3s;
}
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.results-count { font-size: 15px; color: var(--muted); }
.results-count strong { color: var(--dark); }
.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--primary); }
.btn-apply-filter {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  margin-top: 8px;
}
.btn-apply-filter:hover { background: var(--primary-dark); }
.btn-clear-filter {
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 9px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  margin-top: 8px;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-clear-filter:hover { background: var(--bg); color: var(--dark); }

/* ============================
   PAGINATION
   ============================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-dots { display: flex; align-items: center; color: var(--muted); padding: 0 4px; }

/* ============================
   JOB DETAIL
   ============================ */
.job-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  padding: 40px 0;
}
.job-detail-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.job-detail-title { font-size: clamp(20px, 3vw, 28px); margin-bottom: 10px; }
.job-detail-company { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.job-detail-company .company-logo-lg {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  background: var(--bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.job-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.job-detail-meta-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.job-detail-meta-item i { color: var(--primary); }

.job-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
.job-tab {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.job-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.job-tab-content { display: none; }
.job-tab-content.active { display: block; }
.job-content-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.job-content-section h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.job-content-body { color: var(--dark); line-height: 1.8; white-space: pre-line; font-size: 15px; }

.job-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.job-sidebar-card h4 { font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.job-summary-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bg); }
.job-summary-item:last-child { border-bottom: none; }
.job-summary-icon { width: 36px; height: 36px; border-radius: 8px; background: #EFF6FF; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.job-summary-label { font-size: 12px; color: var(--muted); }
.job-summary-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.share-buttons { display: flex; flex-direction: column; gap: 8px; }

/* ============================
   APPLY OPTIONS
   ============================ */
.apply-options { margin-top: 24px; }
.apply-option {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.apply-option h4 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.apply-option p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.apply-inline-form { display: none; }
.apply-inline-form.open { display: block; animation: slideDown 0.3s ease; }

/* ============================
   REACTIONS
   ============================ */
.reactions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.reactions p { color: var(--muted); font-size: 14px; margin-right: 4px; }
.reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.reaction-btn:hover { border-color: var(--primary); color: var(--primary); }
.reaction-btn.active-like { background: #EFF6FF; border-color: var(--primary); color: var(--primary); }
.reaction-btn.active-dislike { background: #FEF2F2; border-color: var(--danger); color: var(--danger); }

/* ============================
   COMMENTS
   ============================ */
.comments-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.comments-section h3 { font-size: 17px; margin-bottom: 24px; }
.comment-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.comment-item:last-child { border-bottom: none; }
.comment-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.comment-author { font-weight: 600; font-size: 14px; }
.comment-date { color: var(--muted); font-size: 12px; }
.comment-body { color: var(--dark); font-size: 14px; line-height: 1.7; }
.comment-form { background: var(--bg); border-radius: 10px; padding: 20px; margin-top: 24px; }
.comment-form h4 { margin-bottom: 16px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label .req { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,255,0.08); }
.form-control.error { border-color: var(--danger); }
.form-error { color: var(--danger); font-size: 12px; margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============================
   APPLY PAGE
   ============================ */
.apply-page { padding: 50px 0; }
.apply-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.apply-card h2 { font-size: 24px; margin-bottom: 6px; }
.apply-card .subtitle { color: var(--muted); margin-bottom: 30px; }

/* ============================
   ABOUT PAGE
   ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.team-name { font-size: 18px; margin-bottom: 4px; }
.team-title { color: var(--primary); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.team-bio { color: var(--muted); font-size: 14px; line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.value-icon { font-size: 24px; color: var(--primary); margin-bottom: 14px; }
.value-card h4 { font-size: 16px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-text p { color: var(--muted); font-size: 14px; }
.map-placeholder {
  width: 100%;
  height: 250px;
  background: var(--bg);
  border-radius: 12px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-top: 24px;
  text-align: center;
}
.map-placeholder i { font-size: 32px; margin-bottom: 8px; display: block; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 0;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(24px, 4vw, 36px); color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================
   EMPTY STATE
   ============================ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: 0.4; display: block; }
.empty-state h3 { font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.empty-state p { font-size: 15px; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .about-teaser-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .search-bar { flex-direction: column; }
  .search-bar .divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .apply-card { padding: 24px 16px; }
}
