/* ============================================
   JOB EXPERTS CONSULTANCY — MAIN STYLESHEET
   ============================================ */

/* === GOOGLE ONE TAP: USER TYPE MODAL === */
.onetap-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,20,50,0.6); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 16px;
}
.onetap-modal-card {
  background: #fff; border-radius: 18px; max-width: 420px; width: 100%;
  padding: 32px 28px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.onetap-modal-logo img { height: 44px; margin-bottom: 16px; }
.onetap-modal-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--navy); margin: 0 0 6px; }
.onetap-modal-card p { color: var(--gray); font-size: 13.5px; margin: 0 0 22px; }
.onetap-type-btns { display: flex; flex-direction: column; gap: 12px; }
.onetap-type-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px; border-radius: 12px; border: 1.5px solid var(--light-gray);
  background: #fff; cursor: pointer; transition: all 0.2s;
}
.onetap-type-btn:hover { border-color: var(--gold); background: #fffdf7; }
.onetap-type-btn strong { font-size: 14.5px; color: var(--navy); }
.onetap-type-btn span { font-size: 12px; color: var(--gray); }
.onetap-btn-candidate svg { color: #1d4ed8; }
.onetap-btn-employer svg { color: var(--gold); }
.onetap-modal-cancel {
  margin-top: 16px; background: none; border: none; color: var(--gray);
  font-size: 13px; cursor: pointer; text-decoration: underline;
}

/* === CSS VARIABLES === */
:root {
  --navy: #1B2A6B;
  --navy-dark: #0D1B4B;
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --dark-text: #1A1A2E;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
  --green: #25D366;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CONTAINER === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* CSS-only fallback: auto-hide after 0.8s even without JS */
  animation: loaderAutoHide 0.4s ease 0.8s forwards;
}
@keyframes loaderAutoHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
#page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
.loader-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-logo { width: 100px; height: 100px; object-fit: contain; border-radius: 12px; }
.loader-spinner {
  width: 80px; height: 80px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 3px solid var(--light-gray);
  border-top-color: var(--navy);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ============================================
   FLOATING BUBBLES
   ============================================ */
.bubbles-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatBubble linear infinite;
}
@keyframes floatBubble {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}
.bubble-1  { left: 5%;  width: 30px; height: 30px; background: rgba(27,42,107,0.05);  animation-duration: 18s; animation-delay: 0s; }
.bubble-2  { left: 15%; width: 20px; height: 20px; background: rgba(201,168,76,0.05); animation-duration: 22s; animation-delay: 2s; }
.bubble-3  { left: 25%; width: 50px; height: 50px; background: rgba(27,42,107,0.04);  animation-duration: 26s; animation-delay: 4s; }
.bubble-4  { left: 40%; width: 25px; height: 25px; background: rgba(201,168,76,0.06); animation-duration: 20s; animation-delay: 1s; }
.bubble-5  { left: 55%; width: 40px; height: 40px; background: rgba(27,42,107,0.05);  animation-duration: 24s; animation-delay: 6s; }
.bubble-6  { left: 65%; width: 35px; height: 35px; background: rgba(201,168,76,0.04); animation-duration: 19s; animation-delay: 3s; }
.bubble-7  { left: 75%; width: 60px; height: 60px; background: rgba(27,42,107,0.03);  animation-duration: 28s; animation-delay: 8s; }
.bubble-8  { left: 85%; width: 22px; height: 22px; background: rgba(201,168,76,0.05); animation-duration: 23s; animation-delay: 5s; }
.bubble-9  { left: 90%; width: 45px; height: 45px; background: rgba(27,42,107,0.04);  animation-duration: 30s; animation-delay: 10s; }
.bubble-10 { left: 50%; width: 18px; height: 18px; background: rgba(201,168,76,0.06); animation-duration: 17s; animation-delay: 7s; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy) 50%, var(--navy-dark));
  background-size: 200% 100%;
  animation: slideDown 0.6s ease forwards, topBarShift 12s ease infinite;
  color: var(--white);
  height: 40px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.top-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  height: 1px; top: auto; bottom: 0;
  background-size: 60% 100%;
  background-repeat: no-repeat;
  animation: topGlint 6s linear infinite;
  pointer-events: none;
}
@keyframes topGlint { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes topBarShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a, .top-bar-right a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: var(--font-accent);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--gold); transform: translateY(-1px); }
.top-bar-right { display: flex; gap: 12px; align-items: center; }
.top-bar-right a { width: 26px; height: 26px; border-radius: 50%; justify-content: center; background: rgba(255,255,255,0.08); }
.top-bar-right a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px) rotate(8deg); }

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  z-index: 99;
  transition: var(--transition);
  padding: 14px 0;
  animation: headerDropIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes headerDropIn { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
.main-header::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 4s linear infinite;
  opacity: 0.8;
}
@keyframes shimmerLine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.main-header.scrolled {
  padding: 6px 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 30px rgba(13,27,75,0.12);
}
.header-inner { display: flex; align-items: center; gap: 32px; }
.logo-link { flex-shrink: 0; display: block; transition: var(--transition); position: relative; }
.logo-link::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 70px; height: 70px;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(circle, rgba(201,168,76,0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}
.logo-link:hover { transform: scale(1.04); }
.logo-link:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
.header-logo { height: 56px; width: auto; object-fit: contain; transition: var(--transition); animation: logoPop 0.7s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes logoPop { from { opacity: 0; transform: scale(0.7) rotate(-6deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
.main-header.scrolled .header-logo { height: 44px; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: navLinkIn 0.35s ease forwards;
}
.nav-link:nth-child(1) { animation-delay: 0.05s; }
.nav-link:nth-child(2) { animation-delay: 0.09s; }
.nav-link:nth-child(3) { animation-delay: 0.13s; }
.nav-link:nth-child(4) { animation-delay: 0.17s; }
.nav-link:nth-child(5) { animation-delay: 0.21s; }
.nav-link:nth-child(6) { animation-delay: 0.25s; }
@keyframes navLinkIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.nav-link::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 32px); }
.nav-link:hover::before, .nav-link.active::before { opacity: 1; transform: scale(1); }
.nav-link:hover, .nav-link.active { color: var(--gold); transform: translateY(-2px); }
/* Header actions wrapper (Sign In + CTA) */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0; }
/* header notification / message icon buttons */
.hdr-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  color: #4b5563; background: #f3f4f6;
  text-decoration: none; transition: all .15s; position: relative; flex-shrink: 0;
}
.hdr-icon-btn:hover { background: #e5e7eb; color: var(--navy); }
.hdr-icon-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; background: #ef4444; color: white;
  font-size: 9.5px; font-weight: 700; line-height: 16px; text-align: center;
  border: 2px solid white; box-sizing: content-box;
}
.header-signin-link {
  font-size: 14px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  padding: 7px 14px; border-radius: 8px;
  border: 1.5px solid #d1d5db;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.header-signin-link:hover { border-color: var(--navy); background: #f4f5fb; }
.header-cta { margin-left: 0; position: relative; overflow: hidden; opacity: 0; animation: navLinkIn 0.35s ease forwards; animation-delay: 0.3s; }
.header-cta::before {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.header-cta:hover::before { left: 130%; }
.header-cta { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); animation: navLinkIn 0.6s ease forwards, ctaPulse 2.6s ease-in-out 1.3s infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b8923f; border-color: #b8923f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-whatsapp { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-icon-only { padding: 10px 12px; min-width: unset; gap: 0; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 90px 0; position: relative; z-index: 1; }
.section-light { background: var(--light-bg); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 40px 32px 36px;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('../images/section-bg.jpg');
  background-size: cover;
  background-position: center;
}
.section-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  z-index: 0;
}
.section-title > * { position: relative; z-index: 1; }
.section-title.white::before { background: rgba(15,23,60,0.82); }
.section-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--dark-text);
  line-height: 1.2;
}
.section-title.white h2, .section-title.white .section-label { color: var(--white); }
.section-title.white .section-label { color: var(--gold); }
.section-title p { margin-top: 16px; color: var(--gray); font-size: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-title.white p { color: rgba(255,255,255,0.75); }

/* ============================================
   TITLE SECTION (Inner Pages)
   ============================================ */
.page-title-section {
  height: 320px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.page-title-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(1px) brightness(0.6);
  transform: scale(1.05);
}
.page-title-overlay {
  position: absolute; inset: 0;
  background: rgba(27,42,107,0.45);
}
.page-title-content {
  position: relative; z-index: 2;
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.page-title-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); font-family: var(--font-accent); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Falling dots */
.falling-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: dotFall linear infinite;
  pointer-events: none;
}
.falling-dot.gold { background: rgba(201,168,76,0.6); }
.falling-dot.white { background: rgba(255,255,255,0.4); }
@keyframes dotFall {
  0% { transform: translateY(-20px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(340px); opacity: 0; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1229 0%, #1B2A6B 60%, #2a3f8f 100%);
  background-size: 220% 220%;
  animation: heroGradientShift 16s ease infinite;
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/hero-recruitment-bg.png');
  background-size: cover; background-position: center top;
  opacity: 0.42;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,18,41,0.95) 0%, rgba(10,18,41,0.7) 50%, rgba(10,18,41,0.3) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: orbFloat ease-in-out infinite;
}
.hero-orb-gold { width: 380px; height: 380px; background: rgba(201,168,76,0.25); top: -8%; right: 6%; animation-duration: 14s; }
.hero-orb-blue { width: 420px; height: 420px; background: rgba(72,101,209,0.3); bottom: -12%; left: -6%; animation-duration: 18s; animation-delay: 2s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.1); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0% { transform: translateY(10vh) translateX(0); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 110px 0 90px; }
.hero-left { max-width: 820px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-label {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 58px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-left h1 span { color: var(--gold); }
.hero-left > p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; max-width: 580px; line-height: 1.75; }
/* ── Hero Search Bar ─────────────────────────────────────────────────────── */
.hero-search-bar { margin-bottom: 28px; width: 100%; display: flex; justify-content: center; }
.hero-search-inner {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.97);
  border-radius: 50px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  max-width: 820px; width: 100%;
}
.hero-search-field {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px; flex: 1; min-width: 0;
}
.hero-search-keyword { flex: 2.2; }
.hero-search-exp    { flex: 1.6; }
.hero-search-location { flex: 1.6; }
.hero-search-icon { color: #94a3b8; flex-shrink: 0; }
.hero-search-field input,
.hero-search-field select {
  border: none; outline: none; background: transparent;
  font-size: 13.5px; color: #1e293b; width: 100%;
  font-family: var(--font-body); padding: 14px 0;
}
.hero-search-field select { cursor: pointer; }
.hero-search-field input::placeholder { color: #94a3b8; }
.hero-search-divider { width: 1px; background: #e2e8f0; align-self: stretch; margin: 10px 0; flex-shrink: 0; }
.hero-search-btn {
  background: var(--gold); color: #fff; border: none; cursor: pointer;
  padding: 0 26px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); white-space: nowrap;
  transition: background .2s;
}
.hero-search-btn:hover { background: #b8930d; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 28px; color: var(--gold); font-weight: 700; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-accent); }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); align-self: center; }

/* Hero right card */
.hero-right { display: flex; justify-content: center; }
.latest-openings-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.latest-openings-card h3 { color: var(--white); font-family: var(--font-heading); font-size: 20px; margin-bottom: 6px; }
.latest-openings-card .card-subtitle { color: var(--gold); font-size: 12px; font-family: var(--font-accent); letter-spacing: 1px; margin-bottom: 20px; }
.opening-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
  color: var(--white);
  font-size: 14px;
}
.opening-item:hover { background: rgba(201,168,76,0.15); }
.opening-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.opening-item a { color: var(--white); flex: 1; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-family: var(--font-accent);
  animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-arrow { width: 24px; height: 24px; }

/* Hero floating SVG icons */
.hero-float-icons { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero-icon {
  position: absolute;
  opacity: 0.12;
  animation: floatIcon ease-in-out infinite;
  color: var(--white);
}
@keyframes floatIcon {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* ============================================
   STATS MARQUEE
   ============================================ */
.stats-marquee-section {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  padding: 42px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.stats-marquee-wrap { overflow: hidden; }
.stats-marquee-track {
  display: flex;
  width: max-content;
  animation: statsMarqueeScroll 30s linear infinite;
}
.stats-marquee-track:hover { animation-play-state: paused; }
@keyframes statsMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}
.stats-marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.stats-marquee-icon { color: var(--gold); flex-shrink: 0; }
.stats-marquee-number { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.stats-marquee-label { font-family: var(--font-accent); font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }

/* ============================================
   SERVICES / CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; perspective: 1200px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.4s ease;
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 3;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { box-shadow: 0 30px 50px rgba(13,27,75,0.25); }
.service-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 0.5s ease, transform 0.6s ease;
  z-index: 0;
}
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,75,0.94) 10%, rgba(13,27,75,0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.service-card:hover .service-card-bg { opacity: 1; transform: scale(1); }
.service-card:hover .service-card-overlay { opacity: 1; }
.service-icon { width: 60px; height: 60px; background: var(--light-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--navy); transition: var(--transition); position: relative; z-index: 2; }
.service-card:hover .service-icon { background: var(--gold); color: var(--navy-dark); transform: translateZ(30px); }
.service-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 12px; color: var(--dark-text); position: relative; z-index: 2; transition: color 0.4s ease; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; position: relative; z-index: 2; transition: color 0.4s ease; }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-card-link-wrap { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--light-gray); position: relative; z-index: 2; transition: border-color 0.4s ease; }
.service-card:hover .service-card-link-wrap { border-top-color: rgba(255,255,255,0.2); }
.service-card-link { font-family: var(--font-accent); font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s ease, gap 0.3s ease; }
.service-card:hover .service-card-link { color: var(--gold-light); gap: 10px; }
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  /* CSS fallback: force visible after 2s even if JS is slow */
  animation: animFallback 0.55s ease 2s forwards;
}
@keyframes animFallback { to { opacity: 1; transform: translateY(0); } }
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* ============================================
   JOB CARDS
   ============================================ */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  border-top: 3px solid transparent;
  position: relative;
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--gold); }
.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.job-card-title-wrap { flex: 1; min-width: 0; }
.job-title { font-family: var(--font-heading); font-size: 17px; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
.job-company { font-size: 13px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Job detail header company row */
.job-header-company-row { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; }
.job-header-company-row h1 { font-family: var(--font-heading); font-size: clamp(22px,3vw,32px); color: var(--navy); line-height: 1.25; }
.job-tag {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 11px;
  font-family: var(--font-accent);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.job-meta-item svg { color: var(--gold); flex-shrink: 0; }
.job-desc { font-size: 13px; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.job-posted { font-size: 12px; color: var(--gray); margin-bottom: 16px; font-style: italic; }
.job-actions { display: flex; gap: 10px; }
.job-actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 14px; }

/* ============================================
   HOW IT WORKS / PROCESS
   ============================================ */
.process-section { position: relative; overflow: hidden; }
.process-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.35; }
.process-orb-1 { width: 320px; height: 320px; background: var(--gold); top: -10%; left: -5%; animation: orbFloat 16s ease-in-out infinite; }
.process-orb-2 { width: 380px; height: 380px; background: #4865D1; bottom: -15%; right: -5%; animation: orbFloat 20s ease-in-out infinite reverse; }
.process-flow { display: flex; align-items: flex-start; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; gap: 0; }
.process-step { display: flex; align-items: center; flex: 1 1 220px; min-width: 220px; }
.process-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 18px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  flex: 1;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.process-step-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.process-step-num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(201,168,76,0.4);
}
.process-step-icon {
  width: 56px; height: 56px;
  margin: 14px auto 18px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.process-step-card:hover .process-step-icon { transform: rotateY(360deg); }
.process-step h3 { color: var(--white); font-family: var(--font-heading); font-size: 17px; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 13.5px; line-height: 1.6; }
.process-connector { flex: 0 0 40px; display: flex; align-items: center; justify-content: center; align-self: center; margin-top: -10px; }
.process-connector span {
  display: block; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
  position: relative;
  animation: connectorFlow 1.5s linear infinite;
}
@keyframes connectorFlow { from { background-position: 0 0; } to { background-position: 24px 0; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%;
  padding: 0 60px;
}
.testimonial-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-inner::before {
  content: '"';
  position: absolute; top: 20px; left: 36px;
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: var(--gold); }
.testimonial-text { font-size: 18px; font-style: italic; color: var(--dark-text); line-height: 1.8; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 16px; }
.author-title { font-size: 13px; color: var(--gray); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); perspective: 1000px; }
.why-img img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.why-img video { width: 100%; height: auto; object-fit: contain; display: block; transition: transform 0.6s ease; background: #000; }
.why-img:hover img,
.why-img:hover video { transform: scale(1.04); }
.why-content h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 24px; color: var(--dark-text); }
.why-content h2 span { color: var(--gold); }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.why-item:hover {
  background: var(--light-bg);
  transform: translateX(8px);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.why-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.4s ease, background 0.4s ease;
}
.why-item:hover .why-check { background: var(--navy); transform: rotate(360deg) scale(1.15); }
.why-item h4 { font-weight: 600; font-size: 15px; margin-bottom: 4px; transition: color 0.3s ease; }
.why-item:hover h4 { color: var(--gold); }
.why-item p { font-size: 13px; color: var(--gray); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/placement-success.jpg');
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 22px; color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.clients-marquee-wrapper {
  background: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.clients-label {
  display: block;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.marquee-track-wrap { overflow: hidden; }
.marquee-track { display: flex; animation: marqueeScroll 24s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { padding: 0 32px; display: flex; align-items: center; flex-shrink: 0; }
.client-logo { height: 50px; width: auto; filter: grayscale(1) opacity(0.6); transition: var(--transition); object-fit: contain; }
.client-logo:hover { filter: grayscale(0) opacity(1); }
.client-badge {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.55;
  white-space: nowrap;
  padding: 10px 22px;
  border: 1px solid rgba(27,42,107,0.18);
  border-radius: 30px;
  transition: var(--transition);
}
.client-badge:hover { opacity: 1; color: var(--gold); border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ============================================
   FINAL CTA / EXPLORE SECTION
   ============================================ */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.final-cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.final-cta-orb-1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(201,168,76,0.28), transparent 70%); top: -120px; right: -80px; animation: orbFloat 9s ease-in-out infinite; }
.final-cta-orb-2 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(90,130,220,0.22), transparent 70%); bottom: -100px; left: -60px; animation: orbFloat 11s ease-in-out infinite reverse; }
.final-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.final-cta-text { max-width: 420px; }
.final-cta-text .section-label { color: var(--gold); }
.final-cta-text h2 { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 36px); color: var(--white); margin: 10px 0 12px; line-height: 1.25; }
.final-cta-text p { color: rgba(255,255,255,0.7); font-size: 15px; }
.final-cta-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; flex: 1; max-width: 560px; }
.final-cta-link {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.final-cta-link:hover { background: rgba(201,168,76,0.14); border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.final-cta-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,168,76,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.final-cta-link:hover .final-cta-icon { background: var(--gold); color: var(--navy-dark); transform: rotate(-6deg) scale(1.08); }
.final-cta-link-admin { border-style: dashed; }
.final-cta-link-admin .final-cta-icon { background: rgba(90,130,220,0.18); color: #9fb6ee; }
.final-cta-link-admin:hover { background: rgba(90,130,220,0.14); border-color: #9fb6ee; }
.final-cta-link-admin:hover .final-cta-icon { background: #9fb6ee; color: var(--navy-dark); }

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer { background: linear-gradient(160deg, var(--navy-dark) 0%, #081029 65%, #050b1c 100%); color: var(--white); padding: 90px 0 0; position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 5s linear infinite;
}
.footer-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.5; }
.footer-orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%); top: -150px; left: -100px; }
.footer-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(90,130,220,0.16), transparent 70%); bottom: 0; right: -80px; }
.footer-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-block { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 56px; width: auto; }
.footer-brand-name { font-family: var(--font-heading); font-size: 20px; color: var(--white); }
.footer-brand-tag { font-family: var(--font-accent); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.footer-newsletter { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-newsletter input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 220px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-about { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-4px) rotate(-6deg); box-shadow: 0 8px 16px rgba(201,168,76,0.35); }
.footer-heading {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  position: relative;
}
.footer-heading::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 34px; height: 1px; background: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.footer-contact-list svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-jobs li { margin-bottom: 10px; }
.footer-jobs a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-jobs a:hover { color: var(--gold); }
.footer-jobs svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); background: var(--gold-light); }

/* ============================================
   CONTACT & FORMS
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 32px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(27,42,107,0.08); display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.contact-detail h4 { font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 14px; }
.contact-detail a:hover { color: var(--gold); }
.maps-embed { border-radius: var(--radius); overflow: hidden; margin-top: 30px; }
.maps-embed iframe { width: 100%; height: 280px; border: none; display: block; }

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; font-family: var(--font-accent); margin-bottom: 8px; color: var(--dark-text); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark-text);
  transition: border-color 0.3s;
  background: var(--white);
  min-height: 44px;
}
.form-control:focus { outline: none; border-color: var(--navy); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 40px; display: none; }
.form-success .success-icon { width: 60px; height: 60px; border-radius: 50%; background: #e8f5e9; color: #388e3c; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { color: var(--dark-text); margin-bottom: 8px; }
.form-success p { color: var(--gray); }

/* ============================================
   JOB DETAIL
   ============================================ */
.job-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.job-detail-main {}
.job-header-card { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.job-header-card h1 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 12px; }
.job-info-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 24px; }
.job-info-badge { display: flex; align-items: center; gap: 6px; background: var(--light-bg); padding: 8px 14px; border-radius: 20px; font-size: 13px; color: var(--gray); }
.job-info-badge svg { color: var(--gold); }
.job-header-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.job-detail-section { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.job-detail-section h3 { font-family: var(--font-heading); font-size: 20px; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--light-bg); }
.job-detail-section p, .job-detail-section li { color: var(--gray); font-size: 15px; line-height: 1.8; }
.job-detail-section ul { padding-left: 0; }
.job-detail-section li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.job-detail-section li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 10px; flex-shrink: 0; }

.job-sidebar {}
.sidebar-apply-card { background: var(--navy); border-radius: 16px; padding: 28px; margin-bottom: 24px; color: var(--white); text-align: center; }
.sidebar-apply-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 8px; }
.sidebar-apply-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.sidebar-apply-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-text h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.about-text p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: var(--navy); border-radius: 20px; padding: 40px 32px; color: var(--white); }
.mv-card h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 16px; color: var(--gold); }
.mv-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: 16px; padding: 32px 24px; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(201,168,76,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { height: 200px; background: var(--light-bg); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 48px; color: var(--navy); background: linear-gradient(135deg, var(--light-bg), #dde3f0); }
.team-info { padding: 20px; }
.team-info h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 4px; }
.team-info p { color: var(--gold); font-size: 13px; font-family: var(--font-accent); }

/* Milestones */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--light-gray); transform: translateX(-50%); }
.timeline-item { display: flex; gap: 40px; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content { width: calc(50% - 30px); background: var(--white); padding: 24px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.timeline-year { font-family: var(--font-heading); font-size: 22px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.timeline-content h4 { font-weight: 600; margin-bottom: 6px; }
.timeline-content p { color: var(--gray); font-size: 14px; }
.timeline-dot { position: absolute; left: 50%; top: 20px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); transform: translateX(-50%); }

/* ============================================
   ADMIN FILTER / SEARCH BARS
   ============================================ */
.filter-bar { background: var(--white); padding: 20px 0; border-bottom: 1px solid var(--light-gray); position: sticky; top: 70px; z-index: 50; box-shadow: var(--shadow-sm); }
.filter-inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filter-input { flex: 2; min-width: 200px; }
.filter-select { flex: 1; min-width: 140px; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--light-gray);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ============================================
   RELATED JOBS SECTION
   ============================================ */
.related-jobs-section { padding: 60px 0; background: var(--light-bg); }

/* ============================================
   FLOATING SVG ICONS IN FORMS
   ============================================ */
.form-float-icons { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.form-icon { position: absolute; opacity: 0.06; animation: floatIcon ease-in-out infinite; color: var(--navy); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-split { grid-template-columns: 1fr; gap: 40px; }
  .why-img { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-flow { flex-direction: column; align-items: stretch; }
  .process-step { flex-direction: column; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 100px 0 60px; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; }
  .services-grid, .jobs-grid { grid-template-columns: 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 0 16px; }
  .testimonial-inner { padding: 28px; }
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
  .job-sidebar { grid-template-columns: 1fr; }
  .stats-marquee-number { font-size: 28px; }
  .stats-marquee-item { padding: 0 30px; }
  .process-step-card { padding: 30px 20px 24px; }
  .final-cta-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .final-cta-text { max-width: none; }
  .final-cta-links { grid-template-columns: 1fr; max-width: none; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-newsletter { width: 100%; }
  .footer-newsletter input { flex: 1; min-width: 0; }
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-search-inner { flex-direction: column; border-radius: 16px; overflow: visible; background: transparent; box-shadow: none; gap: 8px; }
  .hero-search-field { background: rgba(255,255,255,0.97); border-radius: 50px; padding: 0 16px; box-shadow: 0 4px 16px rgba(0,0,0,.18); }
  .hero-search-divider { display: none; }
  .hero-search-btn { border-radius: 50px; padding: 14px 28px; justify-content: center; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .job-actions { flex-direction: column; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-marquee-item { padding: 0 20px; gap: 10px; }
  .stats-marquee-number { font-size: 24px; }
  .stats-marquee-label { font-size: 11px; }
  .marquee-item { padding: 0 18px; }
  .why-item:hover { transform: translateX(4px); }
}

/* ============================================
   NAV DROPDOWN (For Employers)
   ============================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 200;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--dark-text);
  font-family: var(--font-accent);
  font-weight: 500;
  transition: var(--transition);
}
.nav-dropdown-item:hover {
  background: var(--light-bg);
  color: var(--navy);
}
.nav-dropdown-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   DUAL AUDIENCE SECTION
   ============================================ */
.dual-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.audience-card {
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.audience-candidate {
  background: var(--navy);
  color: var(--white);
}

.audience-employer {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 100%);
  color: var(--white);
  border: 2px solid var(--gold);
}

.audience-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.audience-candidate .audience-icon {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}

.audience-employer .audience-icon {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.audience-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.audience-card p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.audience-benefits {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.audience-benefits li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.audience-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   NEW BUTTON VARIANTS
   ============================================ */
.btn-navy {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-outline-on-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-on-dark:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   ADMIN FORM CONTROL
   ============================================ */
.form-control-admin {
  padding: 8px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-control-admin:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,107,0.08);
}

/* ============================================
   HEADER ICON BUTTONS (notification + messages)
   ============================================ */
.hdr-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(27,42,107,0.07);
  color: var(--dark-text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  position: relative;
  flex-shrink: 0;
}
.hdr-icon-btn:hover {
  background: var(--navy);
  color: #fff;
}
.hdr-icon-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  background: #ef4444;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(239,68,68,0.35);
}

/* ============================================
   RESPONSIVE: DUAL AUDIENCE + DROPDOWN
   ============================================ */
@media (max-width: 768px) {
  .dual-audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 36px 28px; }
  .nav-dropdown-menu { left: 0; transform: none; }
  .audience-actions { flex-direction: column; }
  .audience-actions .btn-navy,
  .audience-actions .btn-outline-on-dark,
  .audience-actions .btn-outline-gold,
  .audience-actions .btn-gold { width: 100%; justify-content: center; }
}
