/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Custom Properties for Gen-Z Premium Color Palette */
:root {
  /* Primary - Vibrant Purple/Blue (modern, energetic) */
  --primary-color: #6366f1; /* Indigo */
  --primary-hover: #4f46e5;
  --primary-active: #4338ca;
  --primary-light: rgba(99, 102, 241, 0.1);
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);

  /* Secondary Accents - Gen-Z Vibes */
  --accent-teal: #06b6d4;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-cyan: #22d3ee;
  --accent-emerald: #10b981;
  --accent-orange: #f97316;
  --accent-rose: #f43f5e;

  /* Background System - Modern Glass Effect */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #fef7ff 50%, #f0f9ff 75%, #ffffff 100%);
  --bg-card-gradient: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fafafa 100%);
  --bg-accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-dark: rgba(255, 255, 255, 0.95);

  /* Text Hierarchy - Modern & Readable */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;
  --text-accent: #6366f1;
  --text-gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);

  /* Status Colors - Vibrant & Clear */
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --success-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --error: #ef4444;
  --error-light: rgba(239, 68, 68, 0.1);
  --error-gradient: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  --info: #06b6d4;
  --info-light: rgba(6, 182, 212, 0.1);
  --info-gradient: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);

  /* Shadows - Premium Depth with Color */
  --shadow-xs: 0 1px 2px 0 rgba(99, 102, 241, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(99, 102, 241, 0.1), 0 1px 2px 0 rgba(99, 102, 241, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(99, 102, 241, 0.1), 0 2px 4px -1px rgba(99, 102, 241, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(99, 102, 241, 0.1), 0 4px 6px -2px rgba(99, 102, 241, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(99, 102, 241, 0.04);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
  --shadow-colored: 0 8px 32px rgba(99, 102, 241, 0.15);

  /* Border Radius - Modern & Soft */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing - Optimized 8pt System */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;

  /* Transitions - Smooth & Modern */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.content {
  min-height: 100vh;
  padding-bottom: calc(88px + var(--space-3)); /* Space for bottom nav + margin */
  padding-top: var(--space-4); /* Safe area top padding */
}

/* Typography Hierarchy - Premium & Confident */
h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.025em;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
  letter-spacing: -0.015em;
}

h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
}

small {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Cards - Modern Gen-Z Design */
.card {
  background: var(--bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  margin: var(--space-3) 0;
  border: 1px solid rgba(99, 102, 241, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.card:hover {
  box-shadow: var(--shadow-colored);
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(99, 102, 241, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card:active {
  transform: translateY(-3px) scale(0.99);
  box-shadow: var(--shadow-lg);
}

.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
}

/* Form Styles - Modern Gen-Z Design */
.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  font-size: 16px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(99, 102, 241, 0.2);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background: var(--bg-secondary);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--space-3) center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: var(--space-6);
  appearance: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="url"] {
  padding-right: var(--space-4);
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error);
  background: rgba(239, 68, 68, 0.05);
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.05);
}

.form-group.success input:focus,
.form-group.success select:focus,
.form-group.success textarea:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Form Help Text */
.form-help {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: var(--space-1);
  line-height: 1.4;
}

.form-error {
  font-size: 14px;
  color: var(--error);
  margin-top: var(--space-1);
  line-height: 1.4;
  font-weight: 500;
}

.form-success {
  font-size: 14px;
  color: var(--success);
  margin-top: var(--space-1);
  line-height: 1.4;
  font-weight: 500;
}

/* Form Layout Helpers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}

/* Job Detail Page Styles */
.job-detail-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow);
  margin-bottom: var(--spacing-xl);
}

.job-header {
  border-bottom: 1px solid var(--neutral-medium);
  padding-bottom: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.job-title-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.job-title-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.salary-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.company-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  font-size: 14px;
}

.job-meta-item i {
  width: 16px;
  height: 16px;
}

.job-section {
  margin-bottom: var(--spacing-xl);
}

.job-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.job-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.requirement-item {
  background: var(--surface-secondary);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

.requirement-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.skill-chip {
  background: var(--neutral-light);
  color: var(--text-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--neutral-light);
  color: var(--text-secondary);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.responsibilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsibilities-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--neutral-light);
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--spacing-lg);
}

.responsibilities-list li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.responsibilities-list li:last-child {
  border-bottom: none;
}

.job-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.detail-item {
  background: var(--surface-secondary);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-teal);
}

.detail-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.job-actions-bar {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  padding: var(--spacing-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: var(--spacing-xl);
}

.job-actions-bar .btn {
  flex: 1;
  max-width: 200px;
}

/* Skeleton Loading */
.skeleton {
  animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-title {
  height: 24px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.skeleton-text {
  height: 16px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.skeleton-text:nth-child(2) {
  width: 80%;
}

.skeleton-text:nth-child(3) {
  width: 60%;
}

/* Modern Animations & Effects - Gen-Z Friendly */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Utility Classes for Animations */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-scale {
  animation: fadeInScale 0.5s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Modern Glass Effect */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Shadows */
.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-colored {
  box-shadow: var(--shadow-colored);
}

/* Interactive Elements */
.interactive {
  transition: all var(--transition-normal);
  cursor: pointer;
}

.interactive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored);
}

.interactive:active {
  transform: scale(0.98);
}

.card-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Buttons - Modern Gen-Z CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: 0.025em;
  min-height: 48px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
  border-radius: var(--radius-full);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-colored);
  border: 1px solid rgba(99, 102, 241, 0.3);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
  background: var(--primary-gradient);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  background-position: right center;
}

.btn-primary:active {
  transform: scale(0.96) translateY(-1px);
  box-shadow: var(--shadow-lg);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 2px solid rgba(99, 102, 241, 0.15);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: var(--bg-glass-dark);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
  color: var(--text-accent);
}

.btn-secondary:active {
  transform: scale(0.96) translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-colored);
  border: 1px solid rgba(168, 85, 247, 0.3);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  background-position: right center;
}

.btn-success {
  background: var(--success-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  background: var(--success-gradient);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
}

.btn-danger {
  background: var(--error-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background: var(--error-gradient);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  animation: none;
}

/* Icon sizing for buttons */
.btn i, .btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Small button variant */
.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: 14px;
  min-height: 40px;
}

.btn-sm i, .btn-sm svg {
  width: 16px;
  height: 16px;
}

/* Large button variant */
.btn-lg {
  padding: var(--space-4) var(--space-5);
  font-size: 18px;
  min-height: 56px;
}

.btn-lg i, .btn-lg svg {
  width: 24px;
  height: 24px;
}

/* Form Elements */
/* Forms - Premium Design */
.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: inherit;
  background: var(--bg-primary);
  transition: all var(--transition-fast);
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light), var(--shadow-sm);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Trust & Safety Elements */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: #ffffff;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-left: var(--spacing-sm);
}

.verified-badge i {
  width: 12px;
  height: 12px;
}

.trust-indicator {
  border: 2px solid var(--success);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm);
  background: rgba(16, 185, 129, 0.05);
  margin: var(--spacing-md) 0;
}

.status-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.status-applied {
  background: var(--warning-light);
  color: var(--warning);
  border-color: var(--warning);
}

.status-viewed {
  background: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.status-shortlisted {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-purple);
  border-color: var(--accent-purple);
}

.status-interview {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-color: #0891b2;
}

.status-hired {
  background: var(--success-light);
  color: var(--success);
  border-color: var(--success);
}

.status-rejected {
  background: var(--error-light);
  color: var(--error);
  border-color: var(--error);
}

/* Application Cards - Modern Gen-Z Design */
.application-card {
  background: var(--bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  margin: var(--space-3) 0;
  border: 1px solid rgba(99, 102, 241, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.application-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.application-card:hover {
  box-shadow: var(--shadow-colored);
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.15);
}

.application-card:hover::before {
  opacity: 1;
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3);
  gap: var(--space-2);
}

.application-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.3;
}

.contact-methods {
  display: flex;
  gap: var(--space-1);
  align-items: center;
  flex-shrink: 0;
}

.contact-btn {
  background: none;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  color: var(--primary-color);
}

.contact-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.contact-btn i {
  width: 16px;
  height: 16px;
}

.contact-call {
  border-color: var(--success);
  color: var(--success);
}

.contact-call:hover {
  background: var(--success);
  color: white;
}

.contact-chat {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.contact-chat:hover {
  background: var(--primary-color);
  color: white;
}

.contact-email {
  border-color: var(--warning);
  color: var(--warning);
}

.contact-email:hover {
  background: var(--warning);
  color: white;
}

.application-company {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.application-company::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: var(--radius-full);
  display: inline-block;
}

.application-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.application-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text-tertiary);
  font-size: 13px;
}

.application-meta-item i {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.application-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.application-actions .btn {
  flex: 1;
  min-width: 120px;
  font-size: 14px;
  padding: var(--space-2) var(--space-3);
  min-height: 40px;
}

/* Navigation - Modern Gen-Z Bottom Bar */
.nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: var(--shadow-xl);
  display: flex;
  justify-content: space-around;
  padding: var(--space-1) 0;
  z-index: 1000;
  padding-bottom: max(var(--space-1), env(safe-area-inset-bottom));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.nav a {
  text-decoration: none;
  color: var(--text-tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  transition: all var(--transition-fast);
  padding: var(--space-1);
  border-radius: var(--radius-md);
  min-width: 64px;
  position: relative;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
  transition: width var(--transition-normal);
}

.nav a:hover {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav a.active {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.nav a.active::before {
  width: 28px;
}

.nav i {
  width: 24px;
  height: 24px;
  margin-bottom: var(--space-1);
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.nav a:hover i,
.nav a.active i {
  transform: scale(1.15);
}

/* Header - Modern Gen-Z Design */
.header {
  padding: var(--space-4) var(--space-3);
  background: linear-gradient(135deg, var(--bg-glass) 0%, var(--bg-glass-dark) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  margin-bottom: var(--space-4);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  opacity: 0.5;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.header h1 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  width: 100%;
}

.header-content i {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  opacity: 0.8;
  margin-top: 4px;
}

.header-content h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.header-content p {
  margin: 4px 0 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.icon-btn i {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
}

/* Job Cards & Profile Cards - Premium iOS Design */
.job-card,
.profile-card,
.company-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
  margin: var(--space-2) 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.job-card::before,
.profile-card::before,
.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-teal), var(--accent-purple));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.job-card:hover,
.profile-card:hover,
.company-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(30, 58, 138, 0.1);
}

.job-card:hover::before,
.profile-card:hover::before,
.company-card:hover::before {
  opacity: 1;
}

.job-card:active,
.profile-card:active,
.company-card:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.job-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.job-company {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.job-meta {
  display: flex;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.job-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

/* Animations & Micro-interactions - Premium Motion */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.fade-in-up {
  animation: fadeInUp 0.4s ease-out;
}

.fade-in-scale {
  animation: fadeInScale 0.3s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.3s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.3s ease-out;
}

.pulse-soft {
  animation: pulse 2s infinite;
}

/* Stagger animations for lists */
.fade-in-up:nth-child(1) { animation-delay: 0s; }
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }

/* Loading States - Premium Skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.08) 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
  border-radius: var(--radius-md);
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 16px;
  margin-bottom: var(--space-1);
  border-radius: var(--radius-xs);
}

.skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-sm);
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}
  margin-bottom: var(--spacing-md);
}

/* Progress Indicators */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--neutral-medium);
  border-radius: 4px;
  overflow: hidden;
  margin: var(--spacing-sm) 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-accent) 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--spacing-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral-medium);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #ffffff;
}

.timeline-content {
  background: var(--neutral-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-small);
  border-left: 4px solid var(--primary-color);
}

/* Responsive Design - Gen-Z Optimized */
@media (max-width: 480px) {
  /* Mobile First - Small screens */
  .container {
    padding: 0 var(--space-2);
  }

  .content {
    padding-top: var(--space-3);
    padding-bottom: calc(80px + var(--space-3));
  }

  .card {
    padding: var(--space-3);
    margin: var(--space-2) 0;
    border-radius: var(--radius-md);
  }

  h1 {
    font-size: 28px;
    margin-bottom: var(--space-2);
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Application Cards - Mobile Optimized */
  .application-card {
    padding: var(--space-3);
    margin: var(--space-2) 0;
  }

  .application-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }

  .application-header h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-methods {
    align-self: flex-end;
  }

  .application-meta {
    flex-direction: column;
    gap: var(--space-1);
  }

  .application-actions {
    flex-direction: column;
    gap: var(--space-1);
  }

  .application-actions .btn {
    width: 100%;
    min-width: unset;
  }

  /* Navigation - Mobile optimized */
  .nav {
    padding: var(--space-1) 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .nav a {
    min-width: 56px;
    padding: var(--space-1);
  }

  .nav i {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Tablet - Medium screens */
  .container {
    padding: 0 var(--space-3);
  }

  .content {
    padding-top: var(--space-4);
    padding-bottom: calc(88px + var(--space-4));
  }

  .card {
    padding: var(--space-4);
    margin: var(--space-3) 0;
  }

  /* Application Cards - Tablet optimized */
  .application-header {
    gap: var(--space-3);
  }

  .application-actions {
    justify-content: space-between;
  }

  .application-actions .btn {
    flex: 0 1 auto;
    min-width: 140px;
  }

  /* Navigation - Tablet optimized */
  .nav a {
    min-width: 64px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Desktop - Large screens */
  .container {
    max-width: 1000px;
  }

  .content {
    padding-top: var(--space-5);
    padding-bottom: calc(88px + var(--space-5));
  }

  .card {
    padding: var(--space-5);
    margin: var(--space-4) 0;
  }

  /* Application Cards - Desktop optimized */
  .application-actions .btn {
    min-width: 160px;
  }
}

@media (min-width: 1025px) {
  /* Large Desktop - Extra large screens */
  .container {
    max-width: 1200px;
  }

  .card {
    padding: var(--space-6);
  }

  /* Application Cards - Large desktop optimized */
  .application-header h3 {
    font-size: 20px;
  }

  .application-actions .btn {
    min-width: 180px;
    font-size: 16px;
  }
}

/* Job Posting Specific Styles */
.type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (min-width: 640px) {
  .type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.type-card {
  background: #ffffff;
  border: 2px solid var(--neutral-medium);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.type-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.type-card.selected {
  border-color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
}

.type-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.type-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.type-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Form Progress */
.form-progress {
  margin-bottom: var(--spacing-2xl);
}

.step-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neutral-medium);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.step.active {
  background: var(--primary-color);
  color: #ffffff;
}

/* Job Search - Premium Design */
.search-section {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  align-items: center;
}

.search-bar {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  padding: var(--space-2) var(--space-4) var(--space-2) calc(var(--space-4) + 28px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  font-size: 16px;
  background: var(--bg-primary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  font-weight: 400;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light), var(--shadow-md);
  transform: translateY(-1px);
}

.search-bar input::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

.search-icon {
  position: absolute;
  left: var(--space-2);
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  pointer-events: none;
  z-index: 1;
}

.clear-btn {
  position: absolute;
  right: var(--spacing-md);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.clear-btn:hover {
  background: var(--neutral-light);
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  white-space: nowrap;
}

.filter-count {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

/* Active Filters */
.active-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--neutral-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.filter-chip {
  background: var(--primary-color);
  color: #ffffff;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.filter-chip .remove-filter {
  cursor: pointer;
  opacity: 0.8;
}

.filter-chip .remove-filter:hover {
  opacity: 1;
}

.clear-all-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

/* Results Header */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.results-header select {
  padding: var(--spacing-sm);
  border: 1px solid var(--neutral-medium);
  border-radius: var(--border-radius-small);
  background: #ffffff;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Job Cards */
.job-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  padding: var(--spacing-lg);
  border: 1px solid var(--neutral-medium);
  border-left: 4px solid var(--primary-color);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.job-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

/* Urgent Job Badge */
.urgent-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.urgent-badge i {
  width: 14px;
  height: 14px;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.salary-badge {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: #ffffff;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.job-company {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 14px;
  color: var(--text-muted);
}

.job-meta-item i {
  width: 16px;
  height: 16px;
}

.job-description {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.skill-chip {
  background: var(--neutral-light);
  color: var(--text-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-posted {
  font-size: 12px;
  color: var(--text-muted);
}

.job-actions {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.save-job-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-job-btn:hover {
  background: var(--neutral-light);
}

.save-job-btn.saved {
  color: var(--secondary-accent);
}

.save-job-btn i {
  width: 20px;
  height: 20px;
}

/* Premium Bottom Sheets & Modals */
.filters-modal,
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  animation: fadeInScale 0.3s ease-out;
}

.filters-content,
.modal-content {
  background: var(--bg-primary);
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-xl);
  animation: slideInUp 0.4s ease-out;
  position: relative;
}

.filters-content::before,
.modal-content::before {
  content: '';
  position: absolute;
  top: var(--space-1);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-full);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .filters-modal,
  .modal-overlay {
    align-items: center;
    padding: var(--space-4);
  }

  .filters-content,
  .modal-content {
    width: 500px;
    max-height: 600px;
    border-radius: var(--radius-xl);
    margin: 0 auto;
  }

  .filters-content::before,
  .modal-content::before {
    display: none;
  }
}

.filters-header,
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-header h3,
.modal-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--radius-md);
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  transform: scale(1.1);
}
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background: var(--neutral-light);
}

.filter-group {
  margin-bottom: var(--spacing-lg);
}

.filter-group label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.salary-slider {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.salary-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--neutral-medium);
  outline: none;
}

.salary-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
}

.salary-display {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
}

.filters-footer {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-end;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--neutral-medium);
}

/* Load More */
.load-more-container {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--text-muted);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-medium);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Empty State - Modern Gen-Z Design */
.empty-state {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  color: var(--text-muted);
  background: var(--bg-card-gradient);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(99, 102, 241, 0.08);
  position: relative;
  overflow: hidden;
}

.empty-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.empty-state i {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-4);
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

.empty-state h3 {
  font-size: 24px;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.empty-state p {
  font-size: 16px;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state .btn {
  position: relative;
  z-index: 1;
  background: var(--primary-gradient);
  animation: gradientShift 4s ease infinite;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--accent-purple));
}

/* Selection Styling */
::selection {
  background: rgba(99, 102, 241, 0.2);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(99, 102, 241, 0.2);
  color: var(--text-primary);
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: var(--shadow-colored);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --text-primary: #000000;
    --bg-primary: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  :root {
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 20px;
    --space-4: 28px;
    --space-5: 36px;
    --space-6: 44px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .content {
    padding-top: var(--space-5);
    padding-bottom: calc(96px + var(--space-4));
  }

  .card {
    padding: var(--space-4);
    margin: var(--space-3) 0;
  }

  .job-card,
  .profile-card,
  .company-card {
    padding: var(--space-4);
    margin: var(--space-3) 0;
  }

  /* Two-column layout for some content */
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  :root {
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
  }

  .container {
    max-width: 1200px;
    padding: 0 var(--space-5);
  }

  .content {
    padding-top: var(--space-6);
    padding-bottom: calc(100px + var(--space-5));
  }

  /* Sidebar navigation for desktop */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: 280px;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-5) var(--space-3);
    background: var(--bg-primary);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    box-shadow: var(--shadow-lg);
  }

  .nav a {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-1);
    font-size: 14px;
    min-width: auto;
  }

  .nav a i {
    margin-bottom: 0;
    margin-right: var(--space-2);
  }

  .nav a::before {
    display: none;
  }

  /* Adjust content for sidebar */
  .content {
    margin-left: 280px;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .header {
    margin-left: -280px;
    padding-left: calc(280px + var(--space-5));
    border-radius: 0;
  }

  .header::before {
    display: none;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .nav,
  .btn {
    display: none;
  }

  .card {
    box-shadow: none;
    border: 1px solid #000;
  }
}

/* Form Validation Styles */
input:invalid, select:invalid, textarea:invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Premium Scrolling & Lists */
.job-list,
.application-list,
.message-list {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.job-list > *,
.application-list > *,
.message-list > * {
  animation: fadeInUp 0.4s ease-out;
  animation-fill-mode: both;
}

.job-list > *:nth-child(1) { animation-delay: 0s; }
.job-list > *:nth-child(2) { animation-delay: 0.05s; }
.job-list > *:nth-child(3) { animation-delay: 0.1s; }
.job-list > *:nth-child(4) { animation-delay: 0.15s; }
.job-list > *:nth-child(5) { animation-delay: 0.2s; }
.job-list > *:nth-child(6) { animation-delay: 0.25s; }
.job-list > *:nth-child(7) { animation-delay: 0.3s; }
.job-list > *:nth-child(8) { animation-delay: 0.35s; }

/* Enhanced Icon Sizing */
i[data-lucide], svg[data-lucide] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Smaller icons in meta information */
.profile-meta-item i[data-lucide],
.profile-meta-item svg[data-lucide] {
  width: 18px;
  height: 18px;
}

/* Welcome section icons */
.welcome-icon i[data-lucide],
.welcome-icon svg[data-lucide] {
  width: 72px;
  height: 72px;
}

/* Navigation icons */
.nav a i[data-lucide],
.nav a svg[data-lucide] {
  width: 28px;
  height: 28px;
}

/* Button icons are handled above in .btn styles */

/* Enhanced Profile Page Styles */
.welcome-content {
  text-align: center;
  padding: var(--space-5) 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-radius: var(--radius-lg);
  margin: var(--space-3) 0;
}

.welcome-icon {
  margin-bottom: var(--space-4);
  filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.2));
}

.welcome-content h2 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
}

.welcome-content p {
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.6;
}

.welcome-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 320px;
  margin: 0 auto;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .welcome-actions, .quick-actions {
    flex-direction: row;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Enhanced Profile Info Styles */
.profile-info {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-avatar {
  flex-shrink: 0;
  position: relative;
}

.profile-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.1;
  z-index: -1;
}

.profile-details h3 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
}

.profile-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.profile-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: 16px;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
}

.profile-meta-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.profile-description {
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-teal);
}

.profile-description p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.card-actions {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.danger-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-danger {
  background: var(--error-gradient);
  color: white;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: var(--shadow-md);
}

.btn-danger:hover {
  background: var(--error-gradient);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .settings-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .profile-info {
    gap: var(--space-5);
  }
}

/* Landing Page Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  z-index: 1000;
  padding: var(--space-2) 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-buttons {
  display: flex;
  gap: var(--space-2);
}

.btn {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 12px 24px;
  font-size: 1.1rem;
}

.hero {
  padding: 120px 0 80px;
  background: var(--bg-gradient);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-3);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero-icon {
  width: 80px;
  height: 80px;
  padding: var(--space-3);
  background: var(--bg-card-gradient);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: var(--primary-color);
}

.connection-line {
  width: 100px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  position: relative;
}

.connection-line::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.features {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-6);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.feature-card {
  background: var(--bg-card-gradient);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta {
  padding: 80px 0;
  background: var(--primary-gradient);
  color: white;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-3);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.footer {
  background: var(--text-primary);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-buttons {
    flex-direction: row;
    gap: var(--space-2);
  }

  .nav-buttons .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-bottom: var(--space-3);
  }

  .footer-links a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Permission Flow Styles */
#permission-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.permission-overlay {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.permission-container {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.permission-header {
  text-align: center;
  margin-bottom: 32px;
}

.permission-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.permission-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.permission-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.permission-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.permission-icon i {
  width: 24px;
  height: 24px;
}

.permission-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.permission-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.permission-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.permission-actions .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.permission-actions .btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: white;
}

.permission-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.permission-actions .btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.permission-actions .btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.permission-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Permission Dialog Styles */
#permission-denial-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-overlay {
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

.dialog-container {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.dialog-container h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.dialog-container p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.dialog-actions {
  display: flex;
  gap: 12px;
}

.dialog-actions .btn {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* Permission Messages */
.permission-success-message,
.permission-skip-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 90%;
  animation: slideDown 0.3s ease-out;
}

.success-content,
.skip-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--success-light);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  font-weight: 500;
}

.skip-content {
  background: var(--warning-light);
  border-color: var(--warning);
  color: var(--warning);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.success-content i,
.skip-content i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@keyframes slideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .permission-container {
    margin: 20px;
    padding: 24px;
  }

  .permission-header h2 {
    font-size: 20px;
  }

  .permission-item {
    padding: 16px;
  }

  .permission-icon {
    width: 40px;
    height: 40px;
  }

  .permission-icon i {
    width: 20px;
    height: 20px;
  }
}

/* Permission Settings in Profile */
.permission-settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.permission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.permission-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.permission-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-success {
  background: var(--success);
  color: white;
  border: none;
}

.btn-success:hover {
  background: var(--success);
  opacity: 0.9;
}

.btn-warning {
  background: var(--warning);
  color: white;
  border: none;
}

.btn-warning:hover {
  background: var(--warning);
  opacity: 0.9;
}

.btn-danger {
  background: var(--error);
  color: white;
  border: none;
}

.btn-danger:hover {
  background: var(--error);
  opacity: 0.9;
}

.permission-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.permission-status.granted {
  background: var(--success-light);
  color: var(--success);
}

.permission-status.denied {
  background: var(--error-light);
  color: var(--error);
}

.permission-status.pending {
  background: var(--warning-light);
  color: var(--warning);
}

/* ===== PERMISSION STATUS STYLES ===== */

.permission-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  background: white;
}

.permission-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.permission-info i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.permission-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.permission-info p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.granted {
  background: var(--success-light);
  color: var(--success);
}

.status-badge.denied {
  background: var(--error-light);
  color: var(--error);
}

.status-badge.permanently-denied {
  background: var(--error-light);
  color: var(--error);
}

.status-badge.not-requested {
  background: var(--warning-light);
  color: var(--warning);
}

.permission-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== TEST PAGE STYLES ===== */

.test-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.test-results {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 16px;
  font-family: 'Inter', monospace;
  font-size: 14px;
  white-space: pre-wrap;
}

/* Permission Screen Overlay */
.permission-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.permission-container {
  background: var(--bg-card-gradient);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: slideInUp 0.4s ease-out;
}

.permission-header {
  text-align: center;
  margin-bottom: 32px;
}

.permission-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.permission-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.permission-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.permission-item:hover {
  transform: translateY(-2px);
}

.permission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.permission-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.permission-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.permission-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.permission-actions .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

.permission-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 24px;
  line-height: 1.4;
}

/* Dialog Styles */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dialog-container {
  background: var(--bg-card-gradient);
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: slideInUp 0.3s ease-out;
}

.dialog-container h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  text-align: center;
}

.dialog-container p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  text-align: center;
}

.dialog-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dialog-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}

/* Message Styles */
.permission-success-message,
.permission-skip-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10002;
  animation: slideInDown 0.3s ease-out;
}

.success-content,
.skip-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--success-light);
  color: var(--success);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.1);
  font-weight: 500;
}

.skip-content {
  background: var(--warning-light);
  color: var(--warning);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.success-content i,
.skip-content i {
  font-size: 20px;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .permission-container {
    padding: 24px;
    margin: 20px;
  }

  .permission-header h2 {
    font-size: 20px;
  }

  .permission-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .permission-icon {
    align-self: center;
  }
}

/* Profile Hero Section */
.profile-hero {
  background: var(--bg-card-gradient);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.profile-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seeker-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.seeker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.seeker-info h1 {
  margin: 0 0 4px 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.seeker-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.seeker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Profile Content Grid */
.profile-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px; /* Account for fixed navbar */
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Profile Cards */
.profile-card {
  background: var(--bg-card-gradient);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.card-header {
  margin-bottom: 20px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-title i {
  color: var(--primary-color);
}

/* Seeker Details */
.seeker-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 120px;
}

.detail-value {
  color: var(--text-primary);
  text-align: right;
  flex: 1;
}

/* Skills Section */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Experience Section */
.experience-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-item {
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.experience-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.experience-duration {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.experience-company {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Recent Activity */
.recent-activity {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.activity-meta {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Resume Section */
.resume-section {
  text-align: center;
  padding: 24px;
}

.resume-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin: 0 auto 16px;
  font-size: 24px;
}

.resume-section h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.resume-section p {
  margin: 0;
  color: var(--text-secondary);
}

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.action-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.action-desc {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Recruiter Profile Styles */
.recruiter-hero {
  background: var(--bg-card-gradient);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.recruiter-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.recruiter-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.recruiter-info h1 {
  margin: 0 0 4px 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.recruiter-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-teal);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.company-detail-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.company-detail-card h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.company-detail-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Activity Feed */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.activity-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activity-card .activity-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.activity-card .activity-content {
  flex: 1;
}

.activity-card .activity-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.activity-card .activity-meta {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-hero {
    padding: 20px;
  }

  .seeker-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-content {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .recruiter-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .detail-value {
    text-align: left;
  }

  .experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .profile-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}