/* ===============================
   HERO SECTION
=============================== */

.hero-wrapper {
  background: #f5f5f7;
  padding: 80px 0;
}

.hero-container {
  max-width: 1100px;
}

.hero-badge {
  color: #1c7c63;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-top: 10px;
}

.hero-subtitle {
  font-size: 22px;
  color: #555;
  margin-bottom: 30px;
}

/* ===============================
   DESKTOP SEARCH BOX
=============================== */

.job-search-box {
  background: #fff;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.search-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 2fr 1fr;
  gap: 10px;
}

.search-grid input,
.search-grid select {
  height: 55px;
  border: none;
  padding: 0 15px;
  border-radius: 12px;
  background: #f2f2f2;
}

.search-grid button {
  background: #19a19f;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
}

/* ===============================
   MOBILE SEARCH (MODERN MINIMAL)
=============================== */

.mobile-search {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
  margin: 20px;
  background: transparent;
  box-shadow: none;
}

.mobile-search input,
.mobile-search select {
  width: 100%;
  height: 42px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
}

.mobile-search input:focus,
.mobile-search select:focus {
  border-color: #19a19f;
}

.mobile-search button {
  height: 44px;
  background: #19a19f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive toggle */

@media (max-width: 991px) {
  .desktop-search {
    display: none;
  }

  .mobile-search {
    display: flex;
  }
}

/* ===============================
   JOB CARDS
=============================== */

.job-link {
  text-decoration: none;
  color: inherit;
}

.job-card {
  background: #f5f5f7;
  border-radius: 8px;
  padding: 20px;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #000;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.company-name {
  font-size: 13px;
  color: #666;
}

.job-title {
  font-size: 18px;
  font-weight: 700;
}

.salary {
  font-weight: 600;
  color: #333;
}

.job-meta {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.skills {
  font-size: 13px;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 12px;
}

.job-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===============================
   BUTTON
=============================== */

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-apply {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn-apply:hover {
  background: #333;
  transform: scale(1.08);
}

/* ===============================
   FEATURES SECTION
=============================== */

#features {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

#features h2 {
  font-size: 36px;
  font-weight: 800;
}

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

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================
   CTA SECTION
=============================== */

.cta-section {
  padding: 80px 20px;
  background: #19a19f;
  color: #fff;
  text-align: center;
}

.cta-section .btn {
  background: #fff;
  color: #19a19f;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
}

@media (max-width: 768px) {
  #features h2,
  .cta-section h2 {
    font-size: 28px;
  }
}
