/* Careers Page Styles */

/* Hero Section */
.careers-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.careers-hero .container {
  position: relative;
  z-index: 2;
}

.careers-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.careers-hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.careers-main {
  padding: 60px 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Careers Overview Section */
.careers-overview {
  margin-bottom: 80px;
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature i {
  font-size: 2.5rem;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.feature p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Values Section */
.values-section {
  background-color: #f8fafc;
  padding: 80px 0;
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
  margin-bottom: 20px;
}

.value-icon i {
  font-size: 2.5rem;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 2.5rem;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Application Form Section */
.application-section {
  background-color: #f8fafc;
  padding: 80px 0;
  margin-bottom: 80px;
}

.application-form-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.application-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: white;
}

.form-group input[type="file"] {
  padding: 8px;
  background-color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.form-footer p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.privacy-note {
  margin-top: 10px;
}

.privacy-note a {
  color: #3b82f6;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 80px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: #3b82f6;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .careers-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .careers-hero .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .overview-features {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .application-form {
    padding: 30px 20px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 80px 0 60px;
  }
  
  .careers-hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .careers-hero .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .feature,
  .value-card,
  .benefit-item {
    padding: 20px;
  }
  
  .application-form {
    padding: 20px 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  .overview-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .careers-hero .hero-content h1 {
    font-size: 4rem;
  }
  
  .careers-hero .hero-content p {
    font-size: 1.4rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .overview-features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid,
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* JavaScript for FAQ functionality */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #3b82f6;
} 