/* Jobs Page Styles */
.jobs-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.jobs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.05)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.03)" cx="800" cy="800" r="150"/></svg>');
  opacity: 0.6;
}

.jobs-hero .container {
  position: relative;
  z-index: 2;
}

.jobs-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.jobs-hero .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Company Benefits */
.benefits-section {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102,126,234,0.05) 0%, transparent 70%);
  transform: rotate(45deg);
}

.benefits-section h3 {
  color: #333;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.benefit-item {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Job Cards */
.job-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.job-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.job-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.job-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.job-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-align: justify;
  font-size: 0.95rem;
}

.job-requirements {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.job-requirements h6 {
  color: #333;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.requirement-item {
  color: #666;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.requirement-item::before {
  content: '•';
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.job-info-section {
  margin-top: auto;
  padding-top: 1rem;
}

.job-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.meta-item {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.meta-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.meta-value {
  font-size: 0.9rem;
  color: #333;
  font-weight: 700;
  display: block;
}

.meta-value.salary {
  color: #28a745;
  font-weight: 700;
}

.job-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.detail-icon {
  color: #667eea;
  width: 14px;
  flex-shrink: 0;
  text-align: center;
}

.detail-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
  flex-grow: 1;
}



/* Job Stats */
.job-stats {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  display: block;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.empty-state i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.empty-state h4 {
  color: #333;
  margin-bottom: 1rem;
}

.empty-state .btn {
  margin-top: 1rem;
}

/* Modal Enhancements */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 1.5rem 2rem;
}

/* Form Enhancements */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .jobs-hero h1 {
    font-size: 2.2rem;
  }
  
  .benefits-section {
    padding: 2rem 1rem;
  }
  
  .benefit-item {
    margin-bottom: 1.5rem;
  }
  
  .job-meta {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .job-details {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .job-body {
    padding: 1.25rem;
  }
  
  .job-title {
    font-size: 1.1rem;
  }
  
  .job-description {
    font-size: 0.9rem;
  }
  
  .requirement-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .jobs-hero {
    padding: 2rem 0;
  }
  
  .jobs-hero h1 {
    font-size: 1.8rem;
  }
  
  .job-body {
    padding: 1rem;
  }
  
  .job-header {
    padding: 1.25rem 1.5rem;
  }
  
  .job-title {
    font-size: 1rem;
  }
  
  .job-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .job-requirements {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }
  
  .job-requirements h6 {
    font-size: 0.9rem;
  }
  
  .requirement-item {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .meta-item {
    padding: 0.5rem;
  }
  
  .meta-label {
    font-size: 0.7rem;
  }
  
  .meta-value {
    font-size: 0.85rem;
  }
  
  .detail-item {
    padding: 0.2rem 0;
  }
  
  .detail-text {
    font-size: 0.8rem;
  }
  
  .job-details {
    padding: 0.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
} 