/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #f5f5f5;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===========================
   HEADER
=========================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.logo-icon {
  font-size: 22px;
}

.logo-text strong {
  color: #e63946;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-tag:hover {
  opacity: 0.8;
}

.nav-tag.hotel {
  background: #e63946;
  color: #fff;
}

.nav-tag.tenth {
  background: #2b7a78;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO / FEATURED POST
=========================== */
.hero-section {
  background: #fff;
  padding: 28px 0 0;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 2px solid #f0f0f0;
}

.featured-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-image:hover img {
  transform: scale(1.03);
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge.hotel {
  background: #e63946;
  color: #fff;
}

.category-badge.tenth {
  background: #2b7a78;
  color: #fff;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}

.featured-title a:hover {
  color: #e63946;
}

.featured-excerpt {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  flex-wrap: wrap;
}

.post-meta .author {
  color: #e63946;
  font-weight: 500;
}

.read-more-btn {
  display: inline-block;
  padding: 9px 20px;
  background: #e63946;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s;
}

.read-more-btn:hover {
  background: #c1121f;
}

/* ===========================
   MAIN CONTENT GRID
=========================== */
.main-content {
  padding: 32px 0 48px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ===========================
   POSTS GRID
=========================== */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.posts-grid.hidden {
  display: none;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.post-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.post-thumb {
  display: block;
  position: relative;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-thumb img {
  transform: scale(1.05);
}

.cat-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cat-label.tenth {
  background: #2b7a78;
  color: #fff;
}

.cat-label.hotel {
  background: #e63946;
  color: #fff;
}

.post-body {
  padding: 14px 16px 18px;
}

.post-body h2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
  color: #1a1a1a;
}

.post-body h2 a:hover {
  color: #e63946;
}

.post-body .excerpt {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}

.post-meta .comments {
  margin-left: auto;
  font-size: 11px;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.load-more-btn {
  display: inline-block;
  padding: 11px 36px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.load-more-btn:hover {
  background: #e63946;
}

.load-more-btn.loaded {
  background: #aaa;
  cursor: default;
}

/* ===========================
   SIDEBAR
=========================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* Subscribe Widget */
.subscribe-widget h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.subscribe-widget p {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input:focus {
  border-color: #e63946;
}

.subscribe-form button {
  padding: 10px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.subscribe-form button:hover {
  background: #c1121f;
}

.terms-note {
  font-size: 11px;
  color: #999;
  margin-top: 10px;
  line-height: 1.5;
}

.terms-note a {
  color: #e63946;
  text-decoration: underline;
}

/* Social Widget */
.social-widget h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
  color: #fff;
}

.social-btn:hover {
  opacity: 0.88;
  transform: translateX(3px);
}

.social-btn.facebook  { background: #1877f2; }
.social-btn.twitter   { background: #1da1f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube   { background: #ff0000; }
.social-btn.tiktok    { background: #010101; }
.social-btn.telegram  { background: #0088cc; }

/* Recent Posts Widget */
.recent-widget h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  margin-bottom: 14px;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent-list li a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.recent-list li img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.recent-list li span {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
}

.recent-list li a:hover span {
  color: #e63946;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  font-size: 13px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #e63946;
}

.copyright {
  font-size: 12px;
  color: #888;
}

.copyright a {
  color: #e63946;
}

/* ===========================
   TOAST NOTIFICATION
=========================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2b7a78;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image img {
    height: 220px;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .featured-title {
    font-size: 18px;
  }

  .logo-text {
    font-size: 15px;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav a {
    font-size: 11px;
  }
}

/* ===========================
   TICKER / ANNOUNCEMENT BAR
=========================== */
.ticker-wrap {
  background: linear-gradient(90deg, #1a1a2e, #16213e, #0f3460);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
  border-bottom: 2px solid #e63946;
}

.ticker-label {
  background: #e63946;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 500;
  padding-left: 20px;
}

.ticker-track span {
  padding-right: 10px;
  color: #ffd700;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   HERO STATS
=========================== */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 70px;
  text-align: center;
}

.stat span { font-size: 18px; }
.stat strong { font-size: 16px; font-weight: 800; color: #e63946; line-height: 1.2; }
.stat small { font-size: 10px; color: #888; }

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.salary-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hot-tag {
  background: #ff4757;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  animation: pulse-tag 1.5s ease-in-out infinite;
}

@keyframes pulse-tag {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Apply Now Button */
.apply-now-btn {
  display: inline-block;
  padding: 11px 24px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #1a1a1a;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(247,151,30,0.4);
}

.apply-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,151,30,0.5);
}

.apply-now-btn.pulse {
  animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 14px rgba(247,151,30,0.4); }
  50% { box-shadow: 0 4px 28px rgba(247,151,30,0.8); transform: scale(1.03); }
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.section-header p {
  font-size: 14px;
  color: #666;
}

.highlight {
  color: #e63946;
  background: linear-gradient(135deg, #e63946, #f7971e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   WORK FROM HOME SECTION
=========================== */
.wfh-section {
  background: linear-gradient(135deg, #f0fff4, #e8f5e9);
  padding: 48px 0;
  border-top: 3px solid #2b7a78;
}

/* Limited Banner */
.limited-banner {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  border: 2px solid #ffd200;
  flex-wrap: wrap;
}

.limited-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.limited-left .fire { font-size: 36px; }

.limited-left strong {
  font-size: 16px;
  font-weight: 800;
  color: #ffd200;
  display: block;
  margin-bottom: 4px;
}

.limited-left p {
  font-size: 13px;
  color: #ccc;
}

.limited-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.seat-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
}

.seat-num {
  font-size: 36px;
  font-weight: 900;
  color: #ff4757;
  line-height: 1;
}

.seat-label {
  font-size: 11px;
  color: #ccc;
  line-height: 1.4;
}

/* ===========================
   JOB CARDS GRID
=========================== */
.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.job-card-top {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.job-card-top.green  { background: linear-gradient(135deg, #11998e, #38ef7d); }
.job-card-top.blue   { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
.job-card-top.purple { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.job-card-top.orange { background: linear-gradient(135deg, #f7971e, #ffd200); color: #1a1a1a; }
.job-card-top.red    { background: linear-gradient(135deg, #e63946, #c1121f); }
.job-card-top.teal   { background: linear-gradient(135deg, #2b7a78, #17a589); }
.job-card-top.indigo { background: linear-gradient(135deg, #3c1053, #ad5389); }
.job-card-top.yellow { background: linear-gradient(135deg, #f09819, #edde5d); color: #1a1a1a; }
.job-card-top.pink   { background: linear-gradient(135deg, #f953c6, #b91d73); }
.job-card-top.dark   { background: linear-gradient(135deg, #232526, #414345); }

.job-icon { font-size: 32px; }

.job-type-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.job-card-body {
  padding: 16px;
}

.job-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.job-salary {
  font-size: 22px;
  font-weight: 900;
  color: #e63946;
  margin-bottom: 12px;
}

.job-salary span {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

.job-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.job-perks li {
  font-size: 12px;
  color: #444;
}

.seats-bar {
  background: #f0f0f0;
  border-radius: 20px;
  height: 6px;
  margin-bottom: 4px;
  overflow: hidden;
}

.seats-fill {
  height: 100%;
  background: linear-gradient(90deg, #f7971e, #e63946);
  border-radius: 20px;
  transition: width 1s ease;
}

.seats-fill.red-fill {
  background: linear-gradient(90deg, #e63946, #c1121f);
}

.job-card-body small {
  font-size: 11px;
  color: #e63946;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.card-apply-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.card-apply-btn:hover {
  background: #e63946;
  transform: scale(1.02);
}

.card-apply-btn.urgent {
  background: linear-gradient(135deg, #e63946, #c1121f);
  animation: pulse-btn 2s ease-in-out infinite;
}

/* ===========================
   GERMANY JOBS SECTION
=========================== */
.germany-jobs-section {
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  padding: 48px 0;
  border-top: 3px solid #e63946;
}

/* ===========================
   APPLY FORM SECTION
=========================== */
.apply-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  padding: 56px 0;
}

.apply-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.apply-form-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.apply-form-left > p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.7;
}

.apply-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.apply-benefits li {
  font-size: 14px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badges span {
  background: rgba(255,255,255,0.1);
  color: #ffd200;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,210,0,0.3);
}

/* Form */
.job-apply-form {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 2px solid #e9ecef;
  border-radius: 7px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: #1a1a1a;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e63946;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e63946, #f7971e);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,57,70,0.5);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: #999;
  margin-top: 10px;
}

/* ===========================
   POSTS SECTION TITLE
=========================== */
.posts-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}

.posts-section-title h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
}

.posts-section-title span {
  font-size: 12px;
  color: #888;
}

/* ===========================
   NAV TAG ADDITIONS
=========================== */
.nav-tag.wfh {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #fff;
}

.nav-tag.apply-nav {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #1a1a1a;
}

/* ===========================
   RESPONSIVE – NEW SECTIONS
=========================== */
@media (max-width: 1100px) {
  .job-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .job-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .limited-banner {
    flex-direction: column;
    text-align: center;
  }

  .limited-left {
    flex-direction: column;
    text-align: center;
  }

  .apply-form-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
  }

  .section-header h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .job-cards-grid {
    grid-template-columns: 1fr;
  }

  .ticker-label {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Seat flash animation */
@keyframes seatFlash {
  0%   { transform: scale(1); color: #ff4757; }
  50%  { transform: scale(1.3); color: #ffd200; }
  100% { transform: scale(1); color: #ff4757; }
}

/* ===========================
   APPLY MODAL
=========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  width: 100%;
  max-width: 560px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  color: #555;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #e63946;
  color: #fff;
}

.modal-header {
  margin-bottom: 18px;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.modal-job-name {
  font-size: 13px;
  font-weight: 700;
  color: #2b7a78;
  background: #f0f9f8;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.modal-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* ===========================
   SINGLE JOB PREVIEW (homepage)
=========================== */
.single-job-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.featured-job-card {
  height: 100%;
}

.find-more-box {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.15);
}

.find-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.find-more-icon {
  font-size: 40px;
}

.find-more-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.find-more-content p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.find-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(247,151,30,0.4);
}

.find-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,151,30,0.5);
}

.find-more-btn.germany-btn {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,57,70,0.4);
}

.find-more-btn.germany-btn:hover {
  box-shadow: 0 6px 20px rgba(230,57,70,0.5);
}

/* ===========================
   FOOTER (full)
=========================== */
.site-footer {
  background: #111;
}

.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.08);
}

.footer-brand p {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.fsoc:hover {
  background: #e63946;
  transform: scale(1.1);
}

.footer-links-col h4 {
  font-size: 12px;
  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;
  list-style: none;
}

.footer-links-col ul li a {
  font-size: 13px;
  color: #777;
  transition: color 0.2s;
  text-decoration: none;
}

.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: #555;
}

.footer-bottom a {
  color: #e63946;
}

.footer-tagline {
  color: #444 !important;
}

/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */

/* Fix hero overflow on mobile */
@media (max-width: 768px) {
  .featured-post {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-image img {
    height: 200px;
  }

  .featured-title {
    font-size: 17px;
  }

  .featured-excerpt {
    font-size: 13px;
  }

  .hero-stats {
    gap: 6px;
  }

  .stat {
    padding: 8px 10px;
    min-width: 60px;
  }

  .stat strong {
    font-size: 13px;
  }

  /* Single job preview stacks on mobile */
  .single-job-preview {
    grid-template-columns: 1fr;
  }

  .find-more-box {
    padding: 24px 16px;
  }

  /* Footer */
  .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;
  }

  /* Limited banner */
  .limited-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px;
  }

  .limited-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .limited-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Section header */
  .section-header h2 {
    font-size: 18px;
  }

  /* Main grid */
  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  /* Modal */
  .modal-box {
    padding: 20px 16px;
    margin: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  /* Header */
  .logo-text {
    font-size: 15px;
  }

  /* Ticker */
  .ticker-label {
    display: none;
  }

  /* Hero */
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .apply-now-btn,
  .hero-btns .read-more-btn {
    text-align: center;
    width: 100%;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Job cards */
  .job-cards-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   AD UNITS STYLING
=========================== */
.ads-above-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.ad-between-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.ad-unit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-unit > div {
  margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ads-above-header {
    flex-direction: column;
    gap: 12px;
    padding: 8px;
  }

  .ad-between-header {
    padding: 8px;
  }
}
