@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================================
   SECTION 1: CSS VARIABLES & THEME SYSTEM - Government Job Portal
   ============================================================================ */

:root {
  /* Primary Color Palette - Blues */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  /* Accent Color Palette - Oranges */
  --accent-50: #fff7ed;
  --accent-100: #ffedd5;
  --accent-200: #fed7aa;
  --accent-300: #fdba74;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --accent-700: #c2410c;
  --accent-800: #9a3412;
  --accent-900: #7c2d12;

  /* Status Colors */
  --green-50: #f0fdf4;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-50: #fef2f2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --yellow-50: #fefce8;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;

  /* Semantic Colors - Light Mode */
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-hero: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  --bg-hover: #f1f5f9;

  /* Text Colors - Light Mode */
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-light: #f1f5f9;

  /* Border Colors */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-dark: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Skeleton Loading */
  --skeleton-base: #e2e8f0;
  --skeleton-shine: #f8fafc;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-toast: 600;

  /* Transition Timing */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.dark {
  --bg: #0b1120;
  --bg-secondary: #111827;
  --bg-tertiary: #1e293b;
  --bg-card: #1a2332;
  --bg-hero: linear-gradient(135deg, #0b1120 0%, #111827 50%, #1e293b 100%);
  --bg-hover: #1e293b;

  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light: #cbd5e1;

  --border: #1e293b;
  --border-light: #334155;
  --border-dark: #0f172a;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.6);

  --skeleton-base: #1e293b;
  --skeleton-shine: #334155;
}

/* ============================================================================
   SECTION 2: RESET & BASE STYLES
   ============================================================================ */

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
}

::selection {
  background-color: var(--primary-600);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}

:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

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

button {
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================================
   SECTION 3: TYPOGRAPHY
   ============================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-700);
}

.text-primary {
  color: var(--primary-600);
}

.text-accent {
  color: var(--accent-600);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-heading {
  font-family: var(--font-heading);
}

.font-bold {
  font-weight: 700;
}

/* ============================================================================
   SECTION 4: LAYOUT & GRID
   ============================================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.w-full {
  width: 100%;
}

.hidden {
  display: none;
}

.rounded {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.border {
  border: 1px solid var(--border);
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

/* ============================================================================
   SECTION 5: HEADER & NAVIGATION
   ============================================================================ */

header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

html.dark header {
  background: rgba(11, 17, 32, 0.85);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-heading);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  margin-left: 3rem;
}

.nav-link {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-600));
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--primary-600);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: var(--border);
  transform: scale(1.1) rotate(20deg);
}

/* ============================================================================
   SECTION 6: HERO SECTION WITH FLOATING BLOBS
   ============================================================================ */

.hero {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-hero);
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  animation: floatingBlob 8s ease-in-out infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  animation: floatingBlob 10s ease-in-out infinite 1s;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  animation: heroTextReveal 0.8s ease-out;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  animation: heroTextReveal 0.8s ease-out 0.2s both;
  line-height: 1.6;
}

.hero-search {
  animation: heroSearchSlide 0.8s ease-out 0.4s both;
  max-width: 600px;
  margin: 0 auto;
}

.search-box {
  display: flex;
  gap: 0.75rem;
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: var(--z-dropdown);
  box-shadow: var(--shadow-lg);
}

.suggestion-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background-color var(--transition);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.suggestion-item:hover {
  background: var(--bg-hover);
  color: var(--primary-600);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.search-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-600);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

/* ============================================================================
   SECTION 7: HERO PARTICLES (PHASE 2 ANIMATIONS)
   ============================================================================ */

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ============================================================================
   SECTION 8: BUTTON RIPPLE EFFECT (PHASE 2)
   ============================================================================ */

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================================
   SECTION 9: SVG WAVE DIVIDERS (PHASE 2)
   ============================================================================ */

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  color: var(--bg-secondary);
  margin: -1px 0;
}

.wave-divider-alt {
  color: var(--bg);
}

/* ============================================================================
   SECTION 10: STATS SECTION WITH CIRCULAR PROGRESS RINGS (PHASE 2)
   ============================================================================ */

.stats-section {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-400);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Circular progress rings for stats */
.progress-ring-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  stroke-linecap: round;
  fill: none;
}

.progress-ring-bg {
  fill: none;
  stroke: var(--bg-tertiary);
}

.progress-ring-value {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-600);
}

/* ============================================================================
   SECTION 11: SCROLL PROGRESS BAR (PHASE 2)
   ============================================================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================================
   SECTION 12: MAGNETIC BUTTON EFFECT (PHASE 2)
   ============================================================================ */

.btn-magnetic {
  transition: transform 0.2s ease;
}

/* ============================================================================
   SECTION 13: SKELETON EXIT & CONTENT ENTER TRANSITIONS (PHASE 2)
   ============================================================================ */

.skeleton-exit {
  animation: fadeOut 0.3s ease forwards;
}

.content-enter {
  animation: fadeIn 0.4s ease 0.2s both;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}

/* ============================================================================
   SECTION 14: 3D CARD TILT (PHASE 2)
   ============================================================================ */

.card-3d {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================================================
   SECTION 15: JOB CARDS, BADGES, & BUTTONS
   ============================================================================ */

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-600));
  opacity: 0;
  transition: opacity var(--transition);
}

.job-card:hover::before {
  opacity: 1;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

.job-card-body {
  padding: 0 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-heading);
}

.job-org {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.job-card-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-new {
  background: var(--green-500);
  color: white;
  animation: badgePulse 2s ease-in-out infinite;
}

.badge-category {
  background: var(--primary-50);
  color: var(--primary-700);
}

.badge-hot {
  background: var(--red-500);
  color: white;
}

/* ============================================================================
   SECTION 16: BUTTON STYLES
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary-600);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent-600);
  color: white;
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-accent:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-hover);
  border-color: var(--primary-400);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* ============================================================================
   SECTION 17: CATEGORIES GRID
   ============================================================================ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.categories-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-500);
}

.category-card-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card-full:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition);
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(10deg);
}

.category-icon-lg {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.category-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.category-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================================
   SECTION 18: FOOTER
   ============================================================================ */

.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

html.dark .footer {
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-col a {
  color: #94a3b8;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #64748b;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-4px);
}

/* ============================================================================
   SECTION 19: ERROR PAGE & SPINNER
   ============================================================================ */

.error-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary-200);
  margin-bottom: 1rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.error-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--skeleton-base);
  border-top-color: var(--primary-600);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ============================================================================
   SECTION 20: ANIMATION KEYFRAMES
   ============================================================================ */

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

@keyframes heroSearchSlide {
  from {
    opacity: 0;
    transform: translateY(30px) scaleY(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes floatingBlob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

@keyframes blink {
  0%, 49%, 100% {
    opacity: 1;
  }
  50%, 99% {
    opacity: 0;
  }
}

/* ============================================================================
   SECTION 21: SCROLL REVEAL ANIMATIONS
   ============================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > :nth-child(2) {
  transition-delay: 0.1s;
}

.stagger.visible > :nth-child(3) {
  transition-delay: 0.2s;
}

.stagger.visible > :nth-child(4) {
  transition-delay: 0.3s;
}

.stagger.visible > :nth-child(5) {
  transition-delay: 0.4s;
}

/* ============================================================================
   SECTION 22: SKELETON LOADING
   ============================================================================ */

.skeleton {
  background: linear-gradient(90deg, var(--skeleton-base) 0%, var(--skeleton-shine) 50%, var(--skeleton-base) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: var(--radius);
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card {
  height: 200px;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

/* ============================================================================
   SECTION 23: GRADIENT HOVER & GLOW EFFECTS
   ============================================================================ */

.gradient-hover {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  background-size: 200% 200%;
  transition: background-position var(--transition);
}

.gradient-hover:hover {
  background-position: right center;
}

.glow-effect {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
  transition: box-shadow var(--transition);
}

.glow-effect:hover {
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
}

/* ============================================================================
   SECTION 24: TOAST NOTIFICATIONS
   ============================================================================ */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  animation: toastSlideIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  color: var(--text);
}

.toast-success {
  border-left: 4px solid var(--green-500);
}

.toast-error {
  border-left: 4px solid var(--red-500);
}

.toast-warning {
  border-left: 4px solid var(--yellow-500);
}

.toast-info {
  border-left: 4px solid var(--primary-500);
}

/* ============================================================================
   SECTION 25: NOTIFICATION BELL & DROPDOWN
   ============================================================================ */

.notification-bell {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  color: var(--text);
}

.notification-bell:hover {
  background: var(--border);
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-500);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  animation: badgePulse 1.5s ease-in-out infinite;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 400px;
  max-height: 400px;
  overflow-y: auto;
  z-index: var(--z-dropdown);
  box-shadow: var(--shadow-lg);
}

.notification-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background-color var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.notification-item:hover {
  background: var(--bg-hover);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-600);
  font-size: 1.1rem;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.notification-message {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

.notification-time {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ============================================================================
   SECTION 26: COMPARE MODAL & BAR
   ============================================================================ */

.compare-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.compare-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition);
}

.compare-close:hover {
  color: var(--text);
}

.compare-row {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  gap: 1rem;
  align-items: stretch;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-cell {
  flex: 1;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.compare-cell.compare-label {
  flex: 0 0 150px;
  background: var(--bg-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: var(--z-sticky);
}

.compare-bar-info {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.compare-bar-actions {
  display: flex;
  gap: 1rem;
}

/* ============================================================================
   SECTION 27: ADMIN DASHBOARD
   ============================================================================ */

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.admin-stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.admin-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.admin-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.admin-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.admin-chart-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.admin-table th {
  background: var(--bg-secondary);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-table td {
  padding: 1rem;
  border-top: 1px solid var(--border-light);
  color: var(--text);
}

.admin-table tr:hover {
  background: var(--bg-hover);
}

/* ============================================================================
   SECTION 28: AUTH PAGES
   ============================================================================ */

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 450px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
  text-align: center;
  font-family: var(--font-heading);
}

.auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-divider {
  position: relative;
  margin: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  background: var(--bg-card);
  padding: 0 0.75rem;
  position: relative;
}

.social-login {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}

.social-login-btn:hover {
  background: var(--bg-hover);
  border-color: var(--primary-300);
}

/* ============================================================================
   SECTION 29: FORM INPUTS & FIELDS
   ============================================================================ */

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  resize: vertical;
  min-height: 120px;
  transition: all var(--transition);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ============================================================================
   SECTION 30: INDIA MAP
   ============================================================================ */

.india-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.india-map-tile {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  padding: 0.25rem;
}

.india-map-tile:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.india-map-tile.selected {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

/* ============================================================================
   SECTION 31: JOBS PAGE & FILTERS
   ============================================================================ */

.jobs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 80px;
}

.filter-toggle {
  display: none;
}

.filter-close {
  display: none;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  cursor: pointer;
}

.filter-option label {
  flex: 1;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.filter-option:hover label {
  color: var(--primary-600);
}

.filter-range {
  margin-top: 1rem;
}

.filter-range input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
  -webkit-appearance: none;
}

.filter-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-range input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--primary-700);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.filter-range input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-600);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.filter-range input[type="range"]::-moz-range-thumb:hover {
  background: var(--primary-700);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.filter-range-value {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============================================================================
   SECTION 32: JOB DETAIL PAGE
   ============================================================================ */

.job-detail {
  max-width: 900px;
  margin: 0 auto;
}

.job-detail-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.job-detail-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: var(--font-heading);
}

.job-detail-org {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.job-detail-meta-item {
  display: flex;
  flex-direction: column;
}

.job-detail-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-detail-meta-value {
  font-weight: 700;
  color: var(--text);
}

.job-detail-actions {
  display: flex;
  gap: 1rem;
}

.job-detail-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.job-detail-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
  font-family: var(--font-heading);
}

.job-detail-section-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.job-detail-section-content ul,
.job-detail-section-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.job-detail-section-content li {
  margin-bottom: 0.75rem;
}

/* ============================================================================
   SECTION 33: CATEGORY & STATE FULL PAGES
   ============================================================================ */

.category-full {
  margin-bottom: 2rem;
}

.category-full-header {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
  text-align: center;
}

.category-full-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.category-full-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.category-full-count {
  color: var(--text-muted);
  font-size: 1rem;
}

.state-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.state-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-400);
}

.state-name {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.state-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================================
   SECTION 34: ABOUT PAGE
   ============================================================================ */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.about-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.about-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================================
   SECTION 35: PAGINATION
   ============================================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-weight: 600;
}

.pagination-item:hover {
  border-color: var(--primary-400);
  background: var(--bg-hover);
}

.pagination-item.active {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================================
   SECTION 36: PHASE 3 PAGES - CALENDAR
   ============================================================================ */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-header {
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  border: 1px solid transparent;
  background: var(--bg-card);
}

.calendar-day:hover {
  background: var(--bg-hover);
  border-color: var(--primary-300);
}

.calendar-day.today {
  border-color: var(--primary-500);
  font-weight: 700;
  color: var(--primary-600);
}

.calendar-day.has-events {
  background: var(--primary-50);
}

html.dark .calendar-day.has-events {
  background: rgba(59, 130, 246, 0.1);
}

.calendar-day.has-events::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-500);
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calendar-month-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.calendar-events-list {
  margin-top: 2rem;
}

.calendar-event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}

.calendar-event-item:hover {
  transform: translateX(4px);
  border-color: var(--primary-300);
}

.event-date-badge {
  min-width: 50px;
  text-align: center;
  padding: 0.5rem;
  background: var(--primary-50);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--primary-600);
  font-size: 0.85rem;
}

html.dark .event-date-badge {
  background: rgba(59, 130, 246, 0.15);
}

/* ============================================================================
   SECTION 37: SALARY INSIGHTS PAGE
   ============================================================================ */

.salary-chart {
  margin-bottom: 2rem;
}

.salary-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.salary-label {
  min-width: 140px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.salary-bar-track {
  flex: 1;
  height: 28px;
  background: var(--bg-tertiary);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.salary-bar-fill {
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.salary-bar-fill.accent {
  background: linear-gradient(90deg, var(--accent-400), var(--accent-600));
}

.salary-bar-fill.green {
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
}

.salary-tab-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.salary-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.salary-tab.active,
.salary-tab:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

html.dark .salary-tab {
  background: var(--bg-secondary);
}

html.dark .salary-tab.active,
html.dark .salary-tab:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
}

/* ============================================================================
   SECTION 38: PROFILE PAGE
   ============================================================================ */

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.profile-info h2 {
  margin-bottom: 0.25rem;
}

.profile-info p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.profile-stat {
  text-align: center;
}

.profile-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-600);
  font-family: var(--font-heading);
}

.profile-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.profile-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.profile-tab {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.profile-tab.active {
  color: var(--primary-600);
  border-bottom-color: var(--primary-600);
}

.profile-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.application-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.application-item:last-child {
  border-bottom: none;
}

.app-status {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.app-status-applied {
  background: var(--primary-50);
  color: var(--primary-700);
}

.app-status-shortlisted {
  background: var(--yellow-50);
  color: var(--yellow-600);
}

.app-status-exam_scheduled {
  background: var(--accent-50);
  color: var(--accent-700);
}

.app-status-selected {
  background: var(--green-50);
  color: var(--green-600);
}

.app-status-rejected {
  background: var(--red-50);
  color: var(--red-600);
}

.app-status-result_pending {
  background: var(--primary-50);
  color: var(--primary-600);
}

html.dark .app-status-applied {
  background: rgba(59, 130, 246, 0.15);
}

html.dark .app-status-selected {
  background: rgba(34, 197, 94, 0.15);
}

html.dark .app-status-rejected {
  background: rgba(239, 68, 68, 0.15);
}

/* ============================================================================
   SECTION 39: SHARE BUTTONS
   ============================================================================ */

.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.1rem;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.share-btn.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.share-btn.telegram:hover {
  background: #0088cc;
  color: white;
  border-color: #0088cc;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.share-btn.linkedin:hover {
  background: #0077B5;
  color: white;
  border-color: #0077B5;
}

.share-btn.copy:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

/* ============================================================================
   SECTION 40: JOB EXPIRY COUNTDOWN
   ============================================================================ */

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.countdown-green {
  background: var(--green-50);
  color: var(--green-600);
}

.countdown-orange {
  background: var(--accent-50);
  color: var(--accent-700);
}

.countdown-red {
  background: var(--red-50);
  color: var(--red-600);
  animation: badgePulse 1.5s ease-in-out infinite;
}

.countdown-gray {
  background: var(--bg-tertiary);
  color: var(--text-muted);
}

html.dark .countdown-green {
  background: rgba(34, 197, 94, 0.15);
}

html.dark .countdown-orange {
  background: rgba(249, 115, 22, 0.15);
}

html.dark .countdown-red {
  background: rgba(239, 68, 68, 0.15);
}

/* ============================================================================
   SECTION 41: HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.how-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all var(--transition);
}

.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.how-step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.how-step-connector {
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-400));
}

.how-step:last-child .how-step-connector {
  display: none;
}

/* ============================================================================
   SECTION 42: RELATED JOBS HORIZONTAL SCROLL
   ============================================================================ */

.related-jobs-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.related-jobs-scroll::-webkit-scrollbar {
  height: 6px;
}

.related-jobs-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: 3px;
}

.related-jobs-scroll > .job-card {
  min-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ============================================================================
   SECTION 43: KEYBOARD SHORTCUTS MODAL
   ============================================================================ */

.shortcuts-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 500px;
  width: 95%;
  box-shadow: var(--shadow-2xl);
}

.shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.shortcut-keys {
  display: flex;
  gap: 0.25rem;
}

.shortcut-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 0.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--text);
}

html.dark .shortcuts-modal {
  background: var(--bg-secondary);
}

html.dark .shortcut-key {
  background: var(--bg-tertiary);
  color: var(--text);
}

/* ============================================================================
   SECTION 44: INFINITE SCROLL SENTINEL
   ============================================================================ */

.infinite-sentinel {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-mode-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.toggle-btn {
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.toggle-btn.active {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

/* ============================================================================
   SECTION 45: PRINT STYLES
   ============================================================================ */

@media print {
  header,
  footer,
  .compare-bar,
  .toast-container,
  .scroll-progress,
  .share-buttons,
  .related-jobs-scroll,
  nav {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .job-detail {
    max-width: 100%;
  }

  .job-detail-header,
  .job-detail-section {
    border: 1px solid #ddd;
    box-shadow: none;
  }

  .btn {
    display: none;
  }

  .btn.apply-btn {
    display: inline-flex;
  }
}

/* ============================================================================
   SECTION 46: UPCOMING EXAMS SECTION
   ============================================================================ */

.upcoming-exams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.exam-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.exam-card:hover {
  transform: translateX(4px);
  border-color: var(--primary-300);
}

.exam-date-box {
  min-width: 60px;
  text-align: center;
  padding: 0.5rem;
  background: var(--primary-50);
  border-radius: var(--radius);
}

html.dark .exam-date-box {
  background: rgba(59, 130, 246, 0.15);
}

.exam-date-box .month {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-600);
  text-transform: uppercase;
}

.exam-date-box .day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-700);
  font-family: var(--font-heading);
}

/* ============================================================================
   SECTION 47: SUCCESS STATS SECTION (CIRCULAR RINGS)
   ============================================================================ */

.success-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.success-stat-item {
  text-align: center;
}

.success-stat-label {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================================
   SECTION 48: RESPONSIVE DESIGN - 1024PX
   ============================================================================ */

@media (max-width: 1024px) {
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-charts {
    grid-template-columns: 1fr;
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filter-sidebar.mobile-visible {
    display: block;
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    border-radius: 0;
    overflow-y: auto;
  }

  .filter-close {
    display: flex;
  }

  .categories-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-cell.compare-label {
    flex: 0 0 100px;
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .how-step-connector {
    display: none;
  }

  .upcoming-exams {
    grid-template-columns: 1fr;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }

  .salary-label {
    min-width: 100px;
  }

  .success-stats {
    gap: 2rem;
  }
}

/* ============================================================================
   SECTION 49: RESPONSIVE DESIGN - 768PX
   ============================================================================ */

@media (max-width: 768px) {
  .admin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare-modal {
    padding: 1.5rem;
  }

  .compare-row {
    flex-direction: column;
  }

  .compare-cell.compare-label {
    flex: none;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    font-weight: 700;
  }

  .notification-dropdown {
    width: 300px;
    right: -60px;
  }

  .job-detail-header {
    padding: 1.5rem;
  }

  .job-detail-actions {
    flex-direction: column;
  }

  .auth-card {
    padding: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .india-map {
    max-width: 350px;
  }

  .categories-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-header {
    padding: 1.5rem;
  }

  .profile-stats {
    gap: 1rem;
  }

  .calendar-day {
    font-size: 0.8rem;
  }

  .salary-tab-bar {
    gap: 0.25rem;
  }

  .salary-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ============================================================================
   SECTION 50: RESPONSIVE DESIGN - 480PX
   ============================================================================ */

@media (max-width: 480px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .toast {
    min-width: unset;
  }

  .compare-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .categories-grid-full {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .notification-dropdown {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 70px;
    width: auto;
  }

  .india-map {
    max-width: 280px;
    gap: 3px;
  }

  .india-map-tile {
    font-size: 0.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .search-box {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .upcoming-exams {
    grid-template-columns: 1fr;
  }

  .profile-header {
    padding: 1rem;
    gap: 1rem;
  }

  .profile-avatar {
    width: 60px;
    height: 60px;
  }

  .profile-tabs {
    overflow-x: auto;
  }

  .calendar-grid {
    gap: 1px;
  }

  .salary-bar-row {
    gap: 0.5rem;
  }

  .salary-label {
    min-width: 80px;
    font-size: 0.75rem;
  }

  .share-buttons {
    gap: 0.5rem;
  }

  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .success-stats {
    gap: 1.5rem;
  }
}

/* ============================================================================
   SECTION 51: RESPONSIVE DESIGN - 375PX (IPHONE SE)
   ============================================================================ */

@media (max-width: 375px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .category-card,
  .category-card-full {
    padding: 1.25rem;
  }

  .category-icon,
  .category-icon-lg {
    font-size: 2rem;
  }

  .auth-card {
    padding: 1.5rem;
  }

  .compare-modal {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .job-detail-header {
    padding: 1.25rem;
  }

  .admin-stat-value {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 0.75rem;
  }

  .container {
    padding: 0 1rem;
  }

  .profile-stat {
    min-width: 60px;
  }

  .shortcut-key {
    min-width: 28px;
    height: 24px;
    font-size: 0.7rem;
  }

  .exam-card {
    gap: 0.75rem;
    padding: 1rem;
  }

  .exam-date-box {
    min-width: 50px;
  }

  .exam-date-box .day {
    font-size: 1.25rem;
  }
}

/* ============================================================================
   SECTION 52: DARK MODE ADDITIONAL COVERAGE
   ============================================================================ */

html.dark .badge-category {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-300);
}

html.dark .form-input {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text);
}

html.dark .form-input:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

html.dark .search-box {
  background: var(--bg-secondary);
}

html.dark .search-input {
  color: var(--text);
}

html.dark .search-suggestions {
  background: var(--bg-card);
  border-color: var(--border);
}

html.dark .toast {
  background: var(--bg-card);
  border-color: var(--border);
}

html.dark .compare-modal {
  background: var(--bg-card);
}

html.dark .admin-table th {
  background: var(--bg-tertiary);
}

html.dark .admin-table tr:hover {
  background: var(--bg-secondary);
}

html.dark .filter-sidebar {
  background: var(--bg-card);
}

html.dark .auth-card {
  background: var(--bg-card);
}

html.dark .stat-card {
  background: var(--bg-card);
}

html.dark .category-card,
html.dark .category-card-full {
  background: var(--bg-card);
}

html.dark .about-card {
  background: var(--bg-card);
}

html.dark .state-card {
  background: var(--bg-card);
}

html.dark .notification-dropdown {
  background: var(--bg-card);
}

html.dark .job-detail-header,
html.dark .job-detail-section {
  background: var(--bg-card);
}

html.dark .admin-stat-card,
html.dark .admin-chart-card {
  background: var(--bg-card);
}

html.dark .profile-section {
  background: var(--bg-card);
}

html.dark .profile-tabs {
  border-bottom-color: var(--border);
}

html.dark .how-step {
  background: var(--bg-card);
}

html.dark .exam-card {
  background: var(--bg-card);
}

html.dark .shortcuts-modal {
  background: var(--bg-card);
}

html.dark .calendar-day {
  background: var(--bg-card);
}

html.dark .calendar-event-item {
  background: var(--bg-card);
}

html.dark .salary-tab {
  background: var(--bg-card);
  border-color: var(--border);
}

html.dark .share-btn {
  background: var(--bg-card);
  border-color: var(--border);
}

/* ============================================================================
   SECTION 53: ACCESSIBILITY
   ============================================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary-600);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================================
   SECTION 54: REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Page transition */
.page-transition {
  animation: fadeIn 0.3s ease;
}

/* ============================
   SESSION 4 — NEW COMPONENT STYLES
   ============================ */

/* ===== VOICE SEARCH BUTTON ===== */
.voice-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}
.voice-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.15); }
.voice-btn.voice-active { animation: voicePulse 1s ease-in-out infinite; }
@keyframes voicePulse { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,0.4)} 50%{box-shadow:0 0 0 8px rgba(239,68,68,0)} }

/* ===== HERO GREETING ===== */
.hero-greeting {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  animation: fadeIn 0.6s ease;
  letter-spacing: 0.02em;
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.lang-toggle:hover { background: var(--accent-500); color: white; border-color: var(--accent-500); }

/* ===== MATCH BADGE ===== */
.match-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.match-high { background: #dcfce7; color: #16a34a; }
.match-mid  { background: #fef9c3; color: #ca8a04; }
.dark .match-high { background: rgba(34,197,94,0.2); color: #4ade80; }
.dark .match-mid  { background: rgba(234,179,8,0.2); color: #facc15; }

/* ===== GEO BANNER ===== */
.geo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  color: #1e40af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideDown 0.3s ease;
}
.dark .geo-banner { background: #1e3a5f; border-color: #2563eb; color: #93c5fd; }
.geo-banner-link { color: #2563eb; font-weight: 600; text-decoration: none; }
.geo-banner-link:hover { text-decoration: underline; }
.geo-close { background: none; border: none; cursor: pointer; font-size: 1rem; margin-left: auto; color: inherit; opacity: 0.7; }
@keyframes slideDown { from{transform:translateY(-100%)} to{transform:translateY(0)} }

/* ===== PUSH BANNER ===== */
.push-banner {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--surface-100);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 90vw;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from{transform:translateX(-50%) translateY(100%)} to{transform:translateX(-50%) translateY(0)} }

/* ===== OFFLINE MODE ===== */
.offline-mode::before {
  content: '⚠️ You are offline. Some features may not work.';
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #f59e0b;
  color: #1c1917;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10000;
}

/* ===== CHATBOT ===== */
.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-500);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  z-index: 8000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chatbot-fab:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,99,235,0.5); }

.chatbot-window {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 340px;
  max-height: 480px;
  background: var(--surface-100);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 7999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.chatbot-window.visible { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.chatbot-header {
  background: var(--accent-500);
  color: white;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 200px;
  max-height: 300px;
}

.chat-msg {
  max-width: 85%;
  padding: 0.6rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.chat-user { background: var(--accent-500); color: white; align-self: flex-end; border-bottom-right-radius: 0.25rem; }
.chat-bot  { background: var(--surface-200); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 0.25rem; }
.chat-link { display: block; color: var(--accent-500); text-decoration: none; font-size: 0.85rem; padding: 0.1rem 0; }
.chat-link:hover { text-decoration: underline; }

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
}
.chatbot-input input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface-200);
  color: var(--text-primary);
  font-size: 0.875rem;
}
.chatbot-input input:focus { outline: none; border-color: var(--accent-500); }

/* ===== DID YOU MEAN ===== */
.did-you-mean {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}
.did-you-mean p { margin: 0.5rem 0; font-size: 1rem; }
.did-you-mean-link { color: var(--accent-500); font-weight: 600; text-decoration: none; }
.did-you-mean-link:hover { text-decoration: underline; }

/* ===== WEB VITALS ===== */
.vitals-card {
  background: var(--surface-200);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.vitals-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.vitals-badge { display: inline-block; padding: 0.3rem 0.75rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; }
.vitals-good { background: #dcfce7; color: #15803d; }
.vitals-ok   { background: #fef9c3; color: #a16207; }
.vitals-bad  { background: #fee2e2; color: #dc2626; }
.vitals-na   { background: #f3f4f6; color: #6b7280; }
.vitals-desc { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.4rem; }
.dark .vitals-good { background: rgba(34,197,94,0.15); color: #4ade80; }
.dark .vitals-ok   { background: rgba(234,179,8,0.15); color: #fbbf24; }
.dark .vitals-bad  { background: rgba(239,68,68,0.15); color: #f87171; }
.dark .vitals-na   { background: rgba(107,114,128,0.15); color: #9ca3af; }

/* ===== STRUCTURED JOB POST ARTICLE ===== */
.job-overview p { line-height: 1.8; margin-bottom: 1rem; }
.job-details-table { margin: 1.5rem 0; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th { text-align: left; padding: 10px 16px; background: var(--surface-200, #f3f4f6); font-weight: 600; width: 35%; border: 1px solid var(--border, #e5e7eb); }
.info-table td { padding: 10px 16px; border: 1px solid var(--border, #e5e7eb); }
html.dark .info-table th { background: var(--surface-300, #374151); }
html.dark .info-table td { border-color: var(--border, #4b5563); }
.how-to-apply ol { padding-left: 1.5rem; line-height: 2; }
.how-to-apply li { margin-bottom: 0.3rem; }
.important-links ul { list-style: none; padding: 0; }
.important-links li { margin-bottom: 0.5rem; }
.important-links a { color: var(--primary-600, #f97316); font-weight: 500; text-decoration: none; }
.important-links a:hover { text-decoration: underline; }
.job-overview h2, .job-details-table h2, .how-to-apply h2, .important-links h2 {
    font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-100, #fed7aa);
}
html.dark .job-overview h2, html.dark .job-details-table h2, html.dark .how-to-apply h2, html.dark .important-links h2 {
    border-bottom-color: var(--border, #4b5563);
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--surface-100);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 140px;
  overflow: hidden;
}
.lang-option {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: background 0.15s;
}
.lang-option:hover { background: var(--surface-200); }
.lang-option.active { background: var(--primary-50); color: var(--primary-600); font-weight: 600; }

/* ===== REPORT ERROR FORM ===== */
.report-error-section textarea {
  width: 100%;
  resize: vertical;
  min-height: 60px;
}

/* ===== ADMIN EDIT PANEL ===== */
#adminEditPanel .form-group { margin-bottom: 0; }
#adminEditPanel .form-label { font-size: 0.8rem; margin-bottom: 0.25rem; }
#adminEditPanel .form-input { font-size: 0.875rem; padding: 0.4rem 0.6rem; }

/* ===== RESUME UPLOAD ===== */
#tabResume .badge { font-size: 0.85rem; }

/* ===== MOBILE CHATBOT ===== */
@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; }
  .chatbot-fab { bottom: 1.5rem; right: 1.5rem; }
  .push-banner { bottom: 4.5rem; }
  .lang-dropdown { right: -1rem; }
  #adminEditPanel form { grid-template-columns: 1fr; }
}

/* ===== SESSION 12A: STRUCTURAL OVERHAUL CSS ===== */

/* Breadcrumb */
.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary-600); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.5rem; color: var(--text-muted); }
.breadcrumb-current { color: var(--text); }

/* Job Detail Header */
.job-detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.job-header-left { display: flex; gap: 1rem; align-items: flex-start; flex: 1; }
.org-avatar-lg { width: 64px; height: 64px; border-radius: var(--radius-xl); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.job-detail-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; line-height: 1.3; margin: 0 0 0.25rem; }
.job-detail-org { color: var(--text-secondary); font-size: 1.0625rem; margin: 0 0 0.5rem; }
.job-detail-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.job-detail-posted { font-size: 0.8125rem; color: var(--text-muted); }
.job-header-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Layout: Main + Sidebar */
.job-detail-layout { display: flex; gap: 2rem; align-items: flex-start; }
.job-detail-main { flex: 1; min-width: 0; }
.job-detail-sidebar { width: 340px; flex-shrink: 0; position: sticky; top: 80px; }

/* Key Highlights Card */
.job-highlights-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.5rem; }
.job-highlights-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; margin: 0 0 1rem; }
.highlights-table { width: 100%; }
.highlights-table tr { border-bottom: 1px solid var(--border-light); }
.highlights-table tr:last-child { border-bottom: none; }
.hl-label { padding: 0.625rem 0; font-size: 0.8125rem; color: var(--text-muted); width: 40%; vertical-align: top; }
.hl-value { padding: 0.625rem 0; font-size: 0.875rem; font-weight: 500; color: var(--text); }
.salary-highlight { color: var(--success); font-weight: 600; }

/* Job Sections */
.job-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-light); }
.job-section:last-child { border-bottom: none; }
.job-section h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin: 0 0 1rem; }

/* Timeline */
.dates-timeline { position: relative; padding-left: 2rem; }
.dates-timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 1.25rem; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; position: absolute; left: -1.5rem; top: 0.25rem; border: 2px solid var(--bg); }
.timeline-dot.active { background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.timeline-dot.upcoming { background: var(--primary-500); box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }
.timeline-dot.expired { background: var(--danger); }
.timeline-label { display: block; font-weight: 500; font-size: 0.875rem; }
.timeline-date { font-size: 0.8125rem; color: var(--text-muted); }

/* Apply Steps */
.apply-steps { padding-left: 1.25rem; }
.apply-steps li { margin-bottom: 0.75rem; line-height: 1.7; font-size: 0.9375rem; }
.apply-steps a { color: var(--primary-600); }

/* Important Links */
.important-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Share Buttons Enhancement */
.share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Disclaimer */
.job-disclaimer { background: #FEF3C7; border: 1px solid #F59E0B; border-radius: var(--radius-lg); padding: 1rem 1.25rem; margin-top: 2rem; font-size: 0.8125rem; line-height: 1.6; }
html.dark .job-disclaimer { background: #422006; border-color: #92400E; color: #FDE68A; }

/* Related Jobs Horizontal Scroll */
.related-jobs-scroll { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
.related-jobs-scroll > * { scroll-snap-align: start; min-width: 280px; flex-shrink: 0; }

/* Jobs Page Header */
.jobs-page-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.jobs-page-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin: 0; }
.jobs-page-count { font-size: 0.875rem; color: var(--text-muted); margin: 0.25rem 0 0; }
.jobs-page-controls { display: flex; gap: 0.75rem; align-items: center; }
.sort-select { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); color: var(--text); font-size: 0.875rem; }
.jobs-layout { display: flex; gap: 2rem; }
.jobs-main { flex: 1; min-width: 0; }

/* Filter Sidebar Enhancements */
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.filter-header h3 { margin: 0; font-size: 1.125rem; font-weight: 600; }
.filter-close { display: none; background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text); padding: 0.25rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-title { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.filter-input, .filter-select { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); color: var(--text); font-size: 0.875rem; }
.filter-checkbox { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; font-size: 0.875rem; cursor: pointer; }
.filter-toggle-btn { display: none; }
.btn-full { width: 100%; }

/* Filter overlay */
.filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
.filter-overlay.open { display: block; }

/* Pagination Enhancement */
.pagination { display: flex; justify-content: center; gap: 0.25rem; margin-top: 2rem; flex-wrap: wrap; }
.pagination-item { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); color: var(--text); font-size: 0.875rem; cursor: pointer; transition: all 0.2s; }
.pagination-item:hover { border-color: var(--primary-500); color: var(--primary-600); }
.pagination-item.active { background: var(--primary-600); color: white; border-color: var(--primary-600); }
.pagination-dots { display: inline-flex; align-items: center; padding: 0 0.25rem; color: var(--text-muted); }

/* Page Content (legal pages) */
.page-content { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.page-content h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.page-content h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--text); }
.page-content p, .page-content li { line-height: 1.8; color: var(--text-secondary); font-size: 0.9375rem; }
.page-content ul, .page-content ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.page-content a { color: var(--primary-600); }

/* Contact Page */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-form-card, .contact-info-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.contact-form-card h2, .contact-info-card h2 { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); color: var(--text); font-size: 0.875rem; font-family: inherit; }
.form-group textarea { resize: vertical; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-icon { font-size: 1.5rem; }
.faq-detail { margin-bottom: 0.5rem; padding: 0.75rem 1rem; background: var(--bg-secondary); border-radius: var(--radius-md); }
.faq-detail summary { font-weight: 500; cursor: pointer; }
.faq-detail p { margin: 0.5rem 0 0; font-size: 0.875rem; }

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
  .job-detail-layout { flex-direction: column; }
  .job-detail-sidebar { width: 100%; position: static; }
  .job-detail-header { flex-direction: column; }
  .job-header-actions { width: 100%; }
  .job-header-actions .btn { flex: 1; text-align: center; }
  .job-detail-title { font-size: 1.375rem; }
  .org-avatar-lg { width: 48px; height: 48px; font-size: 1.125rem; }
  .filter-toggle-btn { display: flex; }
  .filter-sidebar { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 85%; max-width: 340px; z-index: 201; background: var(--bg); overflow-y: auto; padding: 1.5rem; box-shadow: var(--shadow-xl); }
  .filter-sidebar.open { display: block; }
  .filter-close { display: block; }
  .jobs-layout { flex-direction: column; }
  .jobs-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-content h1 { font-size: 1.5rem; }
}

/* ===== SESSION 12B: BRAND + TRUST + POLISH ===== */

/* Logo */
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { animation: logoEntrance 0.8s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes logoEntrance { 0% { transform: scale(0) rotate(-180deg); opacity: 0; } 60% { transform: scale(1.15) rotate(10deg); opacity: 1; } 100% { transform: scale(1) rotate(0); } }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem; color: var(--text); letter-spacing: -0.02em; }
.logo-suffix { font-family: var(--font-heading); font-weight: 500; font-size: 0.6875rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* Trust Badges Bar */
.trust-bar { background: var(--bg-secondary); border-bottom: 1px solid var(--border-light); padding: 0.75rem 0; }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); white-space: nowrap; }
.trust-icon { font-size: 1rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #F59E0B; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9375rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 0.5rem; overflow: hidden; cursor: pointer; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--primary-300); }
.faq-item.open { border-color: var(--primary-500); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; font-weight: 600; font-size: 0.9375rem; gap: 1rem; }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary-600); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1.25rem; }
.faq-answer p { margin: 0; font-size: 0.875rem; line-height: 1.8; color: var(--text-secondary); }
html.dark .faq-item:hover { border-color: var(--primary-700); }
html.dark .faq-item.open { border-color: var(--primary-600); }

/* Newsletter */
.newsletter-section { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: white; padding: 4rem 1.5rem; text-align: center; }
.newsletter-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin: 0 0 0.75rem; color: white; }
.newsletter-desc { font-size: 1.0625rem; opacity: 0.9; margin: 0 0 2rem; line-height: 1.6; color: rgba(255,255,255,0.9); }
.newsletter-form { max-width: 480px; margin: 0 auto; }
.newsletter-input-group { display: flex; gap: 0.5rem; }
.newsletter-input { flex: 1; padding: 0.875rem 1.25rem; border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius-xl); background: rgba(255,255,255,0.15); color: white; font-size: 1rem; backdrop-filter: blur(8px); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.6); outline: none; background: rgba(255,255,255,0.2); }
.newsletter-btn { padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 600; white-space: nowrap; border-radius: var(--radius-xl); }
.newsletter-note { font-size: 0.75rem; opacity: 0.7; margin: 1rem 0 0; color: rgba(255,255,255,0.7); }

/* Mobile for new sections */
@media (max-width: 768px) {
  .trust-badges { gap: 0.75rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
  .trust-badge { font-size: 0.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .newsletter-input-group { flex-direction: column; }
  .newsletter-title { font-size: 1.5rem; }
}
