/* ============================================
   FreeJobUSA - Global Stylesheet
   Primary: #2563EB (Blue) | Accent: #10B981 (Green)
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
}
a { color: #2563EB; text-decoration: none; transition: color 0.2s; }
a:hover { color: #1d4ed8; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-blue { background: #2563EB; color: #fff; border-color: #2563EB; }
.btn-blue:hover { background: #1d4ed8; border-color: #1d4ed8; color: #fff; }
.btn-green { background: #10B981; color: #fff; border-color: #10B981; }
.btn-green:hover { background: #059669; border-color: #059669; color: #fff; }
.btn-outline { background: #fff; color: #2563EB; border-color: #2563EB; }
.btn-outline:hover { background: #2563EB; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  border-bottom: 2px solid #f0f0f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; }
.logo-highlight { color: #2563EB; }
.free-badge {
  background: #10B981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.main-nav { display: flex; gap: 24px; }
.main-nav a {
  color: #4a4a6a;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.main-nav a:hover { color: #2563EB; border-bottom-color: #2563EB; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-search { display: flex; gap: 4px; }
.header-search-input {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  width: 180px;
  transition: border-color 0.2s;
}
.header-search-input:focus { outline: none; border-color: #2563EB; }
.header-search-btn {
  padding: 8px 14px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}
.btn-post { white-space: nowrap; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a1a2e;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 50%, #1e40af 100%);
  color: #fff;
  padding: 60px 20px 70px;
  text-align: center;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.free-tag {
  display: inline-block;
  background: #10B981;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 30px; }
.hero-search { display: flex; gap: 8px; max-width: 600px; margin: 0 auto; }
.hero-search-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: all 0.2s;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.7); }
.hero-search-input:focus { outline: none; background: rgba(255,255,255,0.25); border-color: #fff; }
.hero-search-location { flex: 0 0 200px; }

/* ============ STATS BAR ============ */
.stats-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: #2563EB; }
.stat-free { color: #10B981; }
.stat-label { display: block; font-size: 0.85rem; color: #64748b; margin-top: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 60px 20px; }
.section-alt { background: #f8fafc; }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 8px; color: #1a1a2e; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 40px; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 40px; }
.page-header-section {
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.page-header-section h1 { font-size: 2.25rem; font-weight: 800; }
.page-header-section p { opacity: 0.9; margin-top: 8px; font-size: 1.05rem; }

/* ============ STATES GRID ============ */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}
.state-link {
  display: block;
  padding: 12px 16px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.state-link:hover { background: #2563EB; color: #fff; border-color: #2563EB; }
.state-hidden { display: none; }

/* ============ CATEGORIES GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.category-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s;
}
.category-card:hover { border-color: #2563EB; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,0.1); }
.category-card h3 { font-size: 1rem; font-weight: 600; color: #1e293b; }

/* ============ JOB CARDS ============ */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.job-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s;
}
.job-card:hover { border-color: #2563EB; box-shadow: 0 6px 20px rgba(37,99,235,0.08); transform: translateY(-2px); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
.job-card h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; line-height: 1.3; }
.job-company { font-size: 0.9rem; color: #2563EB; font-weight: 500; margin-bottom: 4px; }
.job-location { font-size: 0.85rem; color: #64748b; margin-bottom: 12px; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.job-salary { font-size: 0.95rem; font-weight: 700; color: #10B981; margin-bottom: 8px; }
.job-date { font-size: 0.8rem; color: #94a3b8; }

/* Free check badge */
.free-check-badge {
  display: inline-block;
  background: #10B981;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.free-badge-lg { font-size: 0.85rem; padding: 5px 12px; }

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag-type { background: #eff6ff; color: #2563EB; }
.tag-remote { background: #ecfdf5; color: #10B981; }
.tag-category { background: #fef3c7; color: #d97706; }
.tag-date { background: #f1f5f9; color: #64748b; }

/* ============ CTA EMPLOYERS ============ */
.cta-employers { background: #f0fdf4; }
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  border: 2px solid #10B981;
  box-shadow: 0 4px 20px rgba(16,185,129,0.1);
}
.cta-box h2 { color: #10B981; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.cta-box h3 { font-size: 1.75rem; font-weight: 800; color: #1a1a2e; margin-bottom: 16px; }
.cta-box p { color: #64748b; font-size: 1.05rem; margin-bottom: 24px; }

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s;
}
.blog-card:hover { border-color: #2563EB; box-shadow: 0 6px 20px rgba(37,99,235,0.08); transform: translateY(-2px); }
.blog-category {
  display: inline-block;
  background: #eff6ff;
  color: #2563EB;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 0.9rem; color: #64748b; margin-bottom: 12px; line-height: 1.5; }
.blog-date { font-size: 0.8rem; color: #94a3b8; }
.blog-grid-full { display: flex; flex-direction: column; gap: 20px; }
.blog-card-lg {
  display: block;
  padding: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s;
}
.blog-card-lg:hover { border-color: #2563EB; box-shadow: 0 6px 20px rgba(37,99,235,0.08); }
.blog-card-lg h2 { font-size: 1.35rem; margin-bottom: 12px; color: #1e293b; }
.blog-meta { font-size: 0.85rem; color: #94a3b8; margin-top: 16px; display: flex; align-items: center; gap: 8px; }

/* ============ TRUST SECTION ============ */
.trust-section { background: #f8fafc; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #10B981;
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.trust-item h4 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.trust-item p { font-size: 0.9rem; color: #64748b; }

/* ============ JOB LIST (Detail Pages) ============ */
.layout-with-sidebar { display: flex; gap: 30px; }
.filter-sidebar { width: 260px; flex-shrink: 0; }
.main-content { flex: 1; min-width: 0; }
.filter-form { display: flex; flex-direction: column; gap: 14px; }
.filter-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #4a4a6a; margin-bottom: 6px; }
.filter-group input, .filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.filter-group input:focus, .filter-group select:focus { outline: none; border-color: #2563EB; }

.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-list-item {
  display: block;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s;
}
.job-list-item:hover { border-color: #2563EB; box-shadow: 0 4px 12px rgba(37,99,235,0.06); }
.job-list-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.job-list-header h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; }
.job-description-preview { font-size: 0.9rem; color: #64748b; margin-bottom: 14px; line-height: 1.5; }
.job-list-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-list-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.job-list-right .job-salary { font-weight: 700; color: #10B981; font-size: 0.95rem; }
.job-list-right .job-date { font-size: 0.8rem; color: #94a3b8; }

/* No results */
.no-results { text-align: center; padding: 60px 20px; }
.no-results h2 { font-size: 1.5rem; color: #4a4a6a; margin-bottom: 10px; }
.no-results p { color: #64748b; margin-bottom: 20px; }

/* ============ JOB DETAIL ============ */
.breadcrumb { font-size: 0.85rem; color: #94a3b8; margin-bottom: 24px; }
.breadcrumb a { color: #64748b; }
.breadcrumb a:hover { color: #2563EB; }
.job-detail { display: flex; flex-direction: column; gap: 30px; }
.job-detail-main { }
.job-detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.job-company-large { font-size: 1.15rem; color: #2563EB; font-weight: 600; margin-bottom: 4px; }
.job-location-large { font-size: 1rem; color: #64748b; }
.job-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.job-detail-salary {
  background: #f0fdf4;
  border: 1px solid #10B981;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}
.job-detail-salary h3 { font-size: 0.9rem; color: #10B981; margin-bottom: 6px; font-weight: 600; }
.salary-amount { font-size: 1.5rem; font-weight: 800; color: #1e293b; }
.job-detail-description { margin-bottom: 24px; }
.job-detail-description h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.job-detail-description p { color: #4a4a6a; line-height: 1.7; }
.job-detail-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
}
.info-item h4 { font-size: 0.85rem; color: #64748b; margin-bottom: 4px; }
.info-item p { font-weight: 600; color: #1e293b; }
.job-apply { text-align: center; padding: 30px 0; border-top: 2px solid #e2e8f0; }
.apply-note { margin-top: 10px; font-size: 0.9rem; color: #10B981; font-weight: 500; }

/* Similar Jobs */
.similar-jobs { margin-top: 50px; }
.similar-jobs h2 { font-size: 1.5rem; margin-bottom: 24px; }

/* ============ COMPANIES ============ */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.company-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s;
}
.company-card:hover { border-color: #2563EB; box-shadow: 0 6px 20px rgba(37,99,235,0.08); transform: translateY(-2px); }
.company-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.company-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.company-card h3 { font-size: 1.05rem; font-weight: 700; color: #1e293b; }
.company-location { font-size: 0.85rem; color: #64748b; }
.company-industry { font-size: 0.85rem; color: #2563EB; font-weight: 500; margin-bottom: 10px; }
.company-card-stats { display: flex; gap: 16px; font-size: 0.85rem; color: #64748b; }

/* Company Detail */
.company-detail-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.company-avatar-lg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.company-detail-header h1 { font-size: 1.75rem; font-weight: 800; color: #1e293b; }
.company-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; font-size: 0.9rem; color: #64748b; }
.company-detail-body { display: flex; gap: 30px; }
.company-detail-main { flex: 1; min-width: 0; }
.company-detail-sidebar { width: 280px; flex-shrink: 0; }
.company-section { margin-bottom: 36px; }
.company-section h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.benefits-list { display: flex; flex-wrap: wrap; gap: 8px; }
.benefit-tag {
  display: inline-block;
  background: #f0fdf4;
  color: #10B981;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #d1fae5;
}

/* Sidebar card */
.sidebar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 80px;
}
.sidebar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: #1e293b; }
.summary-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.summary-list li { font-size: 0.9rem; color: #4a4a6a; }
.summary-list li strong { color: #1e293b; }

/* ============ BROWSE PAGES ============ */
.browse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.browse-section h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 20px; }
.states-list, .browse-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.browse-link, .browse-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.2s;
}
.browse-link:hover, .browse-cat-link:hover { background: #2563EB; color: #fff; }
.other-states, .other-categories { margin-bottom: 30px; }
.other-states h3, .other-categories h3 { font-size: 0.9rem; color: #64748b; margin-bottom: 10px; }
.state-mini-link, .cat-mini-link {
  display: inline-block;
  margin: 3px 6px 3px 0;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #4a4a6a;
  transition: all 0.2s;
}
.state-mini-link:hover, .cat-mini-link:hover { background: #2563EB; color: #fff; }

/* ============ BLOG POST ============ */
.blog-post { max-width: 800px; margin: 0 auto; }
.blog-post-header { margin-bottom: 30px; }
.blog-post-header h1 { font-size: 2rem; font-weight: 800; color: #1e293b; margin-bottom: 12px; line-height: 1.3; }
.blog-post-content { line-height: 1.8; color: #374151; margin-bottom: 30px; }
.blog-post-content h2 { font-size: 1.35rem; font-weight: 700; margin: 28px 0 12px; color: #1e293b; }
.blog-post-content p { margin-bottom: 16px; }
.free-resource-tag {
  display: inline-block;
  background: #f0fdf4;
  color: #10B981;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #d1fae5;
}
.related-posts { margin-top: 50px; }
.related-posts h2 { font-size: 1.5rem; margin-bottom: 24px; }

/* ============ POST-A-JOB FORM ============ */
.form-container { max-width: 700px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-header p { color: #64748b; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #4a4a6a; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-submit { text-align: center; margin-top: 30px; }
.form-note { margin-top: 12px; font-size: 0.9rem; color: #10B981; font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  background: #1a1a2e;
  color: #c8c8d8;
  padding: 50px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #c8c8d8; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #10B981; }
.footer-bottom {
  border-top: 1px solid #2a2a4a;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #8888a8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .browse-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 2px solid #e2e8f0; padding: 16px 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .main-nav.active { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: none; }
  .header-right { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 1.75rem; }
  .hero-search { flex-direction: column; }
  .hero-search-location { flex: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-with-sidebar { flex-direction: column; }
  .filter-sidebar { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .company-detail-body { flex-direction: column; }
  .company-detail-sidebar { width: 100%; }
  .job-detail-header { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .jobs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: 1fr; }
}
