:root {
  --navy: #071739;
  --navy-2: #0b214d;
  --navy-3: #102b5d;
  --gold: #d4a437;
  --gold-2: #f1d27b;
  --white: #ffffff;
  --silver: #c0c0c0;
  --steel: #7e8ba6;
  --teal: #35d0c5;
  --ink: #030815;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --header-height: 82px;
  --mouse-x: 50%;
  --mouse-y: 20%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(53, 208, 197, 0.13), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(212, 164, 55, 0.15), transparent 24rem),
    linear-gradient(180deg, #040916 0%, #071739 40%, #030815 100%);
  min-height: 100vh;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 360ms ease;
  letter-spacing: 0;
}
body.page-leaving {
  opacity: 0;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
::selection {
  color: var(--ink);
  background: var(--gold-2);
}
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.72;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #102b5d, #030815 62%);
  transition: opacity 480ms ease, visibility 480ms ease;
}
body.page-ready .site-loader {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
}
.loader-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 164, 55, 0.28);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 34px rgba(212, 164, 55, 0.26);
}
.loader-mark strong {
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 800;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(3, 8, 21, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(3, 8, 21, 0.82);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 164, 55, 0.6);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: linear-gradient(145deg, rgba(212, 164, 55, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 26px rgba(212, 164, 55, 0.18);
  font-weight: 800;
}
.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}
.brand strong {
  font-size: 0.98rem;
  font-weight: 800;
}
.brand small {
  margin-top: 4px;
  color: var(--silver);
  font-size: 0.78rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  position: relative;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 240ms ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 11px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-height) + 56px) 0 86px;
}
.hero::before,
.page-hero::before,
.section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 21, 0.88) 0%, rgba(3, 8, 21, 0.55) 42%, rgba(3, 8, 21, 0.35) 100%),
    radial-gradient(circle at 65% 55%, rgba(212, 164, 55, 0.16), transparent 28rem);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #071739 84%);
}
.hero-bg {
  position: absolute;
  inset: -8%;
  z-index: -3;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-8px, -4px, 0); }
  to { transform: scale(1.08) translate3d(10px, 7px, 0); }
}
.hero-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.76;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 60% 45%, #000 0%, transparent 70%);
}
.route {
  position: absolute;
  height: 2px;
  width: 32%;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), transparent);
  filter: drop-shadow(0 0 10px rgba(212, 164, 55, 0.7));
  transform-origin: left center;
  opacity: 0.75;
}
.route::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: routePulse 2.4s ease-in-out infinite;
}
.route-one {
  top: 33%;
  left: 44%;
  transform: rotate(18deg);
  animation: routeTravel 6s ease-in-out infinite;
}
.route-two {
  top: 53%;
  left: 36%;
  transform: rotate(-12deg);
  animation: routeTravel 7.2s ease-in-out infinite 0.4s;
}
.route-three {
  top: 68%;
  left: 50%;
  transform: rotate(9deg);
  animation: routeTravel 8s ease-in-out infinite 1s;
}
@keyframes routeTravel {
  0%, 100% { clip-path: inset(0 100% 0 0); }
  45%, 70% { clip-path: inset(0 0 0 0); }
}
@keyframes routePulse {
  0%, 100% { transform: scale(0.8); opacity: 0.55; }
  50% { transform: scale(1.5); opacity: 1; }
}
.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 24px var(--gold);
  animation: floatDot 7s ease-in-out infinite;
}
.dot-one { top: 24%; left: 70%; }
.dot-two { top: 58%; left: 84%; animation-delay: 0.8s; background: var(--teal); box-shadow: 0 0 24px var(--teal); }
.dot-three { top: 78%; left: 58%; animation-delay: 1.7s; }
@keyframes floatDot {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -22px, 0); }
}
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.floating-icons span {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 164, 55, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  animation: floatIcon 8s ease-in-out infinite;
}
.floating-icons span:nth-child(1) { top: 29%; right: 22%; }
.floating-icons span:nth-child(2) { top: 18%; right: 10%; animation-delay: 0.9s; }
.floating-icons span:nth-child(3) { bottom: 24%; right: 28%; animation-delay: 1.6s; }
.floating-icons span:nth-child(4) { bottom: 17%; right: 12%; animation-delay: 2.2s; }
.floating-icons svg {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}
@keyframes floatIcon {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(4deg); }
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(740px, calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: 5rem;
  line-height: 0.98;
  max-width: 820px;
  color: var(--white);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}
.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.28rem;
  line-height: 1.7;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.58);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
  isolation: isolate;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.btn-primary {
  color: #071027;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 44px rgba(212, 164, 55, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary:hover {
  box-shadow: 0 22px 58px rgba(212, 164, 55, 0.36), 0 0 0 1px rgba(212, 164, 55, 0.35);
}
.btn-ghost:hover {
  border-color: rgba(212, 164, 55, 0.48);
  box-shadow: 0 18px 42px rgba(53, 208, 197, 0.12);
}
.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 680ms ease-out forwards;
  z-index: -1;
}
@keyframes ripple {
  to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}
.hero-status {
  position: absolute;
  left: auto;
  right: 7%;
  bottom: 92px;
  z-index: 3;
  width: min(360px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}
.hero-status strong,
.hero-status small {
  display: block;
}
.hero-status small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 rgba(53, 208, 197, 0.6);
  animation: pulse 1.7s infinite;
  flex: 0 0 auto;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 208, 197, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(53, 208, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 208, 197, 0); }
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: var(--gold-2);
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section::before {
  width: 520px;
  height: 520px;
  right: -260px;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 55, 0.12), transparent 68%);
  z-index: -1;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}
.section-heading.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.section-heading h2,
.section-copy h2,
.cta-panel h2,
.trust-panel h2,
.page-hero h1,
.form-heading h2 {
  margin: 14px 0 0;
  font-size: 3.2rem;
  line-height: 1.08;
}
.section-heading p,
.section-copy p,
.trust-panel p,
.cta-panel p,
.page-hero p,
.blog-card p,
.legacy-panel p,
.mission-grid p,
.value-card p,
.feature-card p,
.service-card p,
.booking-aside p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}
.section-heading p {
  max-width: 540px;
  margin-bottom: 0;
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 58px;
  align-items: center;
}
.split-layout.reverse {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
}
.split-layout.reverse .section-copy {
  order: 2;
}
.glass-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 23, 57, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(circle at 20% 0%, rgba(212, 164, 55, 0.2), transparent 38%);
  opacity: 0;
  transition: opacity 260ms ease;
}
.glass-card:hover::before {
  opacity: 1;
}
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.tilt-card:hover {
  border-color: rgba(212, 164, 55, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(212, 164, 55, 0.08);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}
.trust-strip svg,
.text-link svg {
  width: 16px;
  height: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
  transition: transform 220ms ease, color 220ms ease;
}
.text-link:hover {
  color: var(--white);
  transform: translateX(4px);
}
.visual-stack {
  display: grid;
  gap: 18px;
}
.command-card {
  padding: 26px;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-weight: 800;
}
.progress-rail {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.progress-rail span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 24px rgba(212, 164, 55, 0.35);
  animation: railGlow 2.4s ease-in-out infinite alternate;
}
@keyframes railGlow {
  from { filter: brightness(0.9); }
  to { filter: brightness(1.25); }
}
.ops-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.ops-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.77);
}
.ops-list li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.mini-card {
  width: min(320px, 86%);
  margin-left: auto;
  padding: 22px;
}
.mini-card svg,
.service-card > svg,
.feature-card > svg,
.legacy-panel > svg,
.mission-grid svg,
.value-card svg,
.booking-aside > svg {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
  filter: drop-shadow(0 0 12px rgba(212, 164, 55, 0.28));
}
.mini-card strong,
.mini-card small {
  display: block;
}
.mini-card strong {
  margin-top: 14px;
  font-size: 1.08rem;
}
.mini-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 252px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, border-color 240ms ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 164, 55, 0.8), transparent);
  transform: scaleX(0);
  transition: transform 300ms ease;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card h3,
.feature-card h3,
.value-card h3,
.legacy-panel h3,
.blog-card h2,
.blog-card h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}
.service-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}
.service-card:hover svg,
.feature-card:hover svg,
.value-card:hover svg,
.contact-card:hover svg {
  animation: iconLift 740ms ease;
}
@keyframes iconLift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-6px) rotate(5deg); }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border-left: 1px solid rgba(212, 164, 55, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  border-radius: var(--radius);
}
.timeline-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 20%, rgba(53, 208, 197, 0.12), transparent 30rem);
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 28px rgba(53, 208, 197, 0.08);
}
.timeline-progress {
  position: absolute;
  left: 0;
  top: 42px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 18px rgba(212, 164, 55, 0.58);
  z-index: 1;
  transition: width 140ms linear;
}
.timeline-item {
  position: relative;
  z-index: 2;
  min-height: 136px;
  padding: 78px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 18px rgba(212, 164, 55, 0.5);
}
.timeline-item span {
  position: absolute;
  top: 22px;
  right: 18px;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 800;
}
.timeline-item h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
}
.timeline-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 164, 55, 0.42);
  background: rgba(255, 255, 255, 0.085);
}
.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.industry-cloud span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease;
}
.industry-cloud span:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 164, 55, 0.38);
}
.trust-panel {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 38px;
  align-items: center;
  padding: 44px;
}
.trust-visual {
  position: relative;
  height: 170px;
}
.trust-visual span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(212, 164, 55, 0.33);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  animation: trustFloat 6s ease-in-out infinite;
}
.trust-visual span:nth-child(1) { left: 0; top: 10px; }
.trust-visual span:nth-child(2) { left: 90px; top: 50px; animation-delay: 0.7s; }
.trust-visual span:nth-child(3) { left: 42px; top: 96px; animation-delay: 1.4s; }
.trust-visual svg {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
}
@keyframes trustFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.trust-badges {
  display: grid;
  gap: 12px;
}
.trust-badges strong {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.055);
}
.stats-section {
  padding-top: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 34px 24px;
  text-align: center;
}
.stat-card span,
.stat-card sup {
  display: inline-block;
  color: var(--gold-2);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 24px rgba(212, 164, 55, 0.28);
}
.stat-card sup {
  font-size: 1.5rem;
  transform: translateY(-12px);
}
.stat-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 164, 55, 0.38);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}
.blog-card > div:not(.blog-image) {
  padding: 22px;
}
.blog-card span {
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 800;
}
.blog-card h2,
.blog-card h3 {
  margin-bottom: 10px;
}
.blog-card p {
  margin-bottom: 0;
}
.blog-image {
  height: 190px;
  background-image:
    linear-gradient(180deg, rgba(3, 8, 21, 0.18), rgba(3, 8, 21, 0.82)),
    url("hero-logistics.png");
  background-size: cover;
  transition: transform 420ms ease, filter 420ms ease;
}
.blog-card:hover .blog-image {
  transform: scale(1.05);
  filter: brightness(1.12) saturate(1.08);
}
.image-pos-one { background-position: center; }
.image-pos-two { background-position: 72% 45%; }
.image-pos-three { background-position: 38% 55%; }
.image-pos-four { background-position: 86% 60%; }
.image-pos-five { background-position: 52% 35%; }
.image-pos-six { background-position: 18% 50%; }
.contact-cta {
  padding-top: 30px;
}
.cta-panel {
  position: relative;
  padding: 58px;
  border: 1px solid rgba(212, 164, 55, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 23, 57, 0.92), rgba(16, 43, 93, 0.74)),
    url("hero-logistics.png") center / cover;
  box-shadow: var(--shadow);
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 50%, rgba(212, 164, 55, 0.18), transparent 28rem);
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 70px) 0 82px;
  overflow: hidden;
}
.page-hero.compact-hero {
  min-height: 470px;
}
.page-hero-bg {
  position: absolute;
  inset: -9%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 8, 21, 0.9), rgba(7, 23, 57, 0.62)),
    url("hero-logistics.png") center / cover;
  filter: saturate(1.04);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, #071739);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero h1 {
  font-size: 4rem;
}
.page-hero p {
  max-width: 700px;
  font-size: 1.12rem;
}
.legacy-panel,
.mission-grid article,
.value-card,
.booking-aside {
  padding: 30px;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mission-grid h2 {
  margin: 18px 0 12px;
  font-size: 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-card {
  min-height: 228px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 240ms ease, border-color 240ms ease;
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 164, 55, 0.38);
}
.image-band {
  min-height: 520px;
  display: grid;
  align-items: center;
}
.band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 21, 0.92), rgba(3, 8, 21, 0.48)),
    url("hero-logistics.png") center / cover fixed;
  z-index: -2;
}
.band-content {
  max-width: 760px;
}
.band-content h2 {
  margin: 14px 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1.08;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}
.booking-aside {
  position: sticky;
  top: 98px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}
.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}
.premium-form {
  padding: 34px;
}
.form-heading {
  margin-bottom: 26px;
}
.form-heading h2 {
  font-size: 2.4rem;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field-grid.single {
  grid-template-columns: 1fr;
}
.field {
  position: relative;
}
.field.wide {
  grid-column: 1 / -1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  padding: 20px 15px 9px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.field textarea {
  resize: vertical;
  padding-top: 24px;
}
.field select {
  appearance: none;
}
.field select option {
  color: var(--ink);
}
.field label {
  position: absolute;
  left: 15px;
  top: 18px;
  color: rgba(255, 255, 255, 0.62);
  pointer-events: none;
  transition: transform 170ms ease, color 170ms ease, font-size 170ms ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(212, 164, 55, 0.55);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.09);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  transform: translateY(-12px);
  font-size: 0.72rem;
  color: var(--gold-2);
}
.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #ff6f79;
  animation: shake 260ms ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.field-glow {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 220ms ease;
}
.field:focus-within .field-glow {
  transform: scaleX(1);
}
.form-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}
.form-message {
  min-height: 42px;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 800;
}
.form-message.success {
  position: relative;
  padding-left: 44px;
}
.form-message.success::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(53, 208, 197, 0.45);
}
.form-message.success::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
}
.contact-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  flex: 0 0 auto;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.contact-card p,
.contact-card a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.map-section {
  width: min(1180px, calc(100% - 40px));
  height: 420px;
  margin: 0 auto 110px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.75) invert(0.88) hue-rotate(180deg) contrast(0.95);
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(212, 164, 55, 0.11), transparent 28rem),
    linear-gradient(180deg, rgba(3, 8, 21, 0.1), #030815 42%);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 80px;
  opacity: 0.28;
  background:
    radial-gradient(60px 20px at 10% 100%, transparent 65%, var(--gold) 66%, transparent 70%),
    radial-gradient(60px 20px at 20% 100%, transparent 65%, var(--teal) 66%, transparent 70%);
  background-size: 160px 80px;
  animation: waveMove 14s linear infinite;
}
@keyframes waveMove {
  to { transform: translateX(160px); }
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 1fr;
  gap: 32px;
}
.footer-brand {
  margin-bottom: 18px;
}
.site-footer h3 {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 1rem;
}
.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}
.site-footer a {
  margin: 8px 0;
  transition: color 220ms ease, transform 220ms ease;
}
.site-footer a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.social-row svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2de178, #14a860);
  box-shadow: 0 18px 44px rgba(20, 168, 96, 0.34);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 24px 58px rgba(20, 168, 96, 0.44);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(3, 8, 21, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }
  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hero {
    min-height: 92svh;
  }
  .hero-content {
    width: min(680px, calc(100% - 40px));
  }
  .hero h1,
  .page-hero h1 {
    font-size: 3.35rem;
    line-height: 1.04;
  }
  .hero p {
    font-size: 1.08rem;
  }
  .hero-status,
  .floating-icons {
    display: none;
  }
  .split-layout,
  .split-layout.reverse,
  .form-layout,
  .contact-layout,
  .trust-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split-layout.reverse .section-copy {
    order: 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2,
  .section-copy h2,
  .cta-panel h2,
  .trust-panel h2,
  .band-content h2 {
    font-size: 2.55rem;
  }
  .service-grid,
  .blog-grid,
  .blog-grid.compact,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-aside {
    position: static;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .timeline::before {
    left: 29px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }
  .timeline-progress {
    left: 29px;
    top: 0;
    width: 2px;
    height: 0%;
    transition: height 140ms linear;
  }
  .timeline-item {
    min-height: 118px;
    padding: 24px 18px 22px 72px;
  }
  .timeline-item::before {
    top: 26px;
    left: 20px;
  }
  .timeline-item span {
    top: 24px;
    right: 18px;
  }
  .trust-visual {
    height: 145px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small {
    font-size: 0.72rem;
  }
  .hero {
    padding-top: 128px;
    padding-bottom: 92px;
  }
  .hero-content {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: 14px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }
  .hero p,
  .page-hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero .eyebrow {
    display: flex;
    align-items: flex-start;
  }
  .hero .eyebrow::before {
    flex: 0 0 28px;
    margin-top: 0.7em;
  }
  .hero-actions,
  .trust-strip {
    display: grid;
  }
  .btn {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding: 78px 0;
  }
  .page-hero {
    min-height: 430px;
    padding-bottom: 58px;
  }
  .section-heading h2,
  .section-copy h2,
  .cta-panel h2,
  .trust-panel h2,
  .band-content h2,
  .form-heading h2 {
    font-size: 2.15rem;
  }
  .service-grid,
  .feature-grid,
  .stats-grid,
  .blog-grid,
  .blog-grid.compact,
  .mission-grid,
  .values-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .value-card {
    min-height: auto;
  }
  .cta-panel,
  .premium-form,
  .trust-panel {
    padding: 26px;
  }
  .stat-card span,
  .stat-card sup {
    font-size: 2.8rem;
  }
  .map-section {
    width: min(100% - 28px, 1180px);
    height: 340px;
    margin-bottom: 78px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}