/* Join Us Page Styles */

/* Hero Section */
.careers-hero {
  background: linear-gradient(to right, #134e5e 0%, #3a6073 50%, #203a43 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.careers-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.careers-hero__subtitle {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Mission Section */
.careers-mission {
  padding: 80px 0;
  background: var(--white);
}

.careers-mission__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-mission__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.careers-mission__description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
}

.careers-mission__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat__number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 600;
}

.careers-mission__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), #007a8f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 95, 115, 0.2);
}

.image-placeholder i {
  font-size: 80px;
  color: white;
}

/* Why Join Section */
.why-join {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-join__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 60px;
}

.why-join__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.15);
  border-color: var(--primary-color);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #007a8f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.2);
}

.benefit-card__icon i {
  font-size: 32px;
  color: white;
}

.benefit-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.benefit-card__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Open Positions Section */
.open-positions {
  padding: 80px 0;
  background: var(--white);
}

.open-positions__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 16px;
}

.open-positions__subtitle {
  font-size: 18px;
  color: var(--text-body);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.position-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.15);
  border-color: var(--primary-color);
}

.position-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}

.position-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #007a8f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.2);
}

.position-card__icon i {
  font-size: 24px;
  color: white;
}

.position-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.position-card__type {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  background: rgba(0, 95, 115, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.position-card__requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.position-card__requirements li {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

.position-card__requirements li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.position-card__description {
  margin-bottom: 24px;
  flex-grow: 1;
}

.position-card__description p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  font-style: italic;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.position-card__btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.position-card__btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Application Section */
.application {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.application__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.application__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.application__description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
}

.application__requirements,
.application__process {
  margin-bottom: 40px;
}

.application__requirements h3,
.application__process h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.application__requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application__requirements li {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

.application__requirements li::before {
  content: "📋";
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step__content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.step__content p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
}

/* Contact Methods */
.contact-methods h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 32px;
  text-align: center;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-method__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #007a8f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method__icon i {
  font-size: 20px;
  color: white;
}

.contact-method__info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.contact-method__info p {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method__info small {
  font-size: 13px;
  color: var(--text-body);
}

.application__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.application__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.application__btn--primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.application__btn--primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

.application__btn--secondary {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}

.application__btn--secondary:hover {
  background: transparent;
  color: #25d366;
  transform: translateY(-2px);
  text-decoration: none;
}

/* CTA Section */
.careers-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #007a8f 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.careers-cta__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.careers-cta__text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.careers-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.careers-cta__btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.careers-cta__btn--primary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.careers-cta__btn--primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.careers-cta__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.careers-cta__btn--secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .careers-mission__content,
  .application__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .careers-mission__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .positions-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 60px 0;
  }

  .careers-hero__title {
    font-size: 36px;
  }

  .careers-hero__subtitle {
    font-size: 18px;
  }

  .careers-mission,
  .why-join,
  .open-positions,
  .application,
  .careers-cta {
    padding: 60px 0;
  }

  .careers-mission__title,
  .why-join__title,
  .open-positions__title,
  .application__title,
  .careers-cta__title {
    font-size: 28px;
  }

  .careers-mission__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-join__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .positions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .position-card {
    padding: 24px;
  }

  .benefit-card {
    padding: 24px;
  }

  .careers-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .application__cta {
    flex-direction: column;
  }

  .image-placeholder {
    width: 250px;
    height: 250px;
  }

  .image-placeholder i {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .careers-hero__title {
    font-size: 28px;
  }

  .careers-hero__subtitle {
    font-size: 16px;
  }

  .careers-mission__title,
  .why-join__title,
  .open-positions__title,
  .application__title,
  .careers-cta__title {
    font-size: 24px;
  }

  .position-card__header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .position-card__icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
