/* ===========================
   JOBS PAGE HERO
=========================== */
.jobs-page-hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: #fff;
  padding: 36px 0 28px;
  text-align: center;
}

.jobs-page-hero h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.jobs-page-hero p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Filter Tabs */
.jobs-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.filter-tab:hover,
.filter-tab.active {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

/* ===========================
   JOBS SECTIONS
=========================== */
.jobs-section {
  padding: 44px 0;
  background: #f5f5f5;
}

.jobs-section.germany-bg {
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border-top: 3px solid #e63946;
}

/* ===========================
   FOOTER STYLES
=========================== */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 13px;
  color: #888;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
}

.fsoc:hover {
  background: #e63946;
  transform: scale(1.1);
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-col ul li a {
  font-size: 13px;
  color: #888;
  transition: color 0.2s;
}

.footer-links-col ul li a:hover {
  color: #ffd200;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

.footer-bottom a {
  color: #e63946;
}

.footer-tagline {
  color: #555 !important;
}

/* ===========================
   RESPONSIVE – JOBS PAGE
=========================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .jobs-page-hero h1 {
    font-size: 22px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 0 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .jobs-page-hero {
    padding: 24px 0 20px;
  }
}
