:root {
  --primary-teal: #0d9488;
  --dark-teal: #134e4a;
  --light-teal: #5eead4;
  --coral: #f97316;
  --dark-coral: #ea580c;
  --light-coral: #fed7aa;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-teal);
  background: rgba(13, 148, 136, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-login {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--gray-100);
  color: var(--primary-teal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-coral), var(--coral));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary.btn-large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-primary.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-teal);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--primary-teal);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--gray-600);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--coral) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.hero-shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg); 
    opacity: 1;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, var(--light-coral), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.search-container {
  margin-bottom: 32px;
}

.search-bar {
  display: grid;
  grid-template-columns: 3fr 2.2fr 2.2fr auto;
  gap: 12px;
  background: white;
  border-radius: 16px;
  padding: 15px;
  box-shadow: var(--shadow-2xl);
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--gray-400);
  z-index: 1;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 16px 45px 16px 45px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 180px;
  white-space: nowrap;
  overflow: visible;
}

.search-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 50px;
  cursor: pointer;
}

.search-field select option {
  color: var(--gray-800);
  background: white;
  padding: 10px;
  font-size: 15px;
  white-space: nowrap;
}

/* Responsive search bar */
@media (max-width: 768px) {
  .search-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .search-field select {
    min-width: auto;
  }
}

.search-field input:focus,
.search-field select:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.search-field input::placeholder {
  color: var(--gray-400);
}

.search-btn {
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  min-width: 120px;
  justify-content: center;
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--dark-coral), var(--coral));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.search-results {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.search-results.show {
  display: block;
}

.search-result-item {
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-result-item:hover {
  background: var(--gray-50);
}

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

.search-result-item h4 {
  color: var(--primary-teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.search-result-item .company {
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 4px;
}

.search-result-item .job-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.search-result-item .job-meta span {
  color: var(--gray-500);
  font-size: 14px;
}

.popular-searches {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.popular-searches span {
  font-weight: 600;
  opacity: 0.9;
  display: flex;
  align-items: center;
}
.popular-searches a {
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popular-searches a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.hero-icon {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.8);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 200px;
}

.floating-card.job-alert {
  top: 20px;
  left: -60px;
  animation-delay: 0s;
}

.floating-card.success-rate {
  bottom: 100px;
  right: -80px;
  animation-delay: 2s;
}

.floating-card.companies {
  top: 200px;
  right: -40px;
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
  color: white;
  flex-shrink: 0;
}

.card-icon.success {
  background: linear-gradient(135deg, var(--success), #34d399);
}

.card-icon.companies {
  background: linear-gradient(135deg, var(--coral), var(--light-coral));
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-content span {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-content strong {
  font-size: 18px;
  color: var(--gray-900);
  font-weight: 800;
}

.card-content small {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Trusted Companies */
.trusted-companies {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-companies p {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trusted-companies p i {
  color: var(--success);
}

.companies-slider {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0.7;
  min-width: 120px;
}

.company-logo:hover {
  opacity: 1;
  background: var(--gray-50);
  transform: translateY(-4px);
}

.company-logo i {
  font-size: 32px;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.company-logo span {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Individual Company Colors */
.company-logo:nth-child(1) i, 
.company-logo:nth-child(1) span {
  color: #00A4EF !important; /* Microsoft Blue */
}

.company-logo:nth-child(2) i,
.company-logo:nth-child(2) span {
  color: #4285F4 !important; /* Google Blue */
}

.company-logo:nth-child(3) i,
.company-logo:nth-child(3) span {
  color: #FF9900 !important; /* Amazon Orange */
}

.company-logo:nth-child(4) i,
.company-logo:nth-child(4) span {
  color: #1877F2 !important; /* Meta Blue */
}

.company-logo:nth-child(5) i,
.company-logo:nth-child(5) span {
  color: #0052CC !important; /* TCS Blue */
}

.company-logo:nth-child(6) i,
.company-logo:nth-child(6) span {
  color: #007CC3 !important; /* Infosys Blue */
}

.company-logo:nth-child(7) i,
.company-logo:nth-child(7) span {
  color: #7B68EE !important; /* Wipro Purple */
}

.company-logo:nth-child(8) i,
.company-logo:nth-child(8) span {
  color: #00A1E0 !important; /* Salesforce Blue */
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Categories */
.categories {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.category-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.category-icon.marketing {
  background: linear-gradient(135deg, var(--coral), var(--light-coral));
}

.category-icon.finance {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}

.category-icon.design {
  background: linear-gradient(135deg, #ec4899, #fbcfe8);
}

.category-icon.business {
  background: linear-gradient(135deg, #10b981, #6ee7b7);
}

.category-icon.engineering {
  background: linear-gradient(135deg, #f59e0b, #fde68a);
}

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

.category-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.job-count {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 14px;
}

.category-skills {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.category-skills span {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.btn-category {
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-category:hover {
  background: linear-gradient(135deg, var(--dark-coral), var(--coral));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: var(--dark-teal);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stats-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stats-shape.shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.stats-shape.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

.stats-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.stats-highlight {
  background: linear-gradient(135deg, var(--coral), var(--light-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stats-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.stats-features .feature i {
  color: var(--success);
  font-size: 18px;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--gray-50);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: white;
}

.step-number {
  position: relative;
  margin-bottom: 24px;
}

.step-number span {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.step-line {
  position: absolute;
  top: 30px;
  left: calc(100% + 20px);
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  opacity: 0.5;
}

.step-card:last-child .step-line {
  display: none;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--coral), var(--light-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.step-features i {
  color: var(--success);
  font-size: 12px;
}

/* Recent Jobs */
.recent-jobs {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  text-align: left;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--gray-900);
  margin: 0;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  margin: 8px 0 0 0;
}

.jobs-container {
  position: relative;
}

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

.job-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}

.job-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.job-card .company {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.job-type {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

.job-card p {
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 20px;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-salary {
  font-weight: 700;
  color: var(--primary-teal);
  font-size: 16px;
}

.btn-apply {
  background: linear-gradient(135deg, var(--coral), var(--dark-coral));
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  background: linear-gradient(135deg, var(--dark-coral), var(--coral));
  transform: translateY(-1px);
}

.jobs-loading,
.jobs-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}

.loader-small {
  width: 30px;
  height: 30px;
  border: 3px solid var(--gray-300);
  border-top: 3px solid var(--primary-teal);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

/* Platform Stats */
.platform-stats {
  padding: 100px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--gray-50);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item > * {
  position: relative;
  z-index: 1;
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-teal);
  margin-bottom: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--coral);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-suffix {
  color: white;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-description {
  color: var(--gray-500);
  font-size: 14px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label,
.stat-item:hover .stat-description {
  color: white;
}

/* Newsletter */
.newsletter {
  padding: 100px 0;
  background: var(--dark-teal);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.newsletter-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.newsletter-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.newsletter-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.newsletter-form-container {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  position: relative;
}

.form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  z-index: 1;
}

.newsletter-form input {
  width: 100%;
  padding: 16px 16px 16px 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.2);
}

.btn-newsletter {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.newsletter-privacy i {
  color: var(--success);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials-slider {
  position: relative;
  margin-bottom: 40px;
  min-height: 300px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  display: none;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

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

.testimonial-content {
  margin-bottom: 32px;
}

.quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-700);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.author-info span {
  color: var(--gray-600);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary-teal);
  color: white;
  border-color: var(--primary-teal);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-teal);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2px;
}

.faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-teal);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  transition: all 0.3s ease;
  margin: 0;
}

.faq-icon {
  color: var(--gray-400);
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Mobile App */
.mobile-app {
  padding: 100px 0;
  background: var(--gray-50);
}

.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-teal);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.app-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--gray-900);
  line-height: 1.2;
}

.app-content p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

.app-feature i {
  color: var(--primary-teal);
  font-size: 18px;
}

.app-download {
  display: flex;
  gap: 16px;
}

.app-store-btn,
.play-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--gray-900);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-icon {
  font-size: 24px;
}

.store-text small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
}

.store-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 20px;
  box-shadow: var(--shadow-2xl);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.app-header i {
  font-size: 24px;
  color: var(--primary-teal);
}

.app-header span {
  font-weight: 700;
  color: var(--gray-900);
}

.app-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.app-search i {
  color: var(--gray-400);
}

.app-search span {
  color: var(--gray-500);
  font-size: 14px;
}

.app-jobs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-job-card {
  background: var(--gray-50);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
}

.job-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.job-company {
  font-size: 12px;
  color: var(--gray-600);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.footer-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-section.main {
  max-width: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  color: white;
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 14px;
}

.contact-item i {
  color: var(--coral);
  width: 16px;
}

.contact-form-footer h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
}

.contact-form-footer form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-footer input,
.contact-form-footer textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  background: var(--gray-800);
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form-footer input:focus,
.contact-form-footer textarea:focus {
  border-color: var(--primary-teal);
  background: var(--gray-700);
}

.contact-form-footer input::placeholder,
.contact-form-footer textarea::placeholder {
  color: var(--gray-500);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--gray-800);
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray-500);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom p i {
  color: var(--coral);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--coral);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.back-to-top.show {
  display: flex;
}

/* Button Loading States */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .btn-loading {
  display: inline-flex;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-container {
    gap: 40px;
  }
  
  .newsletter-content,
  .app-container {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .search-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .step-line {
    display: none;
  }
  
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .newsletter-content,
  .app-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Form Error Styles */
.error {
  border-color: var(--error) !important;
  background-color: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 1px var(--error) !important;
}

.error::placeholder {
  color: var(--error) !important;
  opacity: 0.7 !important;
}

.error:focus {
  outline: none !important;
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Additional Contact Form Styles */
.contact-form-footer input.error,
.contact-form-footer textarea.error {
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Job Search Results */
.search-results {
  display: none;
  margin-top: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  max-height: 70vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

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

.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 40px;
  color: var(--gray-600);
  font-size: 16px;
}

.search-loading i {
  font-size: 20px;
  color: var(--primary-teal);
}

.search-empty {
  text-align: center;
  padding: 60px 40px;
  color: var(--gray-600);
}

.search-empty i {
  font-size: 48px;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.search-empty h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--gray-700);
}

.search-empty p {
  font-size: 16px;
  margin-bottom: 30px;
}

.search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 15px 15px 0 0;
  flex-wrap: wrap;
  gap: 15px;
}

.search-summary h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
}

.search-tag {
  background: var(--primary-teal);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.btn-clear {
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-clear:hover {
  background: var(--gray-300);
}

.job-card {
  padding: 25px 30px;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.job-card:hover {
  background: var(--gray-50);
  transform: translateX(5px);
}

.job-card:last-child {
  border-bottom: none;
  border-radius: 0 0 15px 15px;
}

.job-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}

.job-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-teal), var(--coral));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-logo i {
  font-size: 24px;
  color: white;
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-800);
}

.job-company {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--gray-500);
}

.job-meta i {
  font-size: 12px;
}

.job-salary {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-teal);
  text-align: right;
}

.job-skills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.skill-tag {
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary-teal);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.job-actions {
  display: flex;
  gap: 15px;
}

.btn-apply {
  background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-save {
  background: white;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-save:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gray-300);
}

/* Responsive Search Results */
@media (max-width: 768px) {
  .search-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-card {
    padding: 20px 15px;
  }
  
  .job-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .job-salary {
    text-align: left;
    margin-top: 10px;
  }
  
  .job-meta {
    gap: 15px;
  }
  
  .job-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-apply,
  .btn-save {
    justify-content: center;
    width: 100%;
  }
}

/* ==================== ENHANCED MOBILE RESPONSIVE ==================== */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 15px;
  }
  
  /* Navbar Mobile */
  .navbar {
    padding: 10px 0;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo img {
    width: 28px;
    height: 28px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-buttons {
    gap: 8px;
  }
  
  .nav-buttons .btn-login {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .nav-buttons .btn-primary {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  /* Search Bar Mobile */
  .search-container {
    padding: 0 10px;
    margin-top: 20px;
  }
  
  .search-bar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
  }
  
  .search-field {
    width: 100%;
  }
  
  .search-field input,
  .search-field select {
    padding: 12px 15px;
    font-size: 14px;
    width: 100%;
  }
  
  .search-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  /* Voice Search Banner Mobile */
  .voice-search-banner {
    margin: 20px 15px;
    padding: 15px;
    border-radius: 12px;
  }
  
  .voice-search-banner p {
    font-size: 13px;
  }
  
  /* Stats Section Mobile */
  .stats-section {
    padding: 40px 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 10px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  /* Section Titles Mobile */
  .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
  
  /* Feature Cards Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
  
  /* Job Cards Mobile */
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .job-card {
    padding: 15px;
  }
  
  .job-card h3 {
    font-size: 16px;
  }
  
  /* Buttons Mobile */
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section h4 {
    font-size: 16px;
  }
  
  .footer-section a,
  .footer-section p {
    font-size: 13px;
  }
  
  /* Testimonials Mobile */
  .testimonials-slider {
    padding: 0 10px;
  }
  
  .testimonial-card {
    padding: 20px;
    min-width: 280px;
  }
  
  .testimonial-card p {
    font-size: 13px;
  }
  
  /* CTA Section Mobile */
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-section h2 {
    font-size: 24px;
  }
  
  .cta-section p {
    font-size: 14px;
  }
  
  /* Tools Grid Mobile */
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
  
  .tool-card {
    padding: 15px 10px;
  }
  
  .tool-card i {
    font-size: 24px;
  }
  
  .tool-card h4 {
    font-size: 12px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px !important;
  }
  
  .hero p {
    font-size: 13px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-buttons .btn-login {
    display: none;
  }
}

/* =====================================================
   MOBILE RESPONSIVE - HERO & SEARCH BAR
   ===================================================== */

/* Hero Title Styles */
.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fed7aa, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

/* Search Bar Styles */
.search-container {
  max-width: 1250px;
}

.mobile-search {
  display: grid;
  grid-template-columns: 3fr 2.3fr 2.4fr auto auto;
  gap: 12px;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mobile-search .search-field {
  position: relative;
}

.mobile-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 2;
}

.mobile-search input,
.mobile-search select {
  width: 100%;
  padding: 16px 16px 16px 45px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: #1f2937;
  background: #f9fafb;
  outline: none;
}

.mobile-search select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6,9 12,15 18,9"%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

.mobile-search .voice-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-search .voice-btn:hover {
  transform: translateY(-2px);
}

.mobile-search .search-btn {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.mobile-search .search-btn:hover {
  transform: translateY(-2px);
}

/* Tablet View */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .mobile-search {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .mobile-search .hide-mobile {
    display: none;
  }
  
  .mobile-search .voice-btn,
  .mobile-search .search-btn {
    padding: 14px 16px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .hero-title {
    font-size: 28px !important;
    padding: 0 10px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 25px;
  }
  
  .mobile-search {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    margin: 0 10px;
  }
  
  .mobile-search .search-field {
    width: 100%;
  }
  
  .mobile-search .hide-mobile {
    display: none;
  }
  
  .mobile-search input,
  .mobile-search select {
    padding: 14px 14px 14px 40px;
    font-size: 15px;
  }
  
  .mobile-search .voice-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  
  .mobile-search .search-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  
  .search-container {
    padding: 0;
  }
}