/* ==========================================================================
   FUTURE INTERNATIONAL — PREMIUM MANPOWER RECRUITMENT DESIGN SYSTEM
   ========================================================================== */

:root {
  --navy: #071B4B;
  --navy-dark: #030d28;
  --royal-blue: #1266C5;
  --sky-blue: #35B8F4;
  --emerald: #38A852;
  --fresh-green: #7BC043;
  --orange: #FF8A34;
  --white: #FFFFFF;
  --soft-bg: #F4F8FC;
  --card-bg: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;
  --gradient-navy-royal: linear-gradient(135deg, #071B4B 0%, #1266C5 100%);
  --gradient-sky-royal: linear-gradient(135deg, #35B8F4 0%, #1266C5 100%);
  --gradient-emerald: linear-gradient(135deg, #7BC043 0%, #38A852 100%);
  --gradient-orange: linear-gradient(135deg, #FF8A34 0%, #E66A12 100%);
  --shadow-sm: 0 4px 6px -1px rgba(7, 27, 75, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(7, 27, 75, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(7, 27, 75, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--soft-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* --- TOP MINI BAR --- */
.top-bar {
  background: var(--navy-dark);
  background: linear-gradient(90deg, #030d28 0%, #071B4B 50%, #030d28 100%);
  color: #E5E7EB;
  font-size: 0.83rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1060;
}

.top-bar a {
  color: #F3F4F6;
  text-decoration: none;
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--sky-blue);
}

.top-bar-license {
  background: linear-gradient(135deg, rgba(53, 184, 244, 0.2) 0%, rgba(18, 102, 197, 0.25) 100%);
  color: #38BDF8;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(56, 189, 248, 0.4);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* --- MAIN NAVBAR --- */
.main-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(7, 27, 75, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 14px 0;
  border-bottom: 1px solid rgba(7, 27, 75, 0.05);
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(7, 27, 75, 0.14);
  background: rgba(255, 255, 255, 0.99);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  background: var(--gradient-navy-royal);
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(18, 102, 197, 0.35);
  transition: transform 0.3s ease;
}

.main-navbar.scrolled .logo-badge {
  width: 38px;
  height: 38px;
  font-size: 1.15rem;
  border-radius: 10px;
}

.logo-text-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.main-navbar.scrolled .logo-text-title {
  font-size: 1.15rem;
}

.logo-text-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  font-weight: 700;
}

.nav-link {
  font-weight: 600;
  color: var(--navy) !important;
  font-size: 0.92rem;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--royal-blue) !important;
  background: rgba(18, 102, 197, 0.06);
}

.nav-link.active {
  color: var(--royal-blue) !important;
  background: rgba(18, 102, 197, 0.1);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--royal-blue);
  border-radius: 2px;
}

.btn-header-call {
  background: var(--gradient-navy-royal);
  color: var(--white) !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  border: none;
  box-shadow: 0 4px 14px rgba(18, 102, 197, 0.3);
  transition: var(--transition);
}

.btn-header-whatsapp {
  background: var(--gradient-emerald);
  color: var(--white) !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  border: none;
  box-shadow: 0 4px 14px rgba(56, 168, 82, 0.3);
  transition: var(--transition);
}

.btn-header-call:hover, .btn-header-whatsapp:hover {
  transform: translateY(-2px);
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-header-call:hover, .btn-header-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* --- HERO SECTION --- */
.hero-section {
  background: var(--navy-dark) url('../images/hero-workforce.jpg') no-repeat center center / cover;
  color: var(--white);
  padding: 100px 0 140px 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(3, 13, 40, 0.82) 0%, 
    rgba(7, 27, 75, 0.55) 45%, 
    rgba(7, 27, 75, 0.20) 75%, 
    rgba(3, 13, 40, 0.30) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 138, 52, 0.22);
  border: 1px solid rgba(255, 138, 52, 0.5);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.12;
  margin-bottom: 12px;
  font-weight: 800;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.45rem;
  color: var(--sky-blue);
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  color: #E5E7EB;
  font-size: 1.08rem;
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gradient-orange {
  background: var(--gradient-orange);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 138, 52, 0.35);
  transition: var(--transition);
}

.btn-gradient-royal {
  background: var(--gradient-navy-royal);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(18, 102, 197, 0.35);
  transition: var(--transition);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-gradient-orange:hover, .btn-gradient-royal:hover, .btn-outline-white:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* Floating Stats Cards over Full Hero */
.floating-stat-card {
  background: rgba(7, 27, 75, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 24px;
  border-radius: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.floating-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-blue);
  background: rgba(7, 27, 75, 0.92);
}

.floating-stat-card.pos-1 { top: 20px; right: -15px; }
.floating-stat-card.pos-2 { bottom: 30px; left: -15px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- FLOATING SEARCH PANEL --- */
.search-panel-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 100;
}

.search-panel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 20px 40px rgba(7, 27, 75, 0.12);
  border: 1px solid var(--border-color);
}

.search-panel-title {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- TRUST STRIP --- */
.trust-strip-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.trust-strip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-blue);
}

.trust-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: var(--gradient-sky-royal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-card-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-card-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- SECTION HEADINGS --- */
.section-tag {
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  color: var(--navy);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

/* --- CATEGORY CARDS --- */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 75, 0.1) 0%, rgba(7, 27, 75, 0.9) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(18, 102, 197, 0.2) 0%, rgba(7, 27, 75, 0.95) 100%);
}

.category-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.category-card-desc {
  font-size: 0.85rem;
  color: #E5E7EB;
  margin-bottom: 10px;
}

.category-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- JOB CARDS --- */
.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.job-badge-country {
  background: rgba(18, 102, 197, 0.1);
  color: var(--royal-blue);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-badge-featured {
  background: rgba(255, 138, 52, 0.15);
  color: var(--orange);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.job-title {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.job-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.job-meta-item i {
  color: var(--royal-blue);
  width: 16px;
}

.job-salary-box {
  background: var(--soft-bg);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--emerald);
  font-size: 0.95rem;
}

.job-card-footer {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

/* --- COUNTRY CARDS --- */
.country-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.country-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.country-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-flag-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 27, 75, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

.country-card-body {
  padding: 20px;
}

/* --- RECRUITMENT TIMELINE --- */
.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  position: relative;
}

.timeline-step-card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.timeline-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-blue);
}

.timeline-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sky-blue);
  margin-bottom: 8px;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--soft-bg);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px auto;
}

.timeline-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

/* --- SPLIT CORPORATE BANNER (FOR EMPLOYERS / CANDIDATES) --- */
.split-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.split-banner-img {
  min-height: 380px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-banner-content {
  padding: 50px;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 220px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 75, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- FOOTER --- */
.main-footer {
  background: var(--navy-dark);
  color: #9CA3AF;
  padding: 70px 0 30px 0;
  border-top: 4px solid var(--royal-blue);
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 35px;
  height: 3px;
  background: var(--orange);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #D1D5DB;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--sky-blue);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 50px;
  font-size: 0.85rem;
}

/* --- FLOATING ACTION BUTTONS --- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1040;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--royal-blue);
}

.float-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

/* --- ADMIN PANEL STYLES --- */
.admin-sidebar {
  background: var(--navy-dark);
  min-height: 100vh;
  color: var(--white);
}

.admin-sidebar .nav-link {
  color: #D1D5DB !important;
  border-radius: 8px;
  padding: 10px 16px !important;
  margin-bottom: 4px;
}

.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
  background: var(--royal-blue) !important;
  color: var(--white) !important;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.status-NEW { background: #E0F2FE; color: #0284C7; }
.status-SCREENING { background: #FEF3C7; color: #D97706; }
.status-SHORTLISTED { background: #F3E8FF; color: #9333EA; }
.status-INTERVIEW { background: #ECFDF5; color: #059669; }
.status-SELECTED { background: #DCFCE7; color: #16A34A; }
.status-DEPLOYED { background: #16A34A; color: #FFFFFF; }
.status-REJECTED { background: #FEE2E2; color: #DC2626; }

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   ========================================================================== */

@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0 90px 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .search-panel-wrapper {
    margin-top: -35px;
  }
  .search-panel-card {
    padding: 20px;
  }
  .split-banner-content {
    padding: 28px 20px;
  }
  .split-banner-img {
    min-height: 260px;
    max-height: 320px;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .main-navbar .navbar-collapse {
    background: #FFFFFF;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 12px;
    border: 1px solid var(--border-color);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 50px 0 80px 0;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 16px auto;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin: 0 auto 28px auto;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    padding: 12px 20px;
  }
  .top-bar {
    font-size: 0.78rem;
    padding: 6px 0;
  }
  .top-bar-license {
    font-size: 0.72rem;
    padding: 3px 10px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .trust-strip-card {
    padding: 14px 8px;
  }
  .trust-card-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .trust-card-number {
    font-size: 1.25rem;
  }
  .trust-card-label {
    font-size: 0.75rem;
  }

  /* 2-by-2 Card Adjustments on Mobile */
  .category-card {
    height: 180px;
    border-radius: var(--radius-sm);
  }
  .category-card-overlay {
    padding: 12px;
  }
  .category-card-title {
    font-size: 0.98rem;
    margin-bottom: 2px;
  }
  .category-card-link {
    font-size: 0.75rem;
  }

  .country-card-img {
    height: 110px;
  }
  .country-card-body {
    padding: 12px 10px;
  }
  .country-card-body h5 {
    font-size: 0.95rem;
  }
  .country-card-body .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .job-card {
    padding: 14px 10px;
    border-radius: var(--radius-sm);
  }
  .job-title {
    font-size: 0.92rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .job-badge-country {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  .job-badge-featured {
    font-size: 0.65rem;
    padding: 2px 6px;
  }
  .job-meta-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .job-salary-box {
    padding: 6px 8px;
    font-size: 0.78rem;
    margin-bottom: 12px;
  }
  .job-card-footer {
    flex-direction: column;
    gap: 6px;
  }
  .job-card-footer .btn {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item {
    height: 140px;
  }

  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .timeline-step-card {
    padding: 14px 8px;
  }
  .timeline-number {
    font-size: 1.15rem;
  }
  .timeline-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .timeline-title {
    font-size: 0.82rem;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .header-logo-img {
    height: 42px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.7rem;
  }
}
