/* ============================================================
   GLOBAL HIRE LTD — PREMIUM ENTERPRISE DESIGN SYSTEM
   Award-winning luxury recruitment website
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --primary:        #071B2F;
  --secondary:      #0F4C81;
  --gold:           #D4AF37;
  --gold-light:     #F4D77A;
  --gold-pale:      #FDF8EC;
  --gold-dark:      #A97716;
  --accent-blue:    #2D8CFF;
  --bg-white:       #FFFFFF;
  --bg-dark:        #06111D;
  --bg-section:     #F8FAFC;
  --text-dark:      #111827;
  --text-muted:     #6B7280;
  --border:         rgba(0,0,0,.06);
  --border-gold:    rgba(212,175,55,.3);
  --shadow-soft:    0 4px 24px rgba(7,27,47,.06);
  --shadow-medium:  0 12px 48px rgba(7,27,47,.10);
  --shadow-large:   0 24px 80px rgba(7,27,47,.14);
  --shadow-gold:    0 8px 32px rgba(212,175,55,.25);
  --radius-sm:      12px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-pill:    9999px;
  --font-heading:   'Space Grotesk', sans-serif;
  --font-body:      'Inter', sans-serif;
  --ease-out:       cubic-bezier(.16,1,.3,1);
  --ease-in-out:    cubic-bezier(.4,0,.2,1);
  --container:      1400px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; scroll-padding-top: 110px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 110px;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { border:none; cursor:pointer; font-family:inherit; }

/* ---- CURSOR (DISABLED FOR BETTER UX/ACCESSIBILITY) ---- */
.cursor, .cursor-follower {
  display: none !important;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(48px, 6vw, 90px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(20px, 2vw, 26px); }
h5 { font-size: 18px; }
h6 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
p  { font-size: 18px; line-height: 1.75; color: var(--text-muted); }
.lead { font-size: 20px; line-height: 1.8; }
.overline {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.overline::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}
.section-title { margin: 12px 0 20px; }
.text-gold { color: var(--gold) !important; }
.text-white { color: #fff !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; overflow-x: hidden; }
@media(max-width:768px) { .container { padding: 0 20px; } }
@media(max-width:1024px) { .container { padding: 0 30px; } }
.section { padding: 140px 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 180px 0; }
.bg-section { background: var(--bg-section); }
.bg-dark-custom { background: var(--bg-dark); }
.bg-primary-custom { background: var(--primary); }
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.bg-gold-pale { background: var(--gold-pale); }

/* ---- BUTTONS ---- */
.btn-luxury {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: .5px; white-space: nowrap;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: all .4s var(--ease-out);
}
.btn-luxury .btn-icon { transition: transform .3s var(--ease-out); }
.btn-luxury:hover .btn-icon { transform: translateX(5px); }
.btn-luxury::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .5s var(--ease-out);
}
.btn-luxury:hover::after { transform: translateX(150%) skewX(-15deg); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(212,175,55,.35); color: var(--primary); }

.btn-navy {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-medium);
}
.btn-navy:hover { background: var(--secondary); transform: translateY(-3px); color: #fff; }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; transform: translateY(-3px); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--border-gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--primary); }

.btn-lg-luxury { padding: 20px 48px; font-size: 17px; }
.btn-sm-luxury { padding: 12px 28px; font-size: 13px; }

/* Magnetic button wrapper */
.magnetic-wrap { display: inline-block; }

/* ---- TOPBAR ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: .02em;
  z-index: 1001;
}
.topbar a { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar i { font-size: 11px; }
.topbar-social a {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }

/* ---- NAVBAR ---- */
.navbar-luxury {
  position: fixed; top: 42px; left: 0; right: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: #091B2E;
  transition: all .5s var(--ease-out);
}
.navbar-luxury.scrolled {
  padding: 14px 0;
  background: #091B2E;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 40px rgba(0,0,0,.25);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; transition: transform .3s; }
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-logo-text {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: -.01em; white-space: nowrap;
}
.nav-logo-text span { color: var(--gold); font-style: italic; }

.nav-link-luxury {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 6px;
  position: relative; transition: all .25s; display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-link-luxury:hover, .nav-link-luxury.active { color: var(--gold); background: rgba(212,175,55,.08); }
.nav-link-luxury i { font-size: 9px; transition: transform .25s; }
.dropdown:hover .nav-link-luxury i { transform: rotate(180deg); }

/* Mega menu dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: rgba(7,27,47,.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 20px; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-10px);
  transition: all .3s var(--ease-out);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.nav-item.dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-sm); color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.nav-dropdown a:hover { background: rgba(212,175,55,.1); color: var(--gold); }
.nav-dropdown a i { width: 18px; color: var(--gold); font-size: 13px; }
.nav-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary) !important; font-weight: 700;
  padding: 10px 22px; border-radius: var(--radius-pill);
  transition: all .3s !important;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); background: rgba(212,175,55,.1) !important; color: var(--gold) !important; }

/* Mobile nav */
.navbar-toggler-luxury {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  width: 44px; height: 44px; border-radius: 10px;
  display: none; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; cursor: pointer; transition: all .2s;
}
.navbar-toggler-luxury:hover { background: rgba(212,175,55,.2); border-color: var(--gold); }
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: var(--bg-dark);
  z-index: 999; flex-direction: column; padding: 30px 28px;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-close { align-self: flex-end; background: none; border: 1px solid rgba(255,255,255,.2); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 16px; cursor: pointer; margin-bottom: 32px; }
.mobile-nav-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.85); font-size: 18px; font-weight: 600; font-family: var(--font-heading); }
.mobile-nav-link:hover { color: var(--gold); }

/* ---- PAGE BANNER ---- */
.page-banner {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #0a2d52 60%, var(--secondary) 100%);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.page-banner .lead { color: rgba(255,255,255,.75); max-width: 580px; }
.breadcrumb-luxury {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.breadcrumb-luxury a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb-luxury a:hover { color: var(--gold); }
.breadcrumb-luxury .sep { font-size: 9px; }
.breadcrumb-luxury .current { color: var(--gold); font-weight: 600; }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--primary); padding: 0; }
.stats-grid-luxury {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat-item-luxury {
  padding: 52px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; transition: background .3s;
}
.stat-item-luxury:hover { background: rgba(212,175,55,.05); }
.stat-item-luxury .stat-icon { font-size: 24px; color: var(--gold); margin-bottom: 16px; opacity: .7; }
.stat-item-luxury .stat-num {
  font-family: var(--font-heading); font-size: clamp(36px,4vw,56px);
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-item-luxury .stat-label { font-size: 14px; color: rgba(255,255,255,.55); }

/* ---- HERO ---- */
.hero-luxury {
  height: 100vh; min-height: 700px; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0d2d52 50%, var(--bg-dark) 100%);
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,27,47,.9) 0%, rgba(6,17,29,.7) 100%);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.hero-particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: .08;
  animation: floatParticle linear infinite;
}
.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius-pill); padding: 8px 20px; margin-bottom: 28px;
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
}
.hero-eyebrow i { font-size: 10px; }
.hero-luxury h1 { color: #fff; margin-bottom: 24px; font-size: clamp(42px, 6vw, 72px); }
.hero-luxury h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-subtitle { color: rgba(255,255,255,.72); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.75; max-width: 560px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 60px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 13px; }
.hero-trust-item i { color: var(--gold); font-size: 14px; }

/* Hero floating cards */
.hero-float-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 20px 24px; animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -2s; }
.hero-float-card:nth-child(3) { animation-delay: -4s; }

/* Scroll indicator - DISABLED */
.scroll-indicator {
  display: none !important;
}
@keyframes floatParticle { 0%{transform:translateY(100vh) rotate(0)} 100%{transform:translateY(-100px) rotate(360deg)} }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---- CTA SECTION ---- */
.cta-luxury {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-luxury::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* ---- CARDS ---- */
.luxury-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: all .5s var(--ease-out); position: relative; overflow: hidden;
}
.luxury-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.luxury-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-large); border-color: var(--border-gold); }
.luxury-card:hover::before { transform: scaleX(1); }
.card-icon-wrap {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 28px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid var(--border-gold);
  transition: all .4s var(--ease-out);
}
.luxury-card:hover .card-icon-wrap { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.luxury-card:hover .card-icon-wrap i { color: var(--primary) !important; transform: rotate(10deg) scale(1.1); }
.card-icon-wrap i { transition: all .4s var(--ease-out); }
.luxury-card h4 { color: var(--primary); margin-bottom: 14px; font-size: 20px; }
.luxury-card p { font-size: 15px; line-height: 1.75; margin: 0; }

/* Industry Cards */
.industry-card-luxury {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  height: 320px; cursor: pointer; transition: all .5s var(--ease-out);
}
.industry-card-luxury:hover { transform: translateY(-8px); box-shadow: var(--shadow-large); }
.industry-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out);
}
.industry-card-luxury:hover .industry-card-img { transform: scale(1.08); }
.industry-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,27,47,.92) 0%, rgba(7,27,47,.3) 60%, transparent 100%);
  transition: background .5s;
}
.industry-card-luxury:hover .industry-card-overlay { background: linear-gradient(to top, rgba(7,27,47,.97) 0%, rgba(7,27,47,.6) 70%, rgba(7,27,47,.2) 100%); }
.industry-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; }
.industry-card-icon { font-size: 28px; color: var(--gold); margin-bottom: 12px; display: block; }
.industry-card-content h4 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.industry-card-content p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; margin: 0; max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out), opacity .5s; opacity: 0; }
.industry-card-luxury:hover .industry-card-content p { max-height: 80px; opacity: 1; }
.industry-card-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 14px; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease-out); }
.industry-card-luxury:hover .industry-card-arrow { opacity: 1; transform: translateY(0); }

/* Job Cards */
.job-card-luxury {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 32px; transition: all .4s var(--ease-out);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.job-card-luxury:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); border-color: var(--border-gold); }
.job-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.badge-urgent { background: rgba(239,68,68,.1); color: #DC2626; }
.badge-open { background: rgba(16,185,129,.1); color: #059669; }
.badge-featured { background: var(--gold-pale); color: var(--gold-dark); }
.job-meta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; font-size: 13.5px; color: var(--text-muted); }
.job-meta-row span { display: flex; align-items: center; gap: 6px; }
.job-salary { font-size: 15px; font-weight: 700; color: var(--primary); }

/* ---- PROCESS SECTION ---- */
.process-step-luxury {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.process-step-luxury:last-child { border-bottom: none; }
.process-step-luxury:hover { padding-left: 12px; }
.process-num {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--gold); flex-shrink: 0; transition: all .3s;
}
.process-step-luxury:hover .process-num { background: var(--gold); color: var(--primary); }
.process-step-luxury h5 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.process-step-luxury p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---- TESTIMONIALS ---- */
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px 40px; transition: all .4s var(--ease-out); position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 24px; right: 32px;
  font-family: var(--font-heading); font-size: 80px; color: var(--gold); opacity: .12;
  line-height: 1; font-style: italic;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-large); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-text { font-size: 16px; line-height: 1.85; color: var(--text-muted); font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; color: rgba(255,255,255,.5); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--primary); margin-bottom: 3px; }
.testi-role { font-size: 13px; color: var(--text-muted); }

/* ---- TIMELINE ---- */
.timeline-luxury { position: relative; padding-left: 48px; }
.timeline-luxury::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,.1));
}
.tl-entry { position: relative; padding-bottom: 52px; }
.tl-dot {
  position: absolute; left: -38px; top: 4px;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700; color: var(--primary);
  box-shadow: 0 0 0 5px rgba(212,175,55,.15); z-index: 1;
}
.tl-year { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.tl-entry h5 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.tl-entry p { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---- FORMS ---- */
.luxury-input {
  width: 100%; padding: 15px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  color: #fff; font-family: var(--font-body); font-size: 15px;
  transition: all .3s;
}
.luxury-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.luxury-input::placeholder { color: rgba(255,255,255,.35); }
.luxury-input option { color: var(--primary); background: #fff; }
.form-label-luxury {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 8px;
}

/* Light form */
.form-light .luxury-input { background: #fff; border-color: var(--border); color: var(--primary); }
.form-light .luxury-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.1); }
.form-light .luxury-input::placeholder { color: var(--text-muted); }
.form-light .form-label-luxury { color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-luxury { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item-luxury { border-bottom: 1px solid var(--border); }
.faq-item-luxury:last-child { border-bottom: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 32px; cursor: pointer; gap: 20px; transition: background .2s;
}
.faq-question:hover { background: var(--bg-section); }
.faq-question h5 { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--primary); flex: 1; margin: 0; }
.faq-num { font-family: var(--font-heading); font-size: 12px; color: var(--text-muted); min-width: 28px; }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-section); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--primary); flex-shrink: 0; transition: all .3s; }
.faq-item-luxury.open .faq-toggle { background: var(--gold); border-color: var(--gold); color: var(--primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-answer-inner { padding: 0 32px 28px 60px; font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ---- FOOTER ---- */
.footer-luxury { background: var(--bg-dark); color: rgba(255,255,255,.65); padding: 100px 0 0; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand-logo { height: 48px; width: auto; object-fit: contain; }
.footer-brand-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand-name span { color: var(--gold); font-style: italic; }
.footer-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.5); max-width: 320px; margin-bottom: 24px; }
.footer-col-title { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; font-size: 11px; opacity: .4; transition: opacity .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-contact-item i { color: var(--gold); width: 16px; margin-top: 3px; flex-shrink: 0; }
.cert-pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(212,175,55,.3); border-radius: var(--radius-pill); padding: 6px 14px; font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .05em; margin: 3px; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.6); transition: all .25s; margin: 3px; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; margin-top: 80px; }
.footer-bottom-bar p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold); }

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary); border-radius: 50%; display: none;
  align-items: center; justify-content: center; font-size: 16px;
  cursor: pointer; z-index: 999; box-shadow: var(--shadow-gold);
  transition: all .3s var(--ease-out);
}
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(212,175,55,.4); }
#back-to-top.visible { display: flex; }

/* ---- SECTION EFFECTS ---- */
.gold-divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0; }
.gold-divider.center { margin-left: auto; margin-right: auto; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale); border: 1px solid var(--border-gold); border-radius: var(--radius-pill); padding: 6px 16px; font-size: 12px; font-weight: 600; color: var(--gold-dark); letter-spacing: .06em; margin-bottom: 20px; }
.highlight-card { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-xl); padding: 60px; position: relative; overflow: hidden; }
.highlight-card::before { content: ''; position: absolute; top: -40%; right: -20%; width: 60%; height: 160%; background: radial-gradient(ellipse, rgba(212,175,55,.15) 0%, transparent 65%); }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-20px) scale(1.1)} 66%{transform:translate(-20px,15px) scale(.95)} }

/* Animated number */
.anim-number { font-family: var(--font-heading); font-weight: 700; }

/* Trusted logos */
.logo-track { display: flex; align-items: center; gap: 60px; }
.partner-logo { opacity: .45; transition: opacity .3s; filter: grayscale(100%); }
.partner-logo:hover { opacity: 1; filter: none; }

/* Newsletter */
.newsletter-wrap { display: flex; gap: 0; max-width: 500px; }
.newsletter-wrap input { flex: 1; padding: 14px 20px; border-radius: var(--radius-pill) 0 0 var(--radius-pill); border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-body); font-size: 15px; }
.newsletter-wrap input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-wrap input:focus { outline: none; border-color: var(--gold); }
.newsletter-wrap button { padding: 14px 28px; background: var(--gold); color: var(--primary); font-weight: 700; border-radius: 0 var(--radius-pill) var(--radius-pill) 0; font-size: 14px; transition: all .3s; }
.newsletter-wrap button:hover { background: var(--gold-light); }

/* Country table */
.country-row-luxury {
  display: grid; grid-template-columns: 64px 1.2fr 150px 2fr; gap: 20px;
  padding: 20px 28px; align-items: center; border-bottom: 1px solid var(--border);
  transition: background .2s; cursor: pointer;
}
.country-row-luxury:hover { background: var(--gold-pale); }
.country-code { font-family: var(--font-heading); font-size: 13px; color: var(--gold-dark); background: var(--gold-pale); border: 1px solid var(--border-gold); border-radius: var(--radius-sm); padding: 6px 10px; text-align: center; font-weight: 700; }
.country-name { font-weight: 700; color: var(--primary); font-size: 16px; }
.country-region { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: .05em; }
.country-desc { font-size: 14px; color: var(--text-muted); }

/* ---- CTA SECTION ---- */
.cta-luxury {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-luxury::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Force all text inside cta-luxury to be white regardless of theme */
.cta-luxury h2,
.cta-luxury h3,
.cta-luxury p,
.cta-luxury .lead { color: #fff !important; }
.cta-luxury .lead { opacity: .92; }

/* ---- PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2d52 60%, var(--secondary) 100%);
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-banner-subtitle {
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb-luxury {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb-luxury a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb-luxury a:hover { color: var(--gold); }
.breadcrumb-luxury .active { color: var(--gold); font-weight: 600; }
.breadcrumb-luxury li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-luxury li:not(:last-child)::after { content: '/'; opacity: .4; }

/* ---- GLASS CARDS ---- */
.glass-card-luxury {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.glass-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
  border-color: var(--border-gold);
}
/* On dark backgrounds use translucent glass effect */
.bg-navy .glass-card-luxury,
.bg-navy-light .glass-card-luxury {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bg-navy .glass-card-luxury h4,
.bg-navy .glass-card-luxury h5,
.bg-navy-light .glass-card-luxury h4,
.bg-navy-light .glass-card-luxury h5 { color: #fff; }
.bg-navy .glass-card-luxury p,
.bg-navy-light .glass-card-luxury p { color: rgba(255,255,255,.7); }

/* ---- SECTION VARIANTS ---- */
.section-luxury { padding: 120px 0; }
.bg-navy { background: var(--primary); }
.bg-navy-light { background: #0a2240; }

/* ---- SECTION TYPOGRAPHY ---- */
.section-title-luxury {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.bg-navy .section-title-luxury,
.bg-navy-light .section-title-luxury { color: #fff; }
.lead-text-luxury {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
}
.bg-navy .lead-text-luxury,
.bg-navy-light .lead-text-luxury { color: rgba(255,255,255,.7); }
.section-subtitle-luxury {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}
.luxury-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.bg-navy .luxury-eyebrow,
.bg-navy-light .luxury-eyebrow {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.3);
  color: var(--gold);
}

/* ---- FEATURE ICONS ---- */
.feature-icon-luxury {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  flex-shrink: 0;
  transition: all .4s var(--ease-out);
}
.feature-icon-luxury:hover { transform: scale(1.1) rotate(5deg); }
.feature-icon-luxury-large {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold-dark);
  transition: all .4s var(--ease-out);
}
.bg-navy .feature-icon-luxury-large,
.bg-navy-light .feature-icon-luxury-large {
  background: rgba(212,175,55,.1);
  border-color: rgba(212,175,55,.2);
  color: var(--gold);
}
.glass-card-luxury:hover .feature-icon-luxury-large {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  border-color: var(--gold);
}

/* ---- STAT NUMBERS ---- */
.stat-number-luxury {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-label-luxury {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---- FORMS: form-control-luxury ---- */
.form-control-luxury {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all .3s;
  -webkit-appearance: none;
}
.form-control-luxury:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
  background: #fff;
}
.form-control-luxury::placeholder { color: var(--text-muted); opacity: .7; }
.form-control-luxury option { color: var(--text-dark); }
textarea.form-control-luxury { resize: vertical; min-height: 120px; }
.form-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

/* ---- FILTER BUTTONS (jobs.html) ---- */
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}

/* ---- BADGE GOLD ---- */
.badge.bg-gold { background: var(--gold) !important; }
.badge.bg-gold.text-dark { color: var(--primary) !important; }

/* ---- PROCESS STEPS (light bg variant) ---- */
.section-luxury .process-step-luxury h5 { color: var(--primary); }
.section-luxury .process-step-luxury p { color: var(--text-muted); }
.section-luxury .process-step-luxury { border-bottom-color: var(--border); }
.bg-navy-light .process-step-luxury h5,
.bg-navy .process-step-luxury h5 { color: #fff; }
.bg-navy-light .process-step-luxury p,
.bg-navy .process-step-luxury p { color: rgba(255,255,255,.65); }

/* ---- REQUIREMENT FORM (employers.html) ---- */
.requirement-form .form-control-luxury,
.contact-form .form-control-luxury,
.registration-form .form-control-luxury {
  background: #f8fafc;
  border-color: rgba(0,0,0,.1);
}
.requirement-form .form-control-luxury:focus,
.contact-form .form-control-luxury:focus,
.registration-form .form-control-luxury:focus {
  background: #fff;
  border-color: var(--gold);
}

/* ---- INDUSTRIES PAGE IMAGES ---- */
.industry-detail-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ---- CONTACT PAGE ---- */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  transition: all .3s;
}
.contact-info-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-soft);
}
.contact-info-card h5 { color: var(--gold); margin-bottom: 12px; }

/* ---- MISC HELPERS ---- */
.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gold) !important; }
.border-gold { border-color: var(--border-gold) !important; }
.rounded-luxury { border-radius: var(--radius-lg) !important; }

/* ================================================================
   RESPONSIVE — MOBILE FIRST
   ================================================================ */
@media(max-width:1200px) {
  .nav-link-luxury { font-size: 13px; padding: 6px 10px; }
  .nav-logo-text { font-size: 18px; }
  .section-luxury { padding: 80px 0; }
  .cta-luxury { padding: 80px 0; }
}

@media(max-width:992px) {
  .navbar-toggler-luxury { display: flex; }
  #main-nav-links { display: none !important; }
  .page-banner { padding: 160px 0 80px; }
  .section { padding: 80px 0; }
  .section-luxury { padding: 64px 0; }
  .cta-luxury { padding: 64px 0; }
  .nav-logo-img { height: 40px; }
  .nav-logo-text { font-size: 16px; }
  .stat-number-luxury { font-size: 48px; }

  /* Industries: reset order on tablet so image doesn't jump */
  .col-lg-6.order-lg-1,
  .col-lg-6.order-lg-2 { order: 0 !important; }
}

@media(max-width:768px) {
  body { padding-top: 90px; }
  .topbar { display: none !important; }
  .navbar-luxury { top: 0; }
  html { scroll-padding-top: 90px; }

  .section { padding: 60px 0; }
  .section-luxury { padding: 52px 0; }
  .cta-luxury { padding: 52px 0; }
  .footer-luxury { padding: 60px 0 0; }

  /* Page banner */
  .page-banner { padding: 130px 0 60px; }
  .page-banner-title { font-size: 34px; }
  .page-banner-subtitle { font-size: 15px; }

  /* Hero */
  .hero-luxury { height: auto; min-height: 100vh; padding: 130px 0 70px; }
  .hero-headline { font-size: 40px !important; line-height: 1.15 !important; }
  .hero-subtitle { font-size: 15px !important; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-luxury,
  .hero-actions a { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid-luxury { grid-template-columns: 1fr 1fr; }
  .stat-item-luxury { padding: 32px 16px; }
  .stat-number-luxury { font-size: 40px; }

  /* Cards */
  .glass-card-luxury { border-radius: var(--radius-md); }
  .luxury-card { padding: 28px 22px; border-radius: var(--radius-md); }
  .testi-card { padding: 32px 24px; }

  /* Industry detail images — no fixed height on mobile */
  .industry-detail-img,
  .col-lg-6 img[style*="height: 400px"],
  .col-lg-6 img[style*="height: 500px"] {
    height: 240px !important;
  }

  /* Process steps */
  .process-step-luxury { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 0; }
  .process-num { width: 44px; height: 44px; font-size: 12px; }

  /* Forms */
  .glass-card-luxury.p-5 { padding: 28px 22px !important; }
  .form-control-luxury { padding: 12px 14px; font-size: 14px; }
  .filter-btn { padding: 8px 16px; font-size: 12px; }

  /* Jobs filter wrap — allow wrapping */
  .d-flex.flex-wrap.gap-3.justify-content-center.align-items-center { gap: 8px !important; }

  /* Footer */
  .footer-bottom-bar { margin-top: 40px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }

  /* CTA */
  .cta-luxury .d-flex.flex-wrap.gap-3 { flex-direction: column; align-items: center; }
  .cta-luxury .btn-luxury { width: 100%; max-width: 320px; justify-content: center; }

  /* Process col stacking */
  .col-lg-6.order-lg-1,
  .col-lg-6.order-lg-2 { order: 0 !important; }

  /* Country row */
  .country-row-luxury { grid-template-columns: 1fr; }
}

@media(max-width:576px) {
  body { padding-top: 90px; }
  .container { padding: 0 16px; }

  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h5 { font-size: 16px; }
  p { font-size: 15px; }
  .lead { font-size: 15px; }
  .display-4 { font-size: 26px !important; }

  .section { padding: 48px 0; }
  .section-luxury { padding: 44px 0; }
  .cta-luxury { padding: 44px 0; }
  .page-banner { padding: 110px 0 48px; }
  .page-banner-title { font-size: 28px; }
  .page-banner-subtitle { font-size: 14px; }

  /* Headings in sections */
  .section-title-luxury { font-size: 26px; }
  .hero-headline { font-size: 32px !important; }

  /* Stats */
  .stats-grid-luxury { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-number-luxury { font-size: 36px; }
  .stat-label-luxury { font-size: 12px; }

  /* Cards */
  .luxury-card { padding: 24px 18px; }
  .glass-card-luxury.p-4 { padding: 20px 16px !important; }
  .glass-card-luxury.p-5 { padding: 22px 18px !important; }

  /* Buttons */
  .btn-luxury { padding: 13px 24px; font-size: 14px; gap: 8px; }
  .btn-lg-luxury,
  .btn-lg { padding: 14px 28px !important; font-size: 14px !important; }
  .btn-sm-luxury { padding: 10px 20px; font-size: 13px; }

  /* Job cards stacked layout */
  .job-card-luxury {
    flex-direction: column;
    padding: 20px 18px;
    gap: 16px;
  }
  .job-card-luxury .d-flex.flex-column.align-items-end { align-items: flex-start !important; flex-direction: row !important; gap: 12px; }

  /* Images */
  .industry-detail-img,
  .col-lg-6 img[style*="height"],
  .col-lg-6 img { height: 200px !important; }

  /* Forms */
  .form-control-luxury { font-size: 16px; } /* Prevent zoom on iOS */
  .requirement-form .row .col-md-6 { margin-bottom: 0; }

  /* File input */
  input[type="file"].form-control-luxury { padding: 10px 12px; }

  /* Footer */
  .footer-luxury { padding: 44px 0 0; }
  .footer-brand-name { font-size: 18px; }
  .footer-col-title { margin-bottom: 16px; }
  .footer-bottom-bar { margin-top: 32px; padding: 20px 0; }
  .footer-bottom-bar .d-flex { flex-direction: column; gap: 8px !important; text-align: center; }
  .footer-legal-links { justify-content: center; }

  /* Process steps */
  .process-step-luxury { grid-template-columns: 44px 1fr; gap: 12px; padding: 20px 0; }

  /* FAQ */
  .faq-question { padding: 18px 20px; gap: 12px; }
  .faq-answer-inner { padding: 0 20px 20px 20px; }

  /* Navbar mobile */
  .navbar-luxury { padding: 12px 0; }
  .nav-logo-img { height: 36px; }
  .nav-logo-text { font-size: 15px; }

  /* CTA section */
  .cta-luxury { text-align: center; }
  .cta-luxury .display-4 { font-size: 24px !important; }
  .cta-luxury .lead { font-size: 14px !important; }

  /* Contact cards */
  .glass-card-luxury.p-4.mb-4 { margin-bottom: 12px !important; }

  /* Industries: list items font */
  .list-unstyled li { font-size: 14px; }

  /* Jobs filter */
  .filter-btn { padding: 7px 14px; font-size: 12px; }

  /* Back to top */
  #back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 1100;
  flex-direction: column;
  padding: 24px 28px 40px;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--gold); }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 28px;
  transition: all .2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.1); }

/* ---- MOBILE SUB MENUS ---- */
.mobile-sub-menu { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.mobile-sub-menu a {
  display: block;
  padding: 10px 0 10px 24px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-sub-menu a:hover { color: var(--gold); }

  .stats-grid-luxury { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:1200px) {
  .nav-link-luxury { font-size: 13px; padding: 6px 10px; }
  .nav-logo-text { font-size: 18px; }
}
@media(max-width:992px) {
  .navbar-toggler-luxury { display: flex; }
  #main-nav-links { display: none; }
  .page-banner { padding: 160px 0 80px; }
  .section { padding: 100px 0; }
  .nav-logo-img { height: 40px; }
  .nav-logo-text { font-size: 16px; }
}
@media(max-width:768px) {
  body { padding-top: 90px; }
  .topbar { display: none !important; }
  .navbar-luxury { top: 0; }
  .section { padding: 72px 0; }
  .section-luxury { padding: 60px 0; }
  .cta-luxury { padding: 60px 0; }
  .hero-luxury { height: auto; min-height: 100vh; padding: 140px 0 80px; }
  .stats-grid-luxury { grid-template-columns: 1fr 1fr; }
  .stat-item-luxury { padding: 36px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-luxury { width: 100%; justify-content: center; }
  .country-row-luxury { grid-template-columns: 1fr; }
  .page-banner { padding: 140px 0 60px; }
  .page-banner h1 { font-size: 38px; }
  .hero-headline { font-size: 42px !important; }
  .display-4 { font-size: 32px !important; }
  .lead { font-size: 16px; }
}
@media(max-width:768px) {
  .section { padding: 72px 0; }
  .hero-luxury { height: auto; min-height: 100vh; padding: 140px 0 80px; }
  .stats-grid-luxury { grid-template-columns: 1fr 1fr; }
  .stat-item-luxury { padding: 36px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-luxury { width: 100%; justify-content: center; }
  .country-row-luxury { grid-template-columns: 1fr; }
}
@media(max-width:576px) {
  body { padding-top: 90px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .stats-grid-luxury { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .section-luxury { padding: 50px 0; }
  .cta-luxury { padding: 50px 0; }
  .page-banner { padding: 120px 0 50px; }
  .page-banner h1 { font-size: 32px; }
  .page-banner-subtitle { font-size: 15px; }
  .display-4 { font-size: 28px !important; }
  .lead { font-size: 15px; }
  .btn-luxury { padding: 14px 28px; font-size: 14px; }
  .btn-lg { padding: 16px 32px !important; font-size: 15px !important; }
  .luxury-card { padding: 28px 24px; }
  .glass-card-luxury { padding: 24px 20px !important; }
  .container { padding: 0 16px; }
  .hero-headline { font-size: 36px !important; }
  .hero-subtitle { font-size: 15px !important; }
}
