/* =============================================================
   HEHE RECRUITZ — ULTRA-PREMIUM FRONTEND DESIGN SYSTEM v4.0
   Navy · Gold · Glass · Animated · Singapore Recruitment CMS
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Palette */
  --brand-navy:    #050e27;
  --brand-navy-2:  #0a1735;
  --brand-navy-3:  #0f2050;
  --brand-blue:    #1a56db;
  --brand-blue-2:  #3b82f6;
  --brand-orange:  #f7941d;
  --brand-gold:    #e9a126;
  --brand-gold-2:  #fbbf24;
  --brand-white:   #ffffff;
  --brand-off-white: #f8faff;

  /* Text */
  --text-dark:     #0f172a;
  --text-body:     #374151;
  --text-muted-fg: #6b7280;
  --text-light:    rgba(255,255,255,0.72);

  /* Gradients */
  --grad-hero:     linear-gradient(135deg, #050e27 0%, #0a1a40 40%, #0d2060 100%);
  --grad-navy-gold: linear-gradient(135deg, #0a1735, #1a2d5a);
  --grad-gold:     linear-gradient(135deg, #f7941d, #e9a126);
  --grad-blue:     linear-gradient(135deg, #1a56db, #3b82f6);
  --grad-cta:      linear-gradient(135deg, #0a1735 0%, #1a3a80 100%);

  /* Cards */
  --card-shadow:   0 2px 8px rgba(0,0,0,0.06), 0 12px 36px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 8px 32px rgba(26,86,219,0.14), 0 24px 64px rgba(0,0,0,0.1);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 9999px;

  /* Easing */
  --ease:  cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --t:     0.28s var(--ease);
  --t-slow: 0.45s var(--ease);
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--t); }

.font-heading { font-family: 'Outfit', sans-serif; }

/* Section spacing */
.section-py    { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }
.max-w-700 { max-width: 700px; }
.bg-brand-subtle { background: var(--brand-off-white); }

/* ============================================================
   TOPBAR ANNOUNCEMENT STRIP
   ============================================================ */
.announcement-strip {
  background: linear-gradient(90deg, var(--brand-navy) 0%, #0a1f4e 100%);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  padding: 9px 0;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.35);
  color: #fbbf24;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============================================================
   NAVBAR — PREMIUM GLASS
   ============================================================ */
.main-navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15,23,42,0.07);
  padding: 0;
  transition: all var(--t-slow);
  z-index: 1030;
}
.main-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(5,14,39,0.1);
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 22px 12px !important;
  position: relative;
  transition: color var(--t);
}
/* Underline slide animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--brand-blue) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-brand { display: flex; align-items: center; padding: 12px 0; }

/* Dropdown */
.dropdown-menu-custom {
  border: 1px solid rgba(15,23,42,0.08) !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 8px 32px rgba(5,14,39,0.12), 0 2px 8px rgba(5,14,39,0.06) !important;
  padding: 8px !important;
  min-width: 220px;
  animation: dropDownFade 0.22s var(--ease);
}
@keyframes dropDownFade {
  from { opacity:0; transform:translateY(8px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.dropdown-menu-custom .dropdown-item {
  border-radius: 8px;
  padding: 9px 14px !important;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body) !important;
  transition: var(--t);
}
.dropdown-menu-custom .dropdown-item:hover {
  background: rgba(26,86,219,0.08) !important;
  color: var(--brand-blue) !important;
  padding-left: 18px !important;
}

/* Primary CTA button in nav */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
  text-decoration: none;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,219,0.45);
  color: #fff !important;
}

/* Gold CTA */
.btn-gold-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 18px rgba(233,161,38,0.35);
  text-decoration: none;
}
.btn-gold-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233,161,38,0.5);
  color: #fff !important;
}

/* Outline white */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: var(--t);
  text-decoration: none;
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Outline custom */
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-blue) !important;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(26,86,219,0.35);
  transition: var(--t);
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: var(--brand-blue);
  color: #fff !important;
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.3);
}

/* ============================================================
   HERO SECTION — ULTRA-PREMIUM
   ============================================================ */
.hero-section {
  background: var(--grad-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated mesh orbs */
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 60%);
  animation: heroOrb1 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 60%);
  animation: heroOrb2 15s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
@keyframes heroOrb1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, 50px) scale(1.15); }
}
@keyframes heroOrb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px, -40px) scale(1.1); }
}

/* Grid mesh overlay */
.hero-section .hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Additional floating dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDot 6s ease-in-out infinite alternate;
}
.hero-dot-1 { width:12px; height:12px; background:rgba(247,148,29,0.6); top:18%; left:12%; animation-delay:0s; }
.hero-dot-2 { width:7px;  height:7px;  background:rgba(59,130,246,0.7); top:65%; left:8%;  animation-delay:1s; }
.hero-dot-3 { width:10px; height:10px; background:rgba(255,255,255,0.2); top:30%; right:8%; animation-delay:2s; }
@keyframes floatDot {
  from { transform: translateY(0); }
  to   { transform: translateY(-20px); }
}

/* Text gradient helpers */
.text-gradient-gold {
  background: linear-gradient(135deg, #f7941d, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-cyan {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

/* Pill badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.35);
  color: #fbbf24;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Trust bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  margin-top: 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Glass card (right side) */
.hero-glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
  z-index: 2;
}
.hero-glass-input {
  background: rgba(255,255,255,0.1) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: var(--r-md) !important;
  padding: 11px 16px !important;
  font-size: 0.875rem !important;
  transition: var(--t) !important;
  font-family: 'Inter', sans-serif !important;
}
.hero-glass-input:focus {
  background: rgba(255,255,255,0.16) !important;
  border-color: var(--brand-gold-2) !important;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.18) !important;
  outline: none !important;
}
.hero-glass-input::placeholder { color: rgba(255,255,255,0.45) !important; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,86,219,0.08);
  border: 1px solid rgba(26,86,219,0.18);
  color: var(--brand-blue);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted-fg);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { padding: 0; }
.stats-container-card {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-3));
  border-radius: var(--r-xl);
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(5,14,39,0.35);
  position: relative;
  overflow: hidden;
  margin: -40px 0 0;
}
.stats-container-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  padding: 10px;
}
.stat-number-glow {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(247,148,29,0.4);
  margin-bottom: 6px;
}
.stat-label-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sub-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5,14,39,0.2);
}
.about-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.about-image-wrapper:hover img { transform: scale(1.04); }
.about-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(5,14,39,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(247,148,29,0.25);
  border-radius: var(--r-lg);
  padding: 14px 18px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card-premium {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.service-card-premium:hover::before { transform: scaleX(1); }

.service-card-header { padding: 28px 28px 0; }
.service-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(26,86,219,0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--t-slow);
  box-shadow: 0 4px 14px rgba(26,86,219,0.15);
}
.service-card-premium:hover .service-icon-bubble {
  background: var(--grad-blue);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
}
.service-card-body {
  padding: 14px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ============================================================
   INDUSTRY CARDS (PHOTO)
   ============================================================ */
.industry-card-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}
.industry-card-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--t-slow);
  display: block;
}
.industry-card-photo:hover img { transform: scale(1.08); }

.industry-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,14,39,0.92) 0%, rgba(5,14,39,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--t);
}
.industry-card-photo:hover .industry-card-content {
  background: linear-gradient(to top, rgba(5,14,39,0.97) 0%, rgba(5,14,39,0.6) 60%, rgba(26,86,219,0.1) 100%);
}
.industry-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.industry-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ============================================================
   PROCESS STEP CARDS
   ============================================================ */
.process-step-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.process-step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t);
}
.process-step-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.process-step-card:hover::after { transform: scaleX(1); }
.process-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}

/* ============================================================
   WHY US CARDS
   ============================================================ */
.why-card-premium {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.why-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.why-card-premium:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.why-card-premium:hover::before { transform: scaleX(1); }
.why-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(233,161,38,0.1);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--t-slow);
  box-shadow: 0 4px 14px rgba(233,161,38,0.18);
}
.why-card-premium:hover .why-icon-box {
  background: var(--grad-gold);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(233,161,38,0.4);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-premium {
  background: linear-gradient(135deg, #0a1735 0%, #1a3070 60%, #0d2060 100%);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5,14,39,0.3);
}
.cta-banner-premium::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(247,148,29,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-premium::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 65%);
  pointer-events: none;
}

/* ============================================================
   JOB CARDS
   ============================================================ */
.job-card-premium {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.job-card-premium::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-blue);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t);
}
.job-card-premium:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.job-card-premium:hover::before { transform: scaleY(1); }

.job-pass-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(26,86,219,0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(26,86,219,0.18);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-salary-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(233,161,38,0.1);
  color: #b45309;
  border: 1px solid rgba(233,161,38,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card-premium {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: all var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.testimonial-card-premium::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: 'Outfit', serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(26,86,219,0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card-premium:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.star-rating { display: flex; gap: 3px; }
.star-rating i {
  color: var(--brand-gold);
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(233,161,38,0.5));
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: linear-gradient(180deg, #080f22 0%, #050b1a 100%);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.main-footer::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  padding: 4px 0;
  transition: var(--t);
}
.footer-link:hover { color: var(--brand-gold); padding-left: 4px; }
.footer-link i { font-size: 0.7rem; transition: var(--t); }
.footer-link:hover i { color: var(--brand-gold); }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--t);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(233,161,38,0.4);
}
.footer-divider {
  border-color: rgba(255,255,255,0.07);
  margin: 40px 0 24px;
}
.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.hover-orange:hover { color: var(--brand-orange) !important; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9998;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--t-slow);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  color: #fff;
}
/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: whatsappPulse 2.2s ease-out infinite;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-animate],
[data-animate-children] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate="fade-left"]  { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }

[data-animate].visible,
[data-animate-children].visible > * {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
[data-animate-children].visible > *:nth-child(1)  { transition-delay: 0s; }
[data-animate-children].visible > *:nth-child(2)  { transition-delay: 0.08s; }
[data-animate-children].visible > *:nth-child(3)  { transition-delay: 0.16s; }
[data-animate-children].visible > *:nth-child(4)  { transition-delay: 0.24s; }
[data-animate-children].visible > *:nth-child(5)  { transition-delay: 0.32s; }
[data-animate-children].visible > *:nth-child(6)  { transition-delay: 0.40s; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-item a { color: var(--brand-blue); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--brand-gold); }
.breadcrumb-item.active { color: var(--text-muted-fg); }
.breadcrumb-item + .breadcrumb-item::before { color: #cbd5e1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-section { padding: 80px 0 60px; min-height: auto; }
  .hero-glass-card { padding: 28px 24px; margin-top: 40px; }
  .section-py { padding: 60px 0; }
  .stats-container-card { margin: 0; border-radius: var(--r-lg); padding: 36px 24px; }
  .cta-banner-premium { padding: 36px 28px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .hero-trust-bar { gap: 10px; }
  .announcement-strip { text-align: center; }
  .whatsapp-float { bottom: 20px; right: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
}
