/* Google Fonts loaded via high-priority preconnected link in HTML head for peak page speed performance */

/* ============================================
   TransAsia Integrate Services Ltd.
   Minimal, Professional & International Standard Styles
   Brand Alignment: Navy, White & Black (No Yellow)
   ============================================ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --navy-deep:   #0B132B;
  --navy-mid:    #1C2541;
  --navy-light:  #2E3F6F;
  --white:       #FFFFFF;
  --ice:         #F4F6FC;
  --ice-alt:     #F8FAF9;
  --silver:      #A8B4C8;
  --steel:       #6B7FA3;
  --slate-line:  #DDE3EF;
  --black:       #000000;
  
  --text-primary: #000000;
  --text-secondary: #000000;
  --text-muted: #000000;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 20px rgba(11,19,43,0.07);
  --shadow-hover: 0 8px 40px rgba(11,19,43,0.14);
  --shadow-dark-btn: 0 4px 20px rgba(0,0,0,0.15);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ice); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 99px; }

/* ─── UTILITY ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--navy-light);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.section-title em {
  font-style: normal;
  color: var(--navy-light);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
  margin-top: 16px;
}
.steel-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-light);
  vertical-align: middle;
  margin-left: 4px;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 1.5px solid var(--navy-deep);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
/* btn-gold maps to premium sleek Black Button for brand compatibility */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 1.5px solid var(--black);
}
.btn-gold:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark-btn);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy-deep);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 1.5px solid var(--navy-deep);
}
.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.arrow-icon {
  width: 16px; height: 16px;
  display: inline-flex;
  transition: transform 0.3s ease;
}
.btn-primary:hover .arrow-icon,
.btn-gold:hover .arrow-icon,
.btn-outline:hover .arrow-icon { transform: translateX(4px); }

/* ─── SITE LOADER ELITE ─────────────────────────────── */
#site-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: var(--transition-slow);
}
#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  pointer-events: none;
}
.loader-glass-panel {
  background: rgba(28, 37, 65, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 60px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-text-reveal {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.status-line {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 99px;
  margin-top: 15px;
}
.status-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  animation: loading-bar 1.5s infinite;
}
@keyframes loading-bar {
  100% { left: 100%; }
}

/* ─── HEADER / NAV ──────────────────────────────────── */
#site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1340px;
  z-index: 1000;
  transition: var(--transition);
}
.nav-pill {
  background: var(--white);
  border: 1px solid rgba(11,19,43,0.06);
  border-radius: 12px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid var(--slate-line);
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.footer-logo-img {
  height: 48px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-deep);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 99px;
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--navy-deep) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  box-shadow: 0 4px 12px rgba(11,19,43,0.15);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(88, 117, 214, 0.28) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.9;
}
.hero-glow-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(46,63,111,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-silver 2s ease infinite;
}
@keyframes pulse-silver {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.animate-word {
  background: linear-gradient(90deg, #006A4E 0%, #FFFFFF 25%, #F42A41 50%, #FFFFFF 75%, #006A4E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s linear infinite;
  font-weight: 700;
  display: inline-block;
}
@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-gold { font-size: 0.925rem; padding: 15px 32px; }
.hero-actions .btn-outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-num span { color: var(--silver); }
.hero-stat-label {
  font-size: 15px;
  color: var(--silver);
  margin-top: 4px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* ─── HERO GRAPHIC ──────────────────────────────────── */
.hero-graphic {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FUTURISTIC SOURCING CORRIDORS WIDGET ─────────────────────── */
.sourcing-corridors-widget {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(76, 201, 240, 0.04) 0%, transparent 70%);
  transform: translateY(-10px);
}

.central-hub {
  position: relative;
  z-index: 10;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-core {
  width: 80px;
  height: 80px;
  background: var(--navy-deep);
  border: 2px solid rgba(76, 201, 240, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(76, 201, 240, 0.22);
  z-index: 2;
}

.hub-title {
  font-size: 8px;
  font-weight: 800;
  color: #4CC9F0;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.hub-radar {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(76, 201, 240, 0.25);
  border-radius: 50%;
  animation: radarPulse 3s linear infinite;
  z-index: 1;
}

@keyframes radarPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* SVG Flow lines */
.corridor-svg-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.flow-line {
  fill: none;
  stroke: rgba(76, 201, 240, 0.85);
  stroke-width: 2;
  stroke-dasharray: 8, 8;
  animation: flowMotion 12s linear infinite;
  filter: drop-shadow(0 0 4px rgba(76, 201, 240, 0.95)) drop-shadow(0 0 8px rgba(76, 201, 240, 0.5));
}

@keyframes flowMotion {
  to { stroke-dashoffset: -120; }
}

/* Country Cards */
.corridor-card {
  position: absolute;
  z-index: 10;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.corridor-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(76, 201, 240, 0.45);
  background: rgba(11, 19, 43, 0.95);
  box-shadow: 0 10px 30px rgba(76, 201, 240, 0.18);
}

.card-icon {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

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

.card-info h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.card-info span {
  font-size: 15.5px;
  color: #4CC9F0;
  font-weight: 600;
}

/* Positioning of cards spacing them beautifully without overlap */
.card-korea { top: 0%; left: 50%; transform: translateX(-50%); }
.card-ksa { top: 18%; left: -5%; }
.card-kuwait { top: 48%; left: -10%; }
.card-uae { bottom: 6%; left: -5%; }
.card-qatar { top: 18%; right: -5%; }
.card-japan { top: 48%; right: -10%; }
.card-malaysia { bottom: 6%; right: -5%; }
.card-more { bottom: -55px; left: 50%; transform: translateX(-50%); }

/* Style cursor and hover state for informational nodes */
.corridor-card.no-link {
  cursor: default;
}
.corridor-card.no-link:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(76, 201, 240, 0.3);
  background: rgba(11, 19, 43, 0.9);
  box-shadow: 0 8px 24px rgba(76, 201, 240, 0.12);
}

/* Fix hover shift for horizontal center-aligned cards */
.card-korea:hover, .card-more:hover {
  transform: translate(-50%, -4px) scale(1.03) !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .sourcing-corridors-widget {
    height: 360px;
  }
  .corridor-card {
    padding: 8px 12px;
    border-radius: 12px;
  }
  .card-info h4 { font-size: 16px; }
  .card-info span { font-size: 9px; }
}


.floating-card {
  position: absolute;
  z-index: 7;
  background: rgba(28,37,65,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  white-space: nowrap;
  animation: float-y 4s ease-in-out infinite;
}
.floating-card:nth-child(odd) { animation-delay: -2s; }
.floating-card-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.floating-card-label {
  font-size: 15.5px;
  color: var(--silver);
  font-weight: 500;
  margin-top: 2px;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── MARQUEE STRIP (Sleek Minimal Black Backdrop) ───── */
.marquee-strip {
  background: var(--black);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-inner {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── CLIENTS & verified modal popup system ───────── */
#clients {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-line);
}
.clients-header {
  text-align: center;
  margin-bottom: 60px;
}
.clients-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.clients-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}
.clients-featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.client-card-elite {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client-card-elite:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}
.client-card-logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
}
.client-card-elite:hover .client-card-logo-wrap {
  filter: grayscale(0) opacity(1);
}
.client-card-logo-wrap img {
  max-height: 100%;
  object-fit: contain;
}
.client-card-name-wrap h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
}
.client-card-name-wrap span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.client-card-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 4px 8px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: var(--radius-pill);
  font-size: 15.5px;
  font-weight: 700;
  color: #16a34a;
}

/* ─── MODAL PROOF VIEWER ────────────────────────────── */
.modal-overlay-proof {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay-proof.active,
.modal-overlay-proof.open {
  opacity: 1;
  pointer-events: all;
}
.modal-proof-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 95%;
  max-width: 1200px;
  height: 86vh;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  animation: modalZoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes modalZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* .modal-proof-close removed — close button now inside viewer-header-proof as .viewer-close-btn */
.modal-proof-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 100%;
}
.modal-proof-info {
  background: var(--ice);
  padding: 40px;
  border-right: 1px solid var(--slate-line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.modal-proof-logo-wrap {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.modal-proof-logo-wrap img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.modal-proof-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.3;
}
.modal-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  color: #16a34a;
  margin-top: 14px;
  align-self: flex-start;
}
.modal-proof-meta {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.meta-label-proof {
  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.modal-proof-desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}
.modal-proof-viewer {
  display: flex;
  flex-direction: column;
  background: var(--navy-deep);
  min-width: 0;
}
.viewer-header-proof {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.viewer-header-title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viewer-actions-proof {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.viewer-actions-proof button,
.viewer-actions-proof a {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 15.5px;
  transition: var(--transition);
  text-decoration: none;
}
.viewer-actions-proof button:hover,
.viewer-actions-proof a:hover {
  background: var(--white);
  color: var(--navy-deep);
}
.viewer-close-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 80, 80, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(255,80,80,0.2);
}
.viewer-close-btn:hover {
  background: #ef4444;
  color: var(--white);
  border-color: #ef4444;
}
.viewer-body-proof {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}
.carousel-nav-btn-proof {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  z-index: 10;
  transition: var(--transition);
}
.carousel-nav-btn-proof:hover {
  background: var(--white);
  color: var(--navy-deep);
}
.carousel-nav-btn-proof.prev { left: 20px; }
.carousel-nav-btn-proof.next { right: 20px; }
.viewer-dot-proof.active {
  background: var(--white) !important;
}

/* ─── ABOUT / INTRO ─────────────────────────────────── */
#about {
  padding: 140px 0;
  background: #f8fafc; /* Premium clean slate background */
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  display: flex;
  align-items: stretch;
  height: auto;
}
.about-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 19, 43, 0.18);
  background: #000;
  aspect-ratio: 16 / 9;
  /* Force a new stacking context for hardware accelerated clipping */
  isolation: isolate;
  transform: translateZ(0);
}
.about-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/video-thumbnail.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 10;
}
.video-poster-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 43, 0.25);
  transition: background 0.3s ease;
}
.video-poster-overlay:hover::before {
  background: rgba(11, 19, 43, 0.15);
}
.video-poster-overlay .play-button {
  position: relative;
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(11, 19, 43, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.video-poster-overlay .play-button svg {
  width: 28px;
  height: 28px;
  fill: #0b132b;
  transform: translateX(2px);
  transition: all 0.3s ease;
}
.video-poster-overlay:hover .play-button {
  transform: scale(1.12);
  background: #4CC9F0;
  box-shadow: 0 12px 40px rgba(76, 201, 240, 0.5);
}
.video-poster-overlay:hover .play-button svg {
  fill: #fff;
}
.about-card-main {
  background: var(--ice);
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--navy-deep);
  border: 1px solid var(--slate-line);
  box-shadow: none;
  transition: var(--transition);
}
.about-card-main:hover {
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.about-card-main-num {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy-deep);
  background: none;
  -webkit-text-fill-color: currentColor;
  background-clip: unset;
}
.about-card-main-label {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-card-main-desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.about-card-float {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.about-card-float:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.acf-icon {
  width: 42px;
  height: 42px;
  background: var(--ice);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy-light);
  flex-shrink: 0;
}
.acf-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.acf-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.feat-item {
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(11, 19, 43, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.01);
}
.feat-item:hover {
  border-color: rgba(76, 201, 240, 0.4);
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.06);
  transform: translateY(-4px);
}
.feat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 201, 240, 0.06);
  border-radius: 12px;
  color: var(--navy-light);
  font-size: 18px;
  margin-bottom: 18px;
}
.feat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.feat-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 400;
}

/* ─── SERVICES ──────────────────────────────────────── */
#services {
  padding: 120px 0;
  background: var(--white);
}
.services-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(46,63,111,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}
.service-card.featured::before { opacity: 1; }
.service-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-card.featured .service-num { color: rgba(255,255,255,0.35); }
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon-wrap i {
  color: var(--navy-deep);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--navy-deep); }
.service-card:hover .service-icon-wrap i { color: var(--white); }
.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,0.1);
}
.service-card.featured .service-icon-wrap i {
  color: var(--white);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card.featured .service-title { color: var(--white); }
.service-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.service-card.featured .service-desc { color: rgba(255,255,255,0.6); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-light);
  margin-top: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.service-link:hover { gap: 10px; }
.service-card.featured .service-link {
  color: var(--white);
}
.service-card.featured .service-link:hover {
  color: #4CC9F0;
  gap: 10px;
}

/* ─── INDUSTRIES ────────────────────────────────────── */
#industries {
  padding: 120px 0;
  background: var(--ice);
}
.industries-header {
  text-align: center;
  margin-bottom: 64px;
}
.industries-header .section-label { justify-content: center; }
.industries-header .section-desc { margin: 0 auto; text-align: center; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
}
.industry-card:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.industry-card:hover .ind-icon,
.industry-card:hover .ind-title,
.industry-card:hover .ind-desc { color: var(--white) !important; }
.industry-card:hover .ind-count { background: rgba(255,255,255,0.1); color: var(--white); }
.ind-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}
.ind-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  transition: var(--transition);
}
.ind-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}
.ind-count {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--ice);
  font-size: 16px;
  font-weight: 700;
  color: var(--steel);
  transition: var(--transition);
}

/* ─── COUNTRIES ─────────────────────────────────────── */
#countries {
  padding: 120px 0;
  background: radial-gradient(circle at bottom, rgba(76, 201, 240, 0.03) 0%, var(--white) 80%);
}
.countries-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.country-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 19, 43, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(11, 19, 43, 0.02);
  cursor: default;
}
.country-pill:hover {
  background: var(--white);
  border-color: #4CC9F0;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(76, 201, 240, 0.15);
}
.country-pill:hover .country-name {
  color: var(--navy-deep);
}
.country-pill-more {
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.06), rgba(76, 201, 240, 0.02));
  border: 1.5px dashed rgba(76, 201, 240, 0.4);
}
.country-pill-more .country-flag {
  width: auto;
  height: auto;
  box-shadow: none;
  color: #4CC9F0;
  font-size: 18px;
  animation: spinGlobe 15s linear infinite;
}
@keyframes spinGlobe {
  100% { transform: rotate(360deg); }
}
.country-pill-more:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(11, 19, 43, 0.2);
}
.country-pill-more:hover .country-name {
  color: var(--white);
}
.country-pill-more:hover .country-flag {
  color: #4CC9F0;
}
.country-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.country-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-deep);
  transition: var(--transition);
}
.countries-note {
  margin-top: 36px;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(76, 201, 240, 0.05) 0%, rgba(76, 201, 240, 0.02) 100%);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-left: 4px solid #4CC9F0;
  border-radius: 12px;
  font-size: 15.5px;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(76, 201, 240, 0.03);
}
.countries-note-icon {
  color: #4CC9F0;
  font-size: 18px;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

/* ─── PROCESS ───────────────────────────────────────── */
#process {
  padding: 120px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#process .hero-grid-bg { opacity: 0.5; }
.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header .section-title { color: var(--white); }
.process-header .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto; text-align: center; }
.process-header .section-label { justify-content: center; color: var(--silver); }
.process-header .section-label::before { background: var(--silver); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), var(--white), rgba(255,255,255,0.15), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px; height: 56px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}
.process-step:hover .process-step-num {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  box-shadow: 0 4px 24px rgba(255,255,255,0.2);
}
.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ─── RESOURCES ─────────────────────────────────────── */
#resources {
  padding: 120px 0;
  background: var(--ice);
}
.resources-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 52px;
  gap: 20px;
}
.resources-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.resource-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(46,63,111,0.3);
}
.resource-card-img {
  height: 200px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.resource-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}
.resource-card:hover .resource-card-img img {
  transform: scale(1.05);
}
.resource-card.featured .resource-card-img { height: 260px; }
.resource-card-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
}
.resource-card-img-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.resource-card-img-icon { position: relative; z-index: 2; }
.resource-card-body { padding: 28px; }
.resource-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--ice);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.resource-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
  margin-bottom: 8px;
}
.resource-card.featured .resource-title { font-size: 18px; }
.resource-meta {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
.resource-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.resource-card:not(.featured) .resource-desc {
  -webkit-line-clamp: 3;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
#testimonials {
  padding: 120px 0;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header .section-label { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--ice);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  background: var(--white);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-line);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
}
.testimonial-role {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonial-stars {
  margin-left: auto;
  color: var(--steel);
  font-size: 16px;
  letter-spacing: 1px;
}

/* ─── CONTACT ───────────────────────────────────────── */
#contact {
  padding: 120px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#contact .hero-grid-bg { opacity: 0.4; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-left .section-title { color: var(--white); }
.contact-left .section-desc { color: rgba(255,255,255,0.55); }
.contact-left .section-label { color: var(--silver); }
.contact-left .section-label::before { background: var(--silver); }
.contact-info-items {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}
.ci-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input {
  padding: 13px 16px;
  border: 1.5px solid var(--slate-line);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(28,37,65,0.08);
}
select.form-input { appearance: none; cursor: pointer; }
textarea.form-input {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}
.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark-btn);
}

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: #070d1f;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-mark {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 0%, var(--silver) 100%);
}
.footer-brand .logo-mark::before { font-size: 18px; }
.footer-tagline {
  font-size: 15.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 260px;
}
.footer-iso {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 15.5px;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255,255,255,0.3);
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV ────────────────────────────────────── */
/* ─── MOBILE OVERLAY ──────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 31, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
}

/* ─── MOBILE MENU DRAWER ──────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  overflow: hidden;
}
.mobile-menu.open {
  right: 0;
}

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-menu-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(10);
}
.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Nav Links */
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: none;
}
.mobile-nav-item:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.mobile-nav-item.active {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
.mobile-nav-item.active .mobile-nav-icon {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}
.mobile-nav-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.mobile-nav-item:hover .mobile-nav-icon {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Recruitment Dropdown */
.mobile-nav-dropdown { display: flex; flex-direction: column; }
.mobile-nav-dropdown-toggle { position: relative; }
.mobile-nav-chevron {
  margin-left: auto;
  font-size: 15px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.mobile-nav-dropdown.open .mobile-nav-chevron {
  transform: rotate(180deg);
}
.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  margin-top: 0;
}
.mobile-nav-dropdown.open .mobile-nav-submenu {
  max-height: 260px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.mobile-nav-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-nav-submenu a i {
  font-size: 15px;
  width: 16px;
  text-align: center;
  opacity: 0.7;
}
.mobile-nav-submenu a:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
}
.mobile-nav-submenu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.mobile-menu-footer {
  padding: 16px 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mobile-cta-btn:hover {
  background: var(--ice);
  transform: translateY(-1px);
}
.mobile-menu-contact {
  text-align: center;
}
.mobile-menu-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 15.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-contact a:hover { color: rgba(255,255,255,0.8); }
.mobile-menu-contact a i { font-size: 16px; }


/* ─── COMPATIBILITY FOR SUBPAGES ────────────────────── */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.page-header-sub {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  text-align: center;
  color: var(--white);
}
.page-header-sub-bg {
  position: absolute;
  inset: 0;
  background: url('../images/about-header.jpg') center/cover;
  opacity: 0.15;
}
.page-header-sub-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,19,43,0.5);
}
.subpage-section {
  padding: 80px 0;
  background: var(--white);
}
.subpage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.card-glass-sub {
  background: var(--ice);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 20px;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  #site-header {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
  }
  .nav-pill {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding: 14px 24px !important;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: flex; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .countries-header { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .clients-featured-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-proof-layout { grid-template-columns: 1fr; height: auto; }
  .modal-proof-info { border-right: none; border-bottom: 1px solid var(--slate-line); padding: 30px; }
  .modal-proof-container { height: 90vh; overflow-y: auto; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .resources-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .clients-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; gap: 16px; }
  .resources-header { grid-template-columns: 1fr; align-items: flex-start; gap: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .contact-form-wrap { padding: 30px 24px; }
}

/* ===================================================
   SERVICES PAGE STYLES (THEMED & MINIMAL)
   =================================================== */

/* ---- Section Header Centering ---- */
.section-header-elite {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elite-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-light);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-header-elite h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.elite-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-line {
    width: 60px;
    height: 2.5px;
    background: var(--navy-light);
    margin: 16px auto;
    border-radius: var(--radius-pill);
}

/* ---- Service Intro Section ---- */
.service-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-feature-card-elite {
    background: var(--white);
    border: 1px solid var(--slate-line);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-feature-card-elite:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy-light);
}

.feature-icon-elite {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-blue-elite { background: rgba(11, 19, 43, 0.06); color: var(--navy-deep); }
.icon-green-elite { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.icon-amber-elite { background: rgba(245, 158, 11, 0.08); color: #d97706; }

.service-feature-card-elite h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.service-feature-card-elite p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Core Infrastructure ---- */
.service-entities-section {
    padding: 100px 0;
    background: var(--ice);
}

.entities-grid-elite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.entity-card-elite {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.entity-card-elite:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy-light);
}

.entity-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.entity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.entity-card-elite:hover .entity-image img {
    transform: scale(1.05);
}

.entity-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 14px;
}

.entity-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.entity-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.entity-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 20px;
}

.entity-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.entity-features li i {
    color: #16a34a;
    font-size: 16px;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1.5px solid var(--slate-line);
    color: var(--navy-deep);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-outline-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
}

/* ---- Advantage / Why Trans Asia ---- */
.advantage-section-elite {
    padding: 100px 0;
    background: var(--white);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.column-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.column-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.advantage-list-elite {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.advantage-item-elite {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ice);
    color: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.advantage-item-elite:hover .advantage-icon {
    background: var(--navy-light);
    color: var(--white);
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 1024px) {
    .service-intro-grid,
    .entities-grid-elite {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .column-image img {
        height: 380px;
    }
}

/* ===================================================
   INDUSTRIES PAGE STYLES (THEMED & MINIMAL)
   =================================================== */

.u-industries-1 {
  background-image: url('../images/industries-header.jpg');
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
  transition: var(--transition-slow);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.4) 0%, rgba(11, 19, 43, 0.95) 100%);
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

/* Two-column vertical spacing for Breathing Space */
.two-column.u-industries-3 {
  margin-top: 40px;
  margin-bottom: 100px;
}

.two-column.u-industries-3:last-child {
  margin-bottom: 0;
}

.u-industries-5 {
  margin-top: 18px !important;
  margin-bottom: 24px !important;
}

.cta-btns.u-industries-6 {
  margin-top: 28px !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-grid .industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    display: block;
    border: 1px solid var(--slate-line);
    cursor: pointer;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

.industry-card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.industry-grid .industry-card:hover .industry-card-image img {
    transform: scale(1.05);
}

.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 30%, rgba(11, 19, 43, 0.2) 100%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transition: var(--transition);
}

.industry-grid .industry-card:hover .industry-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 30%, rgba(0, 0, 0, 0.3) 100%);
}

.industry-card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.industry-card-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--silver);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.industry-grid .industry-card:hover .industry-card-link {
    color: var(--white);
    transform: translateX(4px);
}

/* ---- Two Column Alternating Layout ---- */
@media (min-width: 1025px) {
    .two-column.reverse {
        grid-auto-flow: dense;
    }
    .two-column.reverse .column-image {
        grid-column: 2;
    }
    .two-column.reverse .column-content {
        grid-column: 1;
    }
}

.column-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.column-content h3 i {
    color: var(--navy-light);
}

.column-content ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.column-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.column-content ul li i {
    color: var(--navy-light);
    font-size: 16px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

/* ---- Download Center Section ---- */
.download-center-section {
    padding: 100px 0;
    background: var(--ice);
    border-top: 1px solid var(--slate-line);
}

.download-grid-elite {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.resource-card-elite {
    background: var(--white);
    border: 1px solid var(--slate-line);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    text-decoration: none;
}

.resource-card-elite:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy-light);
}

.resource-flag-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.resource-card-elite h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.resource-card-elite p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.resource-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy-light);
    transition: var(--transition);
}

.resource-card-elite:hover .resource-action-btn {
    color: var(--navy-deep);
    gap: 12px;
}

@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Global Subpage Section Spacing ---- */
main > section {
    padding: 60px 0;
}

/* ---- Dark Outline Button Style ---- */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--navy-deep);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border: 1.5px solid var(--navy-deep);
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================================
   RECRUITMENT PROCESS TIMELINE STYLES (THEMED & MINIMAL)
   =================================================== */

.recruitment-journey-section {
    padding: 60px 0 100px;
    background: var(--white);
}

/* ---- Filter Bar ---- */
.journey-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.journey-filter-bar .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--slate-line);
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.journey-filter-bar .filter-btn:hover {
    border-color: var(--navy-light);
    color: var(--navy-deep);
    background: var(--ice);
}

.journey-filter-bar .filter-btn.active {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow-dark-btn);
}

/* ---- Timeline Container ---- */
.journey-timeline-elite {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-connecting-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--slate-line);
    z-index: 1;
}

/* ---- Phase Container ---- */
.journey-phase-panel-elite {
    position: relative;
    z-index: 2;
}

.phase-header-elite {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.phase-badge {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.phase-badge.phase-1 { background: rgba(11, 19, 43, 0.08); color: var(--navy-deep); }
.phase-badge.phase-2 { background: rgba(46, 63, 111, 0.08); color: var(--navy-light); }
.phase-badge.phase-3 { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.phase-badge.phase-4 { background: rgba(22, 163, 74, 0.08); color: #16a34a; }

.phase-header-elite h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
}

/* ---- Phase Steps Grid ---- */
.phase-steps-grid-elite {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Step Cards ---- */
.step-card-elite {
    background: var(--white);
    border: 1.5px solid var(--slate-line);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.step-card-elite:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy-light);
}

.step-card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.step-card-glow.phase-1 { background: var(--navy-deep); }
.step-card-glow.phase-2 { background: var(--navy-light); }
.step-card-glow.phase-3 { background: #d97706; }
.step-card-glow.phase-4 { background: #16a34a; }

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.step-number.phase-1 { color: var(--navy-deep); }
.step-number.phase-2 { color: var(--navy-light); }
.step-number.phase-3 { color: #d97706; }
.step-number.phase-4 { color: #16a34a; }

.actor-badge {
    font-size: 15.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.actor-badge.employer { background: rgba(11, 19, 43, 0.06); color: var(--navy-deep); }
.actor-badge.agency { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.actor-badge.candidate { background: rgba(22, 163, 74, 0.08); color: #16a34a; }

.step-card-elite h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.step-card-elite p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.card-detail-btn {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    transition: var(--transition);
}

.step-card-elite:hover .card-detail-btn {
    color: var(--navy-deep);
    transform: translateX(4px);
}

/* ---- Step Card Filtered State ---- */
.step-card-elite.filtered-out {
    transition: var(--transition-slow);
}

/* ---- Modal Drawer ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content.glass-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid var(--slate-line);
    padding: 40px;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ice);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--navy-deep);
    color: var(--white);
}

.modal-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    border-bottom: 1px solid var(--slate-line);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
}

.modal-info-block h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-info-block h4 i {
    color: var(--navy-light);
}

.modal-info-block p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-info-block ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-info-block ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.modal-info-block ul li i {
    color: #16a34a;
}

.jargon-block {
    background: var(--ice);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--slate-line);
}

/* ---- Responsiveness ---- */
@media (max-width: 1024px) {
    .phase-steps-grid-elite {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .phase-steps-grid-elite {
        grid-template-columns: 1fr;
    }
    .journey-timeline-elite {
        padding-left: 20px;
    }
    .timeline-connecting-line {
        left: 4px;
    }
}

/* ==========================================================================
   Blog Page Styles (Premium Elite Design)
   ========================================================================== */
.blogs-grid-elite {
  padding: 100px 0;
  background: var(--ice);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}

.blog-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
  opacity: 0.95;
}

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.blog-meta i {
  color: var(--navy-light);
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy-deep);
  transition: var(--transition);
}

.blog-card:hover h3 {
  color: var(--navy-light);
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
}

.blog-card .read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: 14px;
}

.blog-card:hover .read-more {
  color: var(--navy-deep);
}

.blog-card:hover .read-more i {
  transform: translateX(6px);
}

/* Responsiveness for Blog Grid */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blogs-grid-elite {
    padding: 80px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-card-image {
    height: 200px;
  }
  .blog-card-content {
    padding: 24px;
  }
}

/* ==========================================================================
   Blog Detail Page Styles (Premium Elite Design)
   ========================================================================== */
.blog-card .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.blog-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-meta-top {
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-meta-top i {
  color: var(--silver);
}

.blog-header-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--silver);
  margin-top: 15px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.breadcrumb span {
  color: var(--white);
  font-weight: 600;
}

/* ==========================================================================
   Blog Detail Page - Modern Editorial Layout (Full Container Width)
   ========================================================================== */

.blog-detail-section {
  padding: 60px 0 100px;
  background: #f8f9fc;
}

/* Hero image - full width, no card */
.blog-detail-hero-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 40px rgba(0, 31, 82, 0.12);
  position: relative;
}

.blog-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Article meta row */
.blog-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-deep, #001F52);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.blog-meta-badge i {
  font-size: 0.75rem;
}

.blog-meta-date {
  font-size: 0.88rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-time {
  font-size: 0.88rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

/* Article title */
.blog-article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-deep, #001F52);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Divider */
.blog-title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-deep, #001F52), var(--navy-light, #1a4da6));
  border-radius: 4px;
  margin-bottom: 32px;
}

/* Article body content */
.blog-article-body {
  padding: 0;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.blog-content > p:first-of-type {
  font-size: 1.15rem;
  color: #1f2937;
  line-height: 1.85;
  font-weight: 400;
}

.blog-content p {
  margin-bottom: 26px;
}

.blog-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy-deep, #001F52);
  margin-top: 48px;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.blog-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--navy-deep, #001F52);
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* Lists */
.blog-content ul {
  margin-bottom: 28px;
  padding-left: 0;
}

.blog-content ul li {
  margin-bottom: 12px;
  color: #374151;
  position: relative;
  padding-left: 26px;
  list-style: none;
  line-height: 1.75;
}

.blog-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--navy-light, #1a4da6);
  border-radius: 50%;
}

.blog-content ol {
  padding-left: 26px;
  margin-bottom: 28px;
}

.blog-content ol li {
  list-style: decimal;
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.75;
  padding-left: 4px;
}

.blog-content ol li::before {
  display: none;
}

/* Pull Quote / Blockquote */
.blog-content blockquote {
  position: relative;
  margin: 40px 0;
  padding: 28px 36px 28px 56px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-left: 5px solid var(--navy-deep, #001F52);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--navy-deep, #001F52);
  font-family: 'Inter', sans-serif;
}

.blog-content blockquote::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 10px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--navy-light, #1a4da6);
  opacity: 0.4;
  font-family: 'Inter', sans-serif;
}

/* Tables — use a wrapper div for horizontal scroll on mobile */
.blog-content .table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 31, 82, 0.07);
  margin: 36px 0;
}

.blog-content table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  display: table;
  margin: 0;
}

.blog-content table thead tr {
  background: var(--navy-deep, #001F52);
  color: #fff;
}

.blog-content table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  border: none;
}

.blog-content table td {
  padding: 13px 20px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  vertical-align: middle;
}

.blog-content table tbody tr:nth-child(even) {
  background: #f8f9ff;
}

.blog-content table tbody tr:hover {
  background: #eef2ff;
  transition: background 0.2s;
}

/* Blog Nav */
.blog-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 2px solid #e5e7eb;
  padding-top: 32px;
  margin-top: 56px;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-buttons span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-deep, #001F52);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--navy-deep, #001F52);
  transition: all 0.25s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--navy-deep, #001F52);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 31, 82, 0.25);
}

/* ==========================================================================
   Blog Detail Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .blog-hero-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .blog-detail-section {
    padding: 40px 0 70px;
  }

  .blog-detail-hero-wrap {
    border-radius: 12px;
    margin-bottom: 32px;
  }

  .blog-hero-img {
    height: 220px;
  }

  .blog-article-title {
    font-size: 1.5rem;
  }

  .blog-content {
    font-size: 1rem;
  }

  .blog-content > p:first-of-type {
    font-size: 1.05rem;
  }

  .blog-content h2 {
    font-size: 1.25rem;
    margin-top: 36px;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .blog-content blockquote {
    padding: 20px 20px 20px 44px;
    font-size: 1rem;
    margin: 28px 0;
  }

  .blog-content blockquote::before {
    font-size: 2.8rem;
    left: 12px;
  }

  .blog-content table th,
  .blog-content table td {
    padding: 10px 14px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .blog-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 24px;
    margin-top: 40px;
  }

  .share-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .blog-read-time {
    margin-left: 0;
  }

  .blog-article-meta {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .blog-hero-img {
    height: 180px;
  }

  .blog-article-title {
    font-size: 1.3rem;
  }

  .blog-content blockquote {
    padding: 16px 16px 16px 36px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Contact Page Styles (Premium Elite Design)
   ========================================================================== */
.u-contact-2 {
  padding: 80px 0;
  background: var(--white);
}

.contact-options-elite {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.contact-option-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: start;
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}

.contact-option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}

.option-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-option-card:hover .option-icon-wrap {
  background: var(--navy-deep);
  color: var(--white);
}

.option-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.option-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.option-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: var(--transition);
}

.contact-option-card:hover .option-link {
  color: var(--navy-deep);
}

.two-column {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-header-minimal {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--slate-line);
  padding-bottom: 20px;
}

.form-header-minimal h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.form-header-minimal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.form-group input, 
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--navy-deep);
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-light);
  background: var(--ice);
  box-shadow: 0 0 0 3px rgba(46, 63, 111, 0.08);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.two-column-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.u-contact-11 {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--ice);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-line);
  margin-bottom: 15px;
}

.u-contact-12 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 2px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px dashed var(--navy-light);
}

.u-contact-13 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.u-contact-14 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.u-contact-15 {
  padding: 10px 14px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--slate-line);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.contact-info-item i {
  font-size: 18px;
  color: var(--navy-light);
  width: 24px;
  text-align: center;
  margin-top: 4px;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.contact-info-item p, 
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--navy-light);
}

.map-container {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--slate-line);
  margin-top: 10px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Global Offices Grid */
.global-presence-elite {
  padding: 80px 0;
  background: var(--ice);
}

.presence-grid-elite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.office-card-elite {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.office-card-elite:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}

.office-icon-wrapper {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.office-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.office-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Grievance Box */
.grievance-box {
  padding: 40px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, rgba(28, 37, 65, 0.96) 100%);
  color: var(--white);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-left: 5px solid #F59E0B;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 25px rgba(245, 158, 11, 0.03);
  margin: 60px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grievance-box:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 35px rgba(245, 158, 11, 0.08);
}

.grievance-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.grievance-box h3 i {
  color: #F59E0B;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.grievance-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.grievance-box a {
  color: #F59E0B;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.grievance-box a:hover {
  background: #F59E0B;
  color: var(--navy-deep);
  border-color: #F59E0B;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Quick Links Elite Redesign */
.quick-links-elite {
  padding: 80px 0;
  background: var(--white);
}

.quick-links-grid-elite {
  display: flex;
  justify-content: center;
}

.resource-card-elite {
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}

.resource-card-elite:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}

.resource-card-elite .office-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: none;
}

.resource-card-elite h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.resource-card-elite p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.resource-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-light);
  transition: var(--transition);
  margin-top: 10px;
}

.resource-card-elite:hover .resource-action-btn {
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* Responsiveness for Contact */
@media (max-width: 991px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-options-elite {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .presence-grid-elite {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form, 
  .contact-info-card {
    padding: 24px;
  }
  .two-column-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Why Partner list inside Info Card */
.contact-info-list {
  margin-top: 30px;
  border-top: 1px solid var(--slate-line);
  padding-top: 24px;
}

.contact-info-list h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 15px;
}

.contact-info-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.contact-info-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding-left: 0;
}

.contact-info-list ul li::before {
  display: none;
}

.contact-info-list ul li i {
  color: #16a34a;
  font-size: 16px;
}

/* File Upload Component for Jobseeker */
.file-upload-wrapper {
  position: relative;
  border: 1.5px dashed var(--slate-line);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  background: var(--ice);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.file-upload-wrapper:hover {
  border-color: var(--navy-light);
  background: var(--white);
}

.file-upload-wrapper i {
  font-size: 28px;
  color: var(--navy-light);
  margin-bottom: 4px;
}

.file-upload-wrapper label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
  cursor: pointer;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-wrapper small {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Form Action Buttons Spacing and Comfortable Padding */
.contact-form button[type="submit"],
.contact-form .btn-primary {
  margin-top: 24px;
  padding: 14px 36px;
}

/* Footer Legal Links */
.footer-legal-links {
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--white);
}

.footer-legal-links span {
  opacity: 0.3;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
  }
}

/* Policy & Legal Pages Premium Styling */
.policy-content {
  padding: 100px 0;
  background: #f8fafc;
}

.policy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 60px;
  box-shadow: var(--shadow-card);
}

.last-updated {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-light);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.policy-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.policy-wrapper h2:first-of-type {
  margin-top: 0;
}

.policy-wrapper p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.policy-wrapper ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.policy-wrapper ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  list-style: disc;
}

.policy-contact-box {
  background: var(--ice);
  border-left: 4px solid var(--navy-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 30px;
  margin-top: 50px;
}

.policy-contact-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.policy-contact-box p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 60px 0;
  }
  .policy-wrapper {
    padding: 40px 24px;
  }
  .policy-wrapper h2 {
    font-size: 1.3rem;
    margin-top: 30px;
  }
}

/* Ethical card premium for Recruitment Policy */
.ethical-card-premium {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ethical-card-premium .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--silver);
}

.ethical-card-premium h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.ethical-card-premium p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.ethical-card-premium .btn-elite-white {
  display: inline-block;
  padding: 12px 28px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  margin-top: 10px;
}

.ethical-card-premium .btn-elite-white:hover {
  background: var(--silver);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* ==========================================================================
   Sector Detail Pages (Premium Elite Design)
   ========================================================================== */
.sector-detail-section {
  padding: 100px 0;
  background: var(--white);
}

.sector-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ice);
  color: var(--navy-light);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.sector-detail-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 24px;
  line-height: 1.25;
}

.sector-detail-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Expertise List Component */
.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.expertise-item {
  display: flex;
  gap: 20px;
  background: var(--ice);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  transition: var(--transition);
}

.expertise-item:hover {
  transform: translateY(-4px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.expertise-item i {
  font-size: 20px;
  color: #16a34a;
  margin-top: 4px;
  flex-shrink: 0;
}

.expertise-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.expertise-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Premium CTA block */
.cta-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 48px 60px;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-premium-content h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-premium-content p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.cta-premium .btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}

.cta-premium .btn-white:hover {
  background: var(--silver);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Roles Overhaul Section */
.roles-overhaul-section {
  padding: 100px 0;
  background: #f8fafc;
}

.roles-overhaul-section .section-header {
  max-width: 600px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.roles-overhaul-section .sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-light);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.roles-overhaul-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.roles-overhaul-section p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.role-premium-card {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.role-premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-hover);
}

.role-premium-card .card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy-light);
}

.role-premium-card:hover .card-accent {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-light));
}

.card-header-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-header-icon .icon-circle {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--ice);
  color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.role-premium-card:hover .card-header-icon .icon-circle {
  background: var(--navy-deep);
  color: var(--white);
}

.card-header-icon h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.role-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.role-list li i {
  color: var(--navy-light);
  font-size: 15.5px;
}

/* Responsive Overhaul for Sectors */
@media (max-width: 991px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sector-detail-section,
  .roles-overhaul-section {
    padding: 60px 0;
  }
  .expertise-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta-premium {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 24px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .role-premium-card {
    padding: 30px 24px;
  }
}

/* ==========================================================================
   TECHNICAL SKILL ASSESSMENT & VOCATIONAL TRAINING STYLES (PREMIUM ELITE)
   ========================================================================== */
.u-testing-training-1 {
  background-image: url('../images/training-facility.jpg');
}

.u-assessment-training-2 {
  padding: 100px 0;
  background: var(--white);
}

.u-assessment-training-2:nth-of-type(even) {
  background: var(--ice);
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}

.u-assessment-training-5 {
  padding: 100px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.u-assessment-training-5 .section-header-elite h2 {
  color: var(--white);
}

.u-assessment-training-5 .elite-subtitle {
  color: var(--silver);
}

.u-assessment-training-5 .section-line {
  background: rgba(255, 255, 255, 0.2);
}

.u-assessment-training-6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.trade-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.trade-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.trade-chip i {
  font-size: 32px;
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.trade-chip:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.trade-chip h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* Assessment Process / Methodology */
.u-assessment-training-10 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card-elite {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-elite:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy-light);
}

.value-number-elite {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-light);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.value-card-elite h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.value-card-elite p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.u-assessment-training-11 {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.u-assessment-training-12 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.u-assessment-training-13 {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ==========================================================================
   MEDICAL SCREENING & HEALTH DIAGNOSTICS STYLES
   ========================================================================== */
.u-medical-screening-1 {
  background-image: url('../images/medical.png');
}

.u-medical-screening-2 {
  padding: 100px 0;
  background: var(--white);
}

.u-medical-screening-2:nth-of-type(even) {
  background: var(--ice);
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}

.u-medical-screening-5 {
  padding: 100px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.u-medical-screening-5 .section-header-elite h2 {
  color: var(--white);
}

.u-medical-screening-5 .elite-subtitle {
  color: var(--silver);
}

.u-medical-screening-5 .section-line {
  background: rgba(255, 255, 255, 0.2);
}

.u-medical-screening-6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.u-medical-screening-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.u-medical-screening-8 {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.u-medical-screening-9 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.u-medical-screening-10 {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Responsive Overrides for Skill Assessment & Vocational Training */
@media (max-width: 1024px) {
  .u-assessment-training-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .u-assessment-training-10 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .u-medical-screening-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .u-medical-screening-7 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .u-assessment-training-2,
  .u-assessment-training-5,
  .u-assessment-training-11,
  .u-medical-screening-2,
  .u-medical-screening-5,
  .u-medical-screening-8 {
    padding: 60px 0 !important;
  }
  .u-assessment-training-6 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .u-assessment-training-10 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .u-medical-screening-6,
  .u-medical-screening-7 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ─── PREMIUM NAVIGATION DROPDOWN SYSTEM ────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 15.5px;
  transition: transform 0.3s ease;
}

/* Desktop Hover Interaction */
@media (min-width: 992px) {
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(11, 19, 43, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    z-index: 1001;
  }
  
  /* Dropdown bridge to prevent closing on gap hover */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 10px 16px !important;
    border-radius: 6px;
    transition: var(--transition);
    display: block;
    white-space: nowrap;
  }
  
  .nav-dropdown-menu a::after {
    display: none !important; /* Disable standard nav underline decoration */
  }

  .nav-dropdown-menu a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
  }

  .nav-dropdown-menu a.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
  }
}

/* Mobile Dropdown Interaction */
@media (max-width: 991px) {
  .mobile-menu .nav-dropdown {
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }

  .mobile-menu .nav-dropdown-toggle {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-deep);
    padding: 10px 0;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .mobile-menu .dropdown-arrow {
    font-size: 16px;
  }

  .mobile-menu .nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--ice);
    border-radius: var(--radius-md);
    margin: 0 auto;
    width: calc(100% - 20px);
    max-width: 320px;
  }

  .mobile-menu .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    opacity: 1;
    padding: 12px 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .mobile-menu .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-menu .nav-dropdown-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: block;
    transition: var(--transition);
  }

  .mobile-menu .nav-dropdown-menu a.active {
    color: var(--navy-deep);
    background: rgba(11, 19, 43, 0.05);
    font-weight: 600;
  }
}

/* ─── FOOTER CALL TO ACTION (CTA) PREMIUM THEME ──── */
.footer-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle background decoration grids */
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Button style */
.footer-cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-cta .btn-white:hover {
  background: var(--silver);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.footer-cta .btn-white i {
  transition: transform 0.3s ease;
}

.footer-cta .btn-white:hover i {
  transform: translateX(4px);
}

/* Contact information row */
.footer-cta-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: var(--transition);
}

.footer-cta-contact a:hover {
  color: var(--white);
}

.footer-cta-contact a i {
  color: var(--silver);
  font-size: 16px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .footer-cta {
    padding: 70px 0;
  }
  
  .footer-cta-contact {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
  }
}

/* ─── INTERACTIVE SECTOR PANEL SYSTEM (INDUSTRIES) ─ */
.sectors-tab-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--slate-line);
  padding-bottom: 20px;
}

.sector-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ice);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-pill);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.sector-tab-btn i {
  font-size: 15px;
  color: var(--steel);
  transition: var(--transition);
}

.sector-tab-btn:hover {
  background: var(--white);
  border-color: var(--navy-light);
  color: var(--navy-deep);
}

.sector-tab-btn.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-dark-btn);
}

.sector-tab-btn.active i {
  color: var(--white);
}

.sector-display-container {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.sector-detail-panel {
  display: none;
  animation: tabFadeIn 0.4s ease-out forwards;
}

.sector-detail-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sector-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}

.sector-panel-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: var(--navy-deep);
}

.sector-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-badge-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sector-panel-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-panel-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sector-panel-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.roles-heading {
  font-size: 15.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.roles-grid-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--ice);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 19, 43, 0.05);
}

.role-chip i {
  color: #16a34a;
  font-size: 15px;
}

/* Responsive Explorer Panel */
@media (max-width: 991px) {
  .sector-panel-grid {
    grid-template-columns: 1fr;
  }
  
  .sector-panel-image {
    min-height: 280px;
    height: 280px;
  }
  
  .sector-panel-content {
    padding: 30px 24px;
  }
  
  .sector-panel-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .roles-grid-chips {
    grid-template-columns: 1fr;
  }
}

/* ──────────────── SUBPAGES (MISSION, VISION, CORE VALUES) ──────────────── */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--navy-deep);
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.mission-section, .vision-section, .values-detail-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

.two-column .column-content, .two-column .column-image, .two-column > div {
  flex: 1 1 400px;
}

.two-column.u-contact-5 {
  align-items: stretch;
}
.two-column.u-contact-5 .contact-form,
.two-column.u-contact-5 .contact-info-card {
  height: 100%;
}

.column-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.column-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mission-points, .vision-card {
  margin-top: 40px;
}

.expertise-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-line);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.expertise-item:hover {
  transform: translateY(-3px);
  border-color: var(--navy-light);
}

.expertise-item i {
  font-size: 24px;
  color: var(--navy-light);
  background: rgba(43, 65, 98, 0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.expertise-item h4 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.expertise-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.vision-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--navy-light);
  box-shadow: var(--shadow-card);
}

.vision-card h4 {
  color: var(--navy-deep);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vision-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy-light);
  margin-bottom: 12px;
}

.values-expanded-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.value-expanded-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-line);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.value-expanded-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(43, 65, 98, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.value-expanded-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--navy-light);
}

.value-expanded-card h3 {
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.value-expanded-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.2rem;
  }
  .two-column {
    gap: 40px;
  }
}

/* ===================================================
   COUNTRY DOCUMENTS SUBPAGE PRESTIGE STYLES
   =================================================== */

/* Header backgrounds per country (solid color) */
.u-cd-malaysia-1,
.u-cd-saudi-arabia-1,
.u-cd-qatar-1,
.u-cd-united-arab-emirates-1 {
  background-color: var(--navy-deep);
  background-image: none !important;
}

/* Back Link styling */
.u-cd-malaysia-3,
.u-cd-saudi-arabia-3,
.u-cd-qatar-3,
.u-cd-united-arab-emirates-3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.u-cd-malaysia-3:hover,
.u-cd-saudi-arabia-3:hover,
.u-cd-qatar-3:hover,
.u-cd-united-arab-emirates-3:hover {
  color: #4CC9F0;
  transform: translateX(-4px);
}

/* Back Link styling alignment */
.u-cd-malaysia-2,
.u-cd-saudi-arabia-2,
.u-cd-qatar-2,
.u-cd-united-arab-emirates-2 {
  text-align: left;
}

/* Page header flex alignment */
.u-cd-malaysia-4,
.u-cd-saudi-arabia-4,
.u-cd-qatar-4,
.u-cd-united-arab-emirates-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* Flag Image */
.u-cd-malaysia-5,
.u-cd-saudi-arabia-5,
.u-cd-qatar-5,
.u-cd-united-arab-emirates-5 {
  width: 56px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Country Main Header Title */
.u-cd-malaysia-6,
.u-cd-saudi-arabia-6,
.u-cd-qatar-6,
.u-cd-united-arab-emirates-6 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 0 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Sub-title label below country header */
.u-cd-malaysia-7,
.u-cd-saudi-arabia-7,
.u-cd-qatar-7,
.u-cd-united-arab-emirates-7 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ──────────────── COUNTRY SECTIONS & GRIDS ─────────────── */

/* Outer Section */
.u-cd-malaysia-8,
.u-cd-saudi-arabia-8,
.u-cd-qatar-8,
.u-cd-united-arab-emirates-8 {
  padding: 100px 0 120px;
  background: radial-gradient(circle at 50% 0%, #fdfdfd 0%, #f4f7fa 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle glow effect in the section background */
.u-cd-malaysia-8::before,
.u-cd-saudi-arabia-8::before,
.u-cd-qatar-8::before,
.u-cd-united-arab-emirates-8::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Cards Grid Layout */
.u-cd-malaysia-9,
.u-cd-saudi-arabia-9,
.u-cd-qatar-9,
.u-cd-united-arab-emirates-9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

/* Premium Card Panels */
.glass-panel.u-cd-malaysia-10,
.glass-panel.u-cd-saudi-arabia-10,
.glass-panel.u-cd-qatar-10,
.glass-panel.u-cd-united-arab-emirates-10 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 32px rgba(11, 19, 43, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glass-panel.u-cd-malaysia-10:hover,
.glass-panel.u-cd-saudi-arabia-10:hover,
.glass-panel.u-cd-qatar-10:hover,
.glass-panel.u-cd-united-arab-emirates-10:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(11, 19, 43, 0.12);
  border-color: rgba(76, 201, 240, 0.45);
  background: #fff;
}

/* Icon Container */
.u-cd-malaysia-11,
.u-cd-saudi-arabia-11,
.u-cd-qatar-11,
.u-cd-united-arab-emirates-11 {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.u-cd-malaysia-11 i,
.u-cd-saudi-arabia-11 i,
.u-cd-qatar-11 i,
.u-cd-united-arab-emirates-11 i {
  font-size: 26px;
  color: #ef4444;
  transition: all 0.3s ease;
}

.glass-panel:hover .u-cd-malaysia-11,
.glass-panel:hover .u-cd-saudi-arabia-11,
.glass-panel:hover .u-cd-qatar-11,
.glass-panel:hover .u-cd-united-arab-emirates-11 {
  background: #ef4444;
  transform: scale(1.1) rotate(-6deg);
}

.glass-panel:hover .u-cd-malaysia-11 i,
.glass-panel:hover .u-cd-saudi-arabia-11 i,
.glass-panel:hover .u-cd-qatar-11 i,
.glass-panel:hover .u-cd-united-arab-emirates-11 i {
  color: #fff;
}

/* Card Heading Title */
.u-cd-malaysia-12,
.u-cd-saudi-arabia-12,
.u-cd-qatar-12,
.u-cd-united-arab-emirates-12 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 16px 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* Footer elements gap and flex centering */
.u-cd-malaysia-13,
.u-cd-saudi-arabia-13,
.u-cd-qatar-13,
.u-cd-united-arab-emirates-13 {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Document type text */
.u-cd-malaysia-14,
.u-cd-saudi-arabia-14,
.u-cd-qatar-14,
.u-cd-united-arab-emirates-14 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Download Button styling inside the country doc panels */
.glass-panel a.btn-primary.btn-sm.u-cd-malaysia-15,
.glass-panel a.btn-primary.btn-sm.u-cd-saudi-arabia-15,
.glass-panel a.btn-primary.btn-sm.u-cd-qatar-15,
.glass-panel a.btn-primary.btn-sm.u-cd-united-arab-emirates-15 {
  width: 100%;
  padding: 13px 20px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 12px;
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.glass-panel:hover a.btn-primary.btn-sm.u-cd-malaysia-15,
.glass-panel:hover a.btn-primary.btn-sm.u-cd-saudi-arabia-15,
.glass-panel:hover a.btn-primary.btn-sm.u-cd-qatar-15,
.glass-panel:hover a.btn-primary.btn-sm.u-cd-united-arab-emirates-15 {
  background: #4CC9F0;
  border-color: #4CC9F0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(76, 201, 240, 0.45);
}

/* Extra styling for mobile responsive header */
@media (max-width: 576px) {
  .u-cd-malaysia-4,
  .u-cd-saudi-arabia-4,
  .u-cd-qatar-4,
  .u-cd-united-arab-emirates-4 {
    align-items: center;
    text-align: center;
  }
  .u-cd-malaysia-6,
  .u-cd-saudi-arabia-6,
  .u-cd-qatar-6,
  .u-cd-united-arab-emirates-6 {
    font-size: 2.2rem;
  }
}

/* ─── SCROLL & PAGE LOAD ANIMATIONS (AOS EMULATION) ──────────────── */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

/* Delay classes */
[data-aos-delay="50"]  { transition-delay: 50ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="250"] { transition-delay: 250ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="350"] { transition-delay: 350ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="450"] { transition-delay: 450ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }

/* Animate state */
.aos-animate[data-aos] {
  opacity: 1;
  transform: translate(0);
}

/* Fallback for noscript / JS-disabled or delayed load */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
body.aos-fallback [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.5s ease, transform 0.5s ease !important;
}

/* Spinner Animation for Document Viewer */
@keyframes spin {
  to { transform: rotate(360deg); }
}
