/* style/about-career.css */
.page-about-career {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
}

.page-about-career__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  color: #1a1a1a; /* Dark text for light/gold background */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-about-career__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-career__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1a1a1a; /* Dark text for contrast */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-career__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333; /* Slightly lighter dark text */
}

.page-about-career__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.page-about-career__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about-career__cta-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color for CTA */
  color: #FFD700; /* Gold text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-about-career__cta-button:hover {
  background-color: #FFD700; /* Hover to gold */
  color: #8B0000; /* Text to wine red */
  transform: translateY(-3px);
  border-color: #8B0000;
}

.page-about-career__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-about-career__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for main titles */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-about-career__section-description {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #ccc;
}

.page-about-career__why-join .page-about-career__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-career__feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #8B0000;
}

.page-about-career__feature-item:hover {
  transform: translateY(-10px);
  border-color: #FFD700;
}

.page-about-career__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about-career__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about-career__feature-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-about-career__our-culture {
  background-color: #1a1a1a;
}

.page-about-career__culture-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-career__value-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-about-career__value-item h4 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about-career__value-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about-career__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.5));
}

.page-about-career__career-paths {
  background-color: #1a1a1a;
}

.page-about-career__paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-career__path-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-about-career__path-item:hover {
  transform: translateY(-10px);
}

.page-about-career__path-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #8B0000;
}

.page-about-career__path-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-about-career__path-item p {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

.page-about-career__application-process {
  background-color: #1a1a1a;
}

.page-about-career__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-career__step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-about-career__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B0000;
  color: #FFD700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-about-career__step-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about-career__step-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about-career__cta-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-about-career__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-about-career__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-about-career__testimonials {
  background-color: #1a1a1a;
}

.page-about-career__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about-career__testimonial-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border-left: 5px solid #8B0000;
}

.page-about-career__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-about-career__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-about-career__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
}

.page-about-career__contact-us {
  background-color: #1a1a1a;
  padding-bottom: 100px;
}

.page-about-career__contact-info {
  margin-top: 40px;
  font-size: 1.2em;
  color: #e0e0e0;
}

.page-about-career__contact-info p {
  margin-bottom: 10px;
}

.page-about-career__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about-career__contact-link:hover {
  color: #8B0000;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about-career__hero-title {
    font-size: 2.8em;
  }
  .page-about-career__hero-subtitle {
    font-size: 1.3em;
  }
  .page-about-career__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about-career__hero-title {
    font-size: 2.2em;
  }
  .page-about-career__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about-career__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about-career__section {
    padding: 60px 15px;
  }
  .page-about-career__section-title {
    font-size: 1.8em;
  }
  .page-about-career__section-description {
    font-size: 1em;
  }
  .page-about-career__features-grid, 
  .page-about-career__culture-values, 
  .page-about-career__paths-grid, 
  .page-about-career__process-steps, 
  .page-about-career__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-about-career__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about-career__hero-title {
    font-size: 1.8em;
  }
  .page-about-career__hero-subtitle {
    font-size: 0.95em;
  }
  .page-about-career__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-about-career__section-title {
    font-size: 1.6em;
  }
  .page-about-career__cta-text {
    font-size: 1.2em;
  }
}