/* HERO */
.hero-jobs {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px  17px;
  position: relative;
  overflow: hidden;
}

.hero-jobs::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  animation: floatCircle 6s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-25px) scale(1.05); }
  100% { transform: translate(0,-10px) scale(1); }
}

.hero-jobs h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-jobs p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 40px;
}

/* Job Stats */
.job-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.job-stat {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 25px;
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 150px;
}

.job-stat .num {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
}

.job-stat span {
  display: block;
  font-weight: 500;
  color: #f0f0f0;
}

/* Search Bar */
.search-bar-block {
  max-width: 950px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.search-bar-block input,
.search-bar-block select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  background: #fff;
  color: #333;
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.search-bar-block input {
  flex: 2 1 240px;
}

.search-bar-block select {
  flex: 1 1 140px;
}

/* No Jobs */
.no-jobs-block {
  text-align: center;
  padding: 50px 20px;
  color: #555;
}

.no-jobs-block .icon {
  font-size: 3em;
  color: #ffb48a;
  margin-bottom: 10px;
  display: block;
}

/* Why Join Section */
.why-join-block {
  max-width: 1000px;
  margin: 60px auto 80px;
  text-align: center;
}

.why-join-block h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #222;
}

.why-join-block p {
  color: #555;
  margin-bottom: 30px;
}

.why-join-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wj-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(255,102,0,0.15);
  flex: 1 1 260px;
  max-width: 300px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.wj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(255,102,0,0.25);
}

.wj-icon {
  font-size: 2.3em;
  color: #ff6600;
  margin-bottom: 12px;
}

.wj-card h3 {
  margin-bottom: 8px;
  font-size: 1.2em;
  color: #222;
}

.wj-card p {
  color: #555;
  font-size: 0.95em;
}

/* Footer */
.footer {
  background: #0b1033;
  color: #adadc2;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-col h3 {
  color: #eeeefa;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid #1a204f;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #adadc2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1a204f;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #8b8bb1;
  font-size: 0.9rem;
}

@media(max-width:900px){
  .job-stats, .why-join-row {
    flex-direction: column;
    align-items: center;
  }
  .search-bar-block {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-container, .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
