/* ===== Careers Page ===== */
@import url('common.css');

.careers-hero {
  overflow: hidden;
}
.careers-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.08);
  transform-origin: center;
  animation: careersHeroZoom 14s ease-in-out infinite alternate;
}
.careers-hero .overlay {
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.45) 0%, rgba(26, 53, 83, 0.34) 100%);
}
.careers-hero-title,
.careers-hero-sub {
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

@keyframes careersHeroZoom {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1%, -1%, 0); }
}

/* Why GV */
.why-gv-section {
  padding: 70px 24px;
  background: #fafbfc;
}
.why-gv-container { max-width: 1200px; margin: 0 auto; }
.why-gv-heading {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.why-gv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #1ab555;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.why-card i {
  font-size: 2.4rem;
  color: #1a3553;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.2rem; color: #1a3553; margin-bottom: 8px; }
.why-card p { font-size: 0.95rem; color: #555; }

/* Positions */
.positions-section {
  padding: 70px 24px;
  background: #fff;
}
.positions-container { max-width: 1100px; margin: 0 auto; }
.positions-heading {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 14px;
}
.positions-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 50px;
}
.job-card {
  background: #fafbfc;
  padding: 26px 30px;
  border-radius: 12px;
  border-left: 6px solid #1ab555;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.job-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.job-head h3 {
  font-size: 1.3rem;
  color: #1a3553;
  margin: 0;
}
.job-status {
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-active {
  background: #d4f4dd;
  color: #1ab555;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 14px;
}
.job-meta i { color: #1ab555; margin-right: 6px; }

.job-card p { font-size: 0.98rem; color: #444; margin-bottom: 14px; }
.job-reqs strong { display: block; margin-bottom: 6px; color: #1a3553; font-size: 0.95rem; }
.job-reqs ul { padding-left: 22px; color: #555; font-size: 0.92rem; margin-bottom: 16px; }
.job-reqs ul li { margin: 4px 0; }

.job-apply {
  display: inline-block;
  background: #1a3553;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.job-apply:hover {
  background: #1ab555;
  transform: translateY(-2px);
  color: #fff;
}

/* Open Application */
.open-application {
  text-align: center;
  background: linear-gradient(135deg, #1a3553 0%, #2c5f7a 100%);
  color: #fff;
  padding: 50px 30px;
  border-radius: 16px;
}
.open-application h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.open-application p {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}
.open-app-btn {
  display: inline-block;
  background: #1ab555;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.open-app-btn:hover {
  background: #fff;
  color: #1a3553;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .careers-hero-bg {
    animation: none !important;
    transform: none !important;
  }
}
