/* ==========================================================================
   TRIVENS GLOBAL PVT. LTD. — Enterprise Corporate Design System
   Brand: Corporate Immigration & Global Workforce Mobility
   Colors: Deep Navy (#062653 / #0B2F63), Teal (#167F88 / #45D9FF), Gold (#C69A32)
   ========================================================================== */

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  /* Brand Navy Palette */
  --navy:            #0B2F63;
  --navy-deep:       #062653;
  --navy-darkest:    #031124;
  --navy-card:       #082046;

  /* Teal & Cyan Accents */
  --teal:            #167F88;
  --teal-secondary:  #2F8F96;
  --teal-light:      #45D9FF;
  --teal-bg:         rgba(22, 127, 136, 0.08);
  --teal-glow:       rgba(69, 217, 255, 0.25);

  /* Gold Accents */
  --gold:            #C69A32;
  --gold-light:      #F0CF65;
  --gold-bg:         rgba(198, 154, 50, 0.1);
  --gold-glow:       rgba(198, 154, 50, 0.35);

  /* Backgrounds & Surfaces */
  --white:           #FFFFFF;
  --bg-soft:         #F8FAFC;
  --bg-surface:      #F1F5F9;
  --bg-card:         #FFFFFF;
  --border-light:    #E2E8F0;
  --border-dark:     rgba(255, 255, 255, 0.12);

  /* Text Colors */
  --text-dark:       #0F172A;
  --text-body:       #334155;
  --text-muted:      #64748B;
  --text-light:      #94A3B8;

  /* Typography */
  --font-heading:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:       'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-pad:     5.5rem clamp(1.2rem, 5vw, 6%);
  --container-max:   1240px;

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:          180ms;
  --t-normal:        280ms;
  --t-slow:          450ms;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md:       0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg:       0 12px 36px rgba(15, 23, 42, 0.12);
  --shadow-card:     0 2px 10px rgba(11, 47, 99, 0.06);
  --shadow-hover:    0 16px 36px rgba(11, 47, 99, 0.14);

  /* Radii */
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-full:     9999px;
}

/* ── Reset & Global ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { min-height: 100vh; line-height: 1.65; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--t-fast) var(--ease-smooth); }
a:hover { color: var(--navy); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-deep);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { max-width: 72ch; }

.container { max-width: var(--container-max); margin: 0 auto; width: 100%; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Header & Navigation ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--t-normal) var(--ease-smooth);
}

.site-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Dark header variant for hero */
.header-dark .site-header {
  background: rgba(3, 17, 36, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-dark .site-header .nav-link { color: rgba(255,255,255,0.85); }
.header-dark .site-header .nav-link:hover { color: var(--teal-light); }
.header-dark .site-header .header-phone { color: rgba(255,255,255,0.9); }
.header-dark .site-header .brand-name { color: var(--white); }
.header-dark .site-header .brand-tagline { color: rgba(255,255,255,0.6); }

/* Logo */
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.15rem; font-weight: 800; color: var(--navy-deep); line-height: 1.15; letter-spacing: -0.02em; }
.brand-tagline { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* Desktop Navigation */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease-smooth);
}
.nav-link:hover { color: var(--teal); background: var(--teal-bg); }

/* Dropdowns */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown .nav-link::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 2px;
  transition: transform var(--t-fast);
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t-normal) var(--ease-out);
  z-index: 600;
}
.nav-item-dropdown:hover .dropdown-panel,
.nav-item-dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.dropdown-link:hover { background: var(--teal-bg); color: var(--teal); transform: translateX(3px); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.header-phone svg { width: 16px; height: 16px; fill: var(--teal); }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.3rem; width: 32px; height: 32px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--t-normal) var(--ease-smooth);
}
.header-dark .site-header .mobile-toggle span { background: var(--white); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-drawer {
  position: fixed; top: 0; right: -100%;
  width: 85%; max-width: 360px; height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  z-index: 700;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  transition: right var(--t-slow) var(--ease-out);
}
.mobile-drawer.open { right: 0; }
.mobile-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 699;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-normal);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-link {
  display: block; padding: 0.85rem 0;
  font-size: 1rem; font-weight: 600;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--border-light);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.92rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-smooth);
  text-decoration: none;
  line-height: 1.35;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1687ff, #45d9ff);
  color: #02101c;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(69, 217, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(69, 217, 255, 0.5);
  color: #02101c;
}

.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 47, 99, 0.2);
}
.btn-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: 0.4rem 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-ghost:hover { color: var(--navy-deep); }
.btn-ghost::after { content: ' →'; transition: transform var(--t-fast); display: inline-block; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.84rem; }

/* ── Hero Section + image-based globe animation ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 78% 42%, #062653 0%, #031124 58%, #01050a 100%);
  overflow: hidden;
  padding: 7.5rem clamp(1.2rem, 5vw, 6%) 4.5rem;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 76% 48%, rgba(69,217,255,0.10), transparent 36%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: min(52%, 650px);
  max-width: 650px;
  pointer-events: auto;
}
.hero-visual {
  position: absolute;
  z-index: 4;
  top: 0;
  right: -1%;
  width: 59%;
  height: 100%;
  min-height: 620px;
  pointer-events: none;
}
.globe-stage {
  position: absolute;
  width: min(760px, 94%);
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
}
.globe-aura {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,157,255,.18) 0%, rgba(30,116,220,.08) 42%, rgba(0,0,0,0) 72%);
  filter: blur(10px);
  transform: scale(1.08);
  animation: globeAuraPulse 5s ease-in-out infinite;
}
.hero-globe-image {
  position: absolute;
  inset: 3%;
  width: 94%;
  height: 94%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 30px rgba(31,137,255,.22));
  user-select: none;
  -webkit-user-drag: none;
  animation: globeFloat 7s ease-in-out infinite;
}
.globe-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 111%;
  height: 35%;
  transform-origin: center;
  border: 1px solid rgba(69,217,255,.24);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(69,217,255,.06);
  animation: orbitRotate linear infinite;
}
.globe-orbit-one { transform: translate(-50%, -50%) rotate(-12deg); animation-duration: 8.5s; }
.globe-orbit-two { width: 103%; height: 43%; transform: translate(-50%, -50%) rotate(31deg); border-color: rgba(240,207,101,.18); animation-duration: 11s; animation-direction: reverse; }
.orbit-flight {
  position: absolute;
  width: 112px;
  height: 48px;
  left: -48px;
  top: calc(50% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-flight img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 9px rgba(69,217,255,.55));
  transform: rotate(7deg);
}
.orbit-flight-two img { filter: drop-shadow(0 0 10px rgba(240,207,101,.5)); transform: rotate(-3deg) scale(.9); }
.globe-visual-status {
  position: absolute;
  left: 11%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(69,217,255,.22);
  border-radius: 999px;
  background: rgba(3,17,36,.66);
  color: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.globe-visual-status strong { color: #55d9ff; font-size: .65rem; }
.live-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: #25d366; box-shadow: 0 0 10px rgba(37,211,102,.8); animation: livePulse 1.8s ease-in-out infinite; }
@keyframes orbitRotate { from { transform: translate(-50%, -50%) rotate(-12deg) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-12deg) rotate(360deg); } }
.globe-orbit-two { animation-name: orbitRotateTwo; }
@keyframes orbitRotateTwo { from { transform: translate(-50%, -50%) rotate(31deg) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(31deg) rotate(-360deg); } }
@keyframes orbitRotateThree { from { transform: translate(-50%, -50%) rotate(-48deg) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-48deg) rotate(360deg); } }
@keyframes globeFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes globeAuraPulse { 0%,100% { opacity: .65; transform: scale(1.05); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes livePulse { 0%,100% { opacity: .65; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.2); } }

/* ── Inner Page Hero Banner ──────────────────────────────────────────────── */
.page-hero {
  padding: 8.5rem clamp(1.2rem, 5vw, 6%) 4rem;
  background: radial-gradient(circle at 80% 30%, #082855 0%, #031124 70%, #020813 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  position: relative;
}
.page-hero .container { position: relative; z-index: 5; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(2rem, 3.8vw, 3rem); }
.page-hero .lead { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 680px; line-height: 1.7; margin-bottom: 1.5rem; }

.breadcrumbs {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: #55d9ff; font-weight: 500; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: rgba(255,255,255,0.4); }

/* ── Sections & Cards ─────────────────────────────────────────────────────── */
.section { padding: var(--section-pad); position: relative; }
.section-soft { background: var(--bg-soft); }
.section-surface { background: var(--bg-surface); }
.section-dark {
  background: radial-gradient(circle at 50% 30%, #062653 0%, #031124 75%, #01050a 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.78); }

.section-header { max-width: 720px; margin-bottom: 3.5rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--teal); margin-bottom: 0.6rem;
}
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p { color: var(--text-muted); font-size: 1.08rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* Grid Systems */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-normal) var(--ease-out);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(22, 127, 136, 0.3);
}

.card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-bg);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--teal);
  font-size: 1.5rem;
}
.card-icon.gold { background: var(--gold-bg); color: var(--gold); }
.card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.card-dark:hover { border-color: #55d9ff; box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.7); }

/* Stats Strip */
.stats-strip-dark {
  background: #031124;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 3rem clamp(1rem, 5vw, 6%);
}
.stats-strip-dark .container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; text-align: center;
}
.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-light);
  display: block; line-height: 1.1;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.4rem; font-weight: 500; }

/* ── Content Layout with Sidebar ─────────────────────────────────────────── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky; top: 6rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { margin-bottom: 0.75rem; color: var(--navy-deep); }
.sidebar-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.content-block { max-width: 820px; }
.content-block h2 { margin-top: 2.8rem; margin-bottom: 1rem; }
.content-block h3 { margin-top: 2.2rem; margin-bottom: 0.75rem; color: var(--navy); }
.content-block p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.75; color: var(--text-body); }
.content-block ul, .content-block ol { margin: 1.2rem 0; padding-left: 1.6rem; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: 0.6rem; font-size: 1rem; color: var(--text-body); }

.key-takeaway {
  background: var(--teal-bg);
  border-left: 4px solid var(--teal);
  padding: 1.35rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}
.key-takeaway strong { color: var(--teal); font-size: 1.05rem; }

/* ── Corporate Contact Page ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 6rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.6rem; }
.contact-info-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #55d9ff;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: currentColor; }
.contact-item-text strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-item-text span, .contact-item-text a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.contact-item-text a:hover { color: #55d9ff; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 0.5rem; font-size: 1.6rem; }
.contact-form-card p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--t-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 127, 136, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group {
  display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem;
}
.form-checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem; accent-color: var(--teal); width: 16px; height: 16px;
}
.form-checkbox-group label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.form-success, .form-error {
  padding: 1.1rem; border-radius: var(--radius-sm); font-size: 0.95rem; text-align: center; display: none; margin-top: 1rem;
}
.form-success { background: rgba(22, 127, 136, 0.1); border: 1px solid var(--teal); color: var(--teal); }
.form-error { background: rgba(220, 38, 38, 0.08); border: 1px solid #dc2626; color: #dc2626; }

/* ── FAQ Accordion ────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.active { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  background: transparent; border: none;
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--navy-deep);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.faq-question:hover { background: var(--bg-soft); }
.faq-toggle {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.25rem; font-weight: 700;
  transition: transform var(--t-normal) var(--ease-out);
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; }

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-section {
  background: radial-gradient(circle at 50% 50%, #0B2F63 0%, #062653 60%, #031124 100%);
  padding: 5rem clamp(1rem, 5vw, 6%);
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 0.85rem; }
.cta-section p { color: rgba(255,255,255,0.8); margin: 0 auto 2.2rem; max-width: 600px; font-size: 1.1rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #020914;
  color: rgba(255,255,255,0.7);
  padding: 4.5rem clamp(1rem, 5vw, 6%) 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 42px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer-heading {
  color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--t-fast); }
.footer-link:hover { color: #55d9ff; transform: translateX(3px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.9rem; font-size: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal-light); flex-shrink: 0; margin-top: 0.25rem; }

.footer-bottom {
  max-width: var(--container-max); margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: #55d9ff; }

/* ── WhatsApp Floating Button ────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 800;
  transition: all var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ── Responsive Rules ─────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .mobile-toggle { display: flex; }
  .hero { flex-direction: column; min-height: auto; padding-top: 7rem; padding-bottom: 0; }
  .hero-content { width: 100%; max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-visual { position: relative; right: auto; width: 100%; height: min(92vw, 650px); min-height: 500px; margin-top: -1rem; }
  .globe-stage { width: min(720px, 96vw); top: 48%; }
  .globe-visual-status { left: 9%; bottom: 10%; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { height: 430px; min-height: 430px; margin-top: .5rem; }
  .globe-stage { width: 112vw; max-width: 620px; }
  .globe-visual-status { left: 14%; bottom: 9%; font-size: .57rem; gap: .35rem; padding: .45rem .65rem; }
  .globe-visual-status strong { font-size: .55rem; }
  .orbit-flight { width: 88px; height: 38px; left: -37px; top: calc(50% - 19px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 1.75rem 1.25rem; }
  .contact-info-card { padding: 1.75rem 1.25rem; }
}


/* ── Utility & Helper Classes ────────────────────────────────────────────── */
.bg-light { background-color: var(--bg-soft) !important; }
.bg-surface { background-color: var(--bg-surface) !important; }
.bg-primary { background-color: var(--navy-deep) !important; color: var(--white) !important; }
.bg-navy { background-color: var(--navy-deep) !important; color: var(--white) !important; }

.text-primary { color: var(--navy) !important; }
.text-accent { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-sm { font-size: 0.88rem !important; }
.text-lg { font-size: 1.15rem !important; }

.mb-1 { margin-bottom: 0.35rem !important; }
.mb-2 { margin-bottom: 0.65rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2.25rem !important; }

.mt-1 { margin-top: 0.35rem !important; }
.mt-2 { margin-top: 0.65rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2.25rem !important; }

.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2.25rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 2rem !important; }

.list-disc { list-style-type: disc !important; }
.list-decimal { list-style-type: decimal !important; }

.page-title { font-size: clamp(2.2rem, 4vw, 3.2rem) !important; color: var(--white) !important; margin-bottom: 0.75rem !important; }
.page-subtitle { font-size: 1.12rem !important; color: rgba(255,255,255,0.8) !important; max-width: 680px !important; line-height: 1.7 !important; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem) !important; margin-bottom: 0.85rem !important; }
.section-subtitle { color: var(--text-muted) !important; font-size: 1.08rem !important; max-width: 650px !important; margin: 0 auto 2rem auto !important; }

.card-body { padding: 0 !important; width: 100%; }

/* --------------------------------------------------------------------------
   Production hardening: Hostinger/shared-hosting rendering fallback
   -------------------------------------------------------------------------- */
main { display: block; width: 100%; }
.page-hero {
  display: block !important;
  min-height: 300px;
  padding: 8.5rem clamp(1.2rem, 5vw, 6%) 4rem !important;
  background: radial-gradient(circle at 80% 30%, #082855 0%, #031124 70%, #020813 100%) !important;
  color: #fff !important;
}
.page-hero .container { display:block !important; max-width:1240px; margin:0 auto; }
.page-hero h1 { display:block !important; color:#fff !important; }
.page-hero .lead { display:block !important; color:rgba(255,255,255,.78) !important; }
.section { display:block !important; width:100%; }
.contact-grid { display:grid !important; grid-template-columns:minmax(0,1fr) minmax(0,1.35fr) !important; }
.contact-info-card { display:block !important; background:#062653 !important; color:#fff !important; position:relative !important; top:auto !important; }
.contact-form-card { display:block !important; background:#fff !important; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns:1fr !important; }
  .page-hero { min-height:260px; padding-top:7rem !important; }
  }

@media (prefers-reduced-motion: reduce) {
  .hero-globe-image, .globe-aura, .globe-orbit, .live-dot { animation: none !important; }
}


/* ========================================================================
   TRIVENS GLOBAL - MOBILE HERO / GLOBE OPTIMISATION
   Added: 2026-08-24
   Purpose: prevent horizontal overflow, keep the globe fully visible,
   and make the orbital aircraft animation usable on small screens.
   ======================================================================== */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

@media (max-width: 992px) {
  .site-header .header-inner {
    min-height: 68px;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: .75rem;
  }
  .brand { gap: .6rem; }
  .brand img { height: 38px; width: 38px; }
  .brand-name { font-size: 1rem; }
  .brand-tagline { font-size: .56rem; letter-spacing: 1.15px; }

  .hero {
    min-height: auto;
    padding: 7rem 1rem 0;
    overflow: hidden;
  }
  .hero-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    font-size: .68rem;
    letter-spacing: .06em;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.08;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
  .hero-lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: .98rem;
    line-height: 1.65;
  }
  .hero-actions { flex-wrap: wrap; }
  .hero-trust-badges { flex-wrap: wrap; }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: min(92vw, 600px);
    min-height: 390px;
    margin: 0 auto;
    overflow: visible;
  }
  .globe-stage {
    width: min(92vw, 570px);
    max-width: 570px;
    left: 50%;
    top: 50%;
  }
  .hero-globe-image {
    inset: 4%;
    width: 92%;
    height: 92%;
  }
  .globe-orbit {
    width: 106%;
    height: 34%;
  }
  .globe-orbit-two {
    width: 100%;
    height: 40%;
  }
  .orbit-flight {
    width: 86px;
    height: 33px;
    left: -38px;
    top: calc(50% - 16.5px);
  }
  .globe-visual-status {
    left: 7%;
    bottom: 8%;
    transform: scale(.9);
    transform-origin: left bottom;
  }
}

@media (max-width: 600px) {
  .site-header .header-inner {
    padding-top: .65rem;
    padding-bottom: .65rem;
  }
  .brand img { height: 35px; width: 35px; }
  .brand-name { font-size: .95rem; }
  .brand-tagline { font-size: .5rem; letter-spacing: .95px; }
  .header-actions { gap: .25rem; }
  .mobile-toggle { width: 40px; height: 40px; }

  .hero {
    padding-top: 6.3rem;
    padding-left: .9rem;
    padding-right: .9rem;
  }
  .hero-eyebrow {
    font-size: .6rem;
    padding: .42rem .68rem;
    white-space: normal;
    line-height: 1.35;
  }
  .hero-content h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -.035em;
  }
  .hero-lead {
    font-size: .9rem;
    line-height: 1.6;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: .7rem;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    gap: .45rem;
  }
  .trust-badge {
    justify-content: center;
    text-align: center;
    font-size: .68rem;
  }

  .hero-visual {
    height: 390px;
    min-height: 390px;
    margin-top: .25rem;
    overflow: hidden;
  }
  .globe-stage {
    width: min(94vw, 430px);
    max-width: 430px;
    top: 47%;
  }
  .globe-aura { filter: blur(7px); }
  .hero-globe-image {
    inset: 5%;
    width: 90%;
    height: 90%;
    filter: drop-shadow(0 0 18px rgba(31,137,255,.25));
  }
  .globe-orbit {
    width: 104%;
    height: 31%;
    border-width: 1px;
  }
  .globe-orbit-one {
    transform: translate(-50%, -50%) rotate(-10deg);
    animation-duration: 9.5s;
  }
  .globe-orbit-two {
    width: 98%;
    height: 36%;
    transform: translate(-50%, -50%) rotate(28deg);
    animation-duration: 12s;
  }
  .orbit-flight {
    width: 70px;
    height: 27px;
    left: -31px;
    top: calc(50% - 13.5px);
  }
  .orbit-flight img { filter: drop-shadow(0 0 6px rgba(69,217,255,.6)); }
  .globe-visual-status { display: none; }
}

@media (max-width: 380px) {
  .hero { padding-left: .75rem; padding-right: .75rem; }
  .hero-content h1 { font-size: 1.82rem; }
  .hero-lead { font-size: .86rem; }
  .hero-visual { height: 340px; min-height: 340px; }
  .globe-stage { width: 94vw; }
  .orbit-flight { width: 62px; height: 24px; left: -28px; top: calc(50% - 12px); }
}

/* On very small screens one aircraft gives a cleaner, more readable orbit. */
@media (max-width: 480px) {
  .globe-orbit-two { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-globe-image,
  .globe-aura,
  .globe-orbit,
  .live-dot { animation: none !important; }
}


/* ========================================================================
   TRIVENS GLOBAL - FINAL 3D GLOBE + SINGLE AIRCRAFT ORBIT
   2026-08-24
   Replaces the previous duplicate-aircraft / flat-orbit treatment.
   Uses the supplied realistic globe and aircraft assets only.
   ======================================================================== */

.hero-visual {
  perspective: 1400px;
  perspective-origin: 55% 48%;
  isolation: isolate;
}

.globe-stage {
  transform-style: preserve-3d;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  overflow: visible;
}

.globe-aura {
  z-index: 0;
  pointer-events: none;
  animation: globeAuraPulse3D 6s ease-in-out infinite;
  will-change: transform, opacity;
}

.globe-3d {
  position: absolute;
  inset: 3%;
  z-index: 2;
  display: block;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  animation: globe3DRotation 22s linear infinite;
}

.globe-3d::before {
  content: '';
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%,
    rgba(255,255,255,.13) 0%,
    rgba(69,217,255,.07) 28%,
    rgba(0,0,0,0) 62%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}

.hero-globe-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  filter:
    drop-shadow(0 0 24px rgba(31,137,255,.28))
    drop-shadow(0 0 7px rgba(69,217,255,.14));
  animation: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
}

.globe-sheen {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(ellipse at 28% 25%,
      rgba(255,255,255,.18) 0%,
      rgba(69,217,255,.06) 20%,
      transparent 45%);
  mix-blend-mode: screen;
  opacity: .72;
  transform: translateZ(12px);
}

.globe-orbit {
  z-index: 6;
  width: 116%;
  height: 38%;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(69,217,255,.72);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 7px rgba(69,217,255,.28),
    0 0 24px rgba(69,217,255,.08);
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  animation: aircraftOrbit3D 9.5s linear infinite;
}

.globe-orbit::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(240,207,101,.34);
  opacity: .48;
  filter: blur(.4px);
  pointer-events: none;
}

.orbit-route-glow {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(69,217,255,.26);
  border-bottom-color: rgba(240,207,101,.22);
  filter: blur(5px);
  opacity: .85;
  pointer-events: none;
}

.orbit-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 14px currentColor, 0 0 26px currentColor;
}

.orbit-node-a {
  left: 16%;
  top: 50%;
  background: #45d9ff;
  color: #45d9ff;
  transform: translate(-50%, -50%);
}

.orbit-node-b {
  right: 13%;
  top: 50%;
  background: #f0cf65;
  color: #f0cf65;
  transform: translate(50%, -50%);
}

.orbit-flight {
  position: absolute;
  left: -58px;
  top: calc(50% - 26px);
  width: 126px;
  height: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: translateZ(20px);
  pointer-events: none;
}

.orbit-flight img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 7px rgba(69,217,255,.75))
    drop-shadow(0 0 18px rgba(69,217,255,.25));
  transform: rotate(7deg) translateZ(18px);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.globe-visual-status {
  z-index: 12;
}

@keyframes globe3DRotation {
  0% {
    transform: rotateY(0deg) rotateX(0deg) scale(1);
  }
  12% {
    transform: rotateY(43deg) rotateX(1deg) scale(.985);
  }
  25% {
    transform: rotateY(90deg) rotateX(0deg) scale(.93);
  }
  37% {
    transform: rotateY(137deg) rotateX(-1deg) scale(.985);
  }
  50% {
    transform: rotateY(180deg) rotateX(0deg) scale(1);
  }
  62% {
    transform: rotateY(223deg) rotateX(1deg) scale(.985);
  }
  75% {
    transform: rotateY(270deg) rotateX(0deg) scale(.93);
  }
  87% {
    transform: rotateY(317deg) rotateX(-1deg) scale(.985);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg) scale(1);
  }
}

@keyframes aircraftOrbit3D {
  0% {
    transform: translate(-50%, -50%) rotateX(64deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(64deg) rotateZ(360deg);
  }
}

@keyframes globeAuraPulse3D {
  0%, 100% {
    opacity: .62;
    transform: scale(1.03) translateZ(0);
  }
  50% {
    opacity: .95;
    transform: scale(1.09) translateZ(0);
  }
}

/* Keep only the final single-aircraft orbit. */
.globe-orbit-two,
.orbit-flight-two {
  display: none !important;
}

/* Desktop composition */
@media (min-width: 993px) {
  .hero-visual {
    right: -2%;
    width: 60%;
  }

  .globe-stage {
    width: min(760px, 96%);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero-visual {
    perspective: 1100px;
  }

  .globe-stage {
    width: min(94vw, 600px);
  }

  .globe-orbit {
    width: 114%;
    height: 38%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    overflow: hidden;
  }

  .hero-visual {
    height: 410px;
    min-height: 410px;
    perspective: 900px;
    overflow: visible;
  }

  .globe-stage {
    width: min(96vw, 440px);
    max-width: 440px;
    top: 47%;
    perspective: 900px;
  }

  .globe-3d {
    inset: 5%;
    animation-duration: 25s;
  }

  .hero-globe-image {
    filter:
      drop-shadow(0 0 17px rgba(31,137,255,.3))
      drop-shadow(0 0 5px rgba(69,217,255,.14));
  }

  .globe-orbit {
    width: 112%;
    height: 34%;
    border-color: rgba(69,217,255,.65);
    animation-duration: 11s;
  }

  .orbit-route-glow {
    filter: blur(4px);
    opacity: .72;
  }

  .orbit-flight {
    width: 78px;
    height: 32px;
    left: -36px;
    top: calc(50% - 16px);
  }

  .orbit-flight img {
    filter:
      drop-shadow(0 0 6px rgba(69,217,255,.72))
      drop-shadow(0 0 12px rgba(69,217,255,.2));
  }

  .orbit-node {
    width: 7px;
    height: 7px;
  }

  .globe-sheen {
    opacity: .55;
  }

  .globe-visual-status {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-visual {
    height: 355px;
    min-height: 355px;
  }

  .globe-stage {
    width: 96vw;
  }

  .globe-orbit {
    width: 109%;
    height: 33%;
  }

  .orbit-flight {
    width: 68px;
    height: 28px;
    left: -32px;
    top: calc(50% - 14px);
  }
}

/* Motion/accessibility */
@media (prefers-reduced-motion: reduce) {
  .globe-3d,
  .globe-aura,
  .globe-orbit,
  .live-dot {
    animation: none !important;
  }
}


/* ========================================================================
   TRIVENS GLOBAL - EXACT REFERENCE GLOBE + AIRCRAFT ORBIT
   Based directly on the supplied reference animation package.
   Globe is stationary. One aircraft orbits behind/in front for depth.
   ======================================================================== */

.exact-orbit-scene {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  overflow: visible;
}

.exact-reference-globe {
  position: absolute !important;
  inset: 3% !important;
  width: 94% !important;
  height: 94% !important;
  object-fit: contain !important;
  z-index: 20 !important;
  display: block !important;
  margin: 0 !important;
  animation: none !important;
  transform: none !important;
  filter: drop-shadow(0 18px 30px rgba(0, 85, 180, .20)) !important;
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
}

.reference-plane {
  position: absolute;
  width: clamp(180px, 27vw, 300px);
  height: auto;
  left: 50%;
  top: 50%;
  display: block;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
}

.reference-plane img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(69,217,255,.58))
    drop-shadow(0 0 18px rgba(69,217,255,.18));
  user-select: none;
  -webkit-user-drag: none;
}

.reference-plane-back {
  z-index: 10 !important;
}

.reference-plane-front {
  z-index: 30 !important;
}

.exact-orbit-scene .globe-aura {
  z-index: 2 !important;
  animation: globeAuraPulseExact 6s ease-in-out infinite !important;
}

.exact-orbit-scene .globe-visual-status {
  z-index: 40 !important;
}

@keyframes globeAuraPulseExact {
  0%, 100% {
    opacity: .60;
    transform: scale(1.03);
  }
  50% {
    opacity: .92;
    transform: scale(1.09);
  }
}

@media (max-width: 992px) {
  .reference-plane {
    width: clamp(160px, 31vw, 260px);
  }
}

@media (max-width: 700px) {
  .exact-orbit-scene {
    width: min(88vw, 560px);
    margin-inline: auto;
  }

  .reference-plane {
    width: clamp(145px, 34vw, 230px);
  }

  .exact-reference-globe {
    inset: 4% !important;
    width: 92% !important;
    height: 92% !important;
  }
}

@media (max-width: 380px) {
  .reference-plane {
    width: clamp(125px, 38vw, 190px);
  }

  .exact-reference-globe {
    inset: 5% !important;
    width: 90% !important;
    height: 90% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-plane {
    animation: none !important;
  }
}

/* TRUE 3D GLOBE / FLIGHT ROUTES
   Recreated from the supplied Trivens Global reference implementation. */
.true-3d-hero{position:relative!important;overflow:hidden!important;isolation:isolate!important}
.trivens-globe{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;z-index:1!important}
.trivens-globe canvas{display:block!important;outline:none!important}
.flight-aircraft{position:absolute!important;width:88px!important;height:88px!important;z-index:8!important;pointer-events:none!important;transform-origin:center!important;filter:drop-shadow(0 0 13px rgba(69,217,255,.52))!important}
.flight-aircraft-small{width:70px!important;height:70px!important;filter:drop-shadow(0 0 11px rgba(22,135,255,.48))!important}
.flight-aircraft img{width:100%!important;height:100%!important;object-fit:contain!important;display:block!important}
.flight-label{position:absolute!important;z-index:9!important;pointer-events:none!important;padding:6px 9px!important;border-radius:999px!important;background:rgba(3,17,28,.80)!important;border:1px solid #24617c!important;color:#9de9ff!important;font-size:9px!important;letter-spacing:.12em!important;white-space:nowrap!important}
.globe-3d-status{position:absolute;right:4%;bottom:7%;z-index:12;display:flex;align-items:center;gap:8px;padding:10px 13px;border:1px solid rgba(36,80,106,.75);background:rgba(3,17,28,.78);backdrop-filter:blur(10px);border-radius:999px;color:#91aac0;font-size:9px;letter-spacing:.12em}
.globe-3d-status strong{color:#55d9ff;font-size:9px}
@media(max-width:800px){
  .flight-label{display:none!important}
  .globe-3d-status{right:5%;bottom:5%;font-size:8px;padding:8px 10px}
  .globe-3d-status strong{font-size:8px}
  .flight-aircraft{width:64px!important;height:64px!important}
  .flight-aircraft-small{width:52px!important;height:52px!important}
}
@media(max-width:480px){
  .globe-3d-status{display:none!important}
  .flight-aircraft{width:52px!important;height:52px!important}
  .flight-aircraft-small{width:44px!important;height:44px!important}
}


/* ========================================================================
   TRIVENS GLOBAL HERO FINISHING PASS - 2026-09-12
   Blue Marble globe, true depth-aware aircraft, stronger typography and
   cleaner header branding. These rules intentionally override legacy hero CSS.
   ======================================================================== */
.header-dark .site-header .brand-text { display:none !important; }
.header-dark .site-header .brand { gap:0 !important; }
.header-dark .site-header .brand img { width:52px !important; height:52px !important; object-fit:contain; }

.hero {
  min-height: 720px !important;
  background:
    radial-gradient(circle at 76% 43%, rgba(24,121,255,.20) 0%, rgba(7,54,111,.18) 25%, transparent 48%),
    linear-gradient(118deg, #020b19 0%, #03172f 46%, #05295a 100%) !important;
  padding-top: 6.8rem !important;
  padding-bottom: 3.5rem !important;
}
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:linear-gradient(90deg, rgba(1,7,16,.76) 0%, rgba(1,10,24,.44) 43%, rgba(1,11,25,0) 72%);
}
.hero::after {
  background:radial-gradient(circle at 77% 49%, rgba(44,163,255,.16), transparent 38%) !important;
}
.hero-content {
  width:min(49%, 650px) !important;
  max-width:650px !important;
  z-index:20 !important;
  transform:translateY(-1.5rem);
}
.hero-eyebrow {
  display:inline-flex !important;
  align-items:center;
  gap:.55rem;
  margin-bottom:1.05rem !important;
  padding:.42rem .72rem !important;
  border:1px solid rgba(70,210,255,.28);
  border-radius:999px;
  background:rgba(4,34,67,.58);
  color:#8fe6ff !important;
  font-size:.74rem !important;
  font-weight:700;
  letter-spacing:.045em !important;
  box-shadow:0 8px 28px rgba(0,0,0,.16);
}
.hero-eyebrow .dot {
  width:7px !important;
  height:7px !important;
  background:#45d9ff !important;
  box-shadow:0 0 12px rgba(69,217,255,.85);
}
.hero-content h1 {
  color:#f6fbff !important;
  font-size:clamp(2.8rem,4.2vw,4.25rem) !important;
  line-height:1.05 !important;
  letter-spacing:-.045em !important;
  margin-bottom:1.25rem !important;
  text-shadow:0 5px 28px rgba(0,0,0,.28);
}
.hero-content h1 .highlight {
  color:#46cfff !important;
  background:linear-gradient(90deg,#54d9ff 0%,#8cecff 52%,#39aaff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-lead {
  color:rgba(224,238,250,.82) !important;
  max-width:620px !important;
  font-size:1.04rem !important;
  line-height:1.72 !important;
  margin-bottom:1.65rem !important;
}
.hero-actions { gap:.8rem !important; }
.hero-trust-badges { gap:.55rem !important; margin-top:1.1rem; }
.trust-badge {
  color:rgba(211,229,243,.72) !important;
  background:rgba(255,255,255,.045) !important;
  border-color:rgba(144,190,225,.16) !important;
  backdrop-filter:blur(8px);
}
.hero-visual {
  width:62% !important;
  right:-3% !important;
  z-index:5 !important;
  min-height:620px !important;
}
.trivens-globe {
  z-index:2 !important;
  filter:drop-shadow(0 0 34px rgba(23,139,255,.18));
}
.trivens-globe canvas { cursor:grab; }
.trivens-globe canvas:active { cursor:grabbing; }
.flight-label {
  z-index:12 !important;
  transform:translateZ(0);
  transition:opacity 120ms linear;
  background:rgba(2,18,36,.82) !important;
  border-color:rgba(74,201,255,.42) !important;
  color:#b9f1ff !important;
  box-shadow:0 5px 18px rgba(0,0,0,.22);
}
.globe-3d-status {
  right:3.5% !important;
  bottom:5.5% !important;
  z-index:14 !important;
  background:rgba(2,18,36,.76) !important;
  border-color:rgba(69,180,255,.30) !important;
  box-shadow:0 8px 26px rgba(0,0,0,.22);
}

@media (max-width: 992px) {
  .hero { min-height:auto !important; padding-top:7.2rem !important; }
  .hero-content { width:100% !important; max-width:760px !important; transform:none; }
  .hero-visual { width:100% !important; right:auto !important; min-height:500px !important; height:min(82vw,620px) !important; }
}
@media (max-width: 600px) {
  .header-dark .site-header .brand img { width:43px !important; height:43px !important; }
  .hero { padding-top:6.5rem !important; }
  .hero-content h1 { font-size:clamp(2.05rem,9vw,2.8rem) !important; }
  .hero-lead { font-size:.94rem !important; line-height:1.62 !important; }
  .hero-visual { height:430px !important; min-height:430px !important; }
  .flight-label { display:none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .trivens-globe canvas { cursor:default; }
}

/* FINAL HERO / HEADER FIX - 2026-09-12 */
.header-dark .site-header .brand-name-only {
  display:flex !important;
  align-items:center;
  gap:0 !important;
  min-width:180px;
}
.header-dark .site-header .brand-wordmark {
  display:block;
  color:#f7fbff !important;
  font-size:1.18rem;
  font-weight:800;
  letter-spacing:-0.035em;
  line-height:1;
  white-space:nowrap;
  text-shadow:0 2px 16px rgba(43,184,255,.16);
}
.header-dark .site-header .brand-wordmark::after {
  content:'GLOBAL MOBILITY';
  display:block;
  margin-top:5px;
  color:rgba(158,206,232,.60);
  font-size:.55rem;
  font-weight:700;
  letter-spacing:.18em;
}
.true-3d-hero { overflow:visible !important; }
.trivens-globe { overflow:visible !important; }
.trivens-globe canvas { width:100% !important; height:100% !important; display:block !important; }
@media (min-width:993px) {
  .hero-content { width:min(47%, 630px) !important; }
  .hero-visual { width:61% !important; right:-1% !important; min-height:650px !important; }
}
