﻿:root {
  --navy: #0b0b0a;
  --navy-2: #171714;
  --blue: #111111;
  --cyan: #c5bd22;
  --gold: #f3df08;
  --paper: #f7f6ef;
  --white: #ffffff;
  --muted: #686760;
  --ink: #111111;
  --line: rgba(17, 17, 17, 0.14);
  --olive: #b9b31c;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", "GeistSans", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(6, 24, 33, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  width: 76px;
  height: 48px;
  place-items: start center;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.brand-logo img {
  width: 76px;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.brand-name {
  max-width: 220px;
  overflow: hidden;
  color: currentColor;
  font-family: "Arial Black", "Geist", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 0.95;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header.is-scrolled .main-nav {
  color: var(--ink);
  text-shadow: none;
}

.main-nav a,
.language-toggle {
  opacity: 0.86;
}

.main-nav a:hover,
.language-toggle:hover {
  opacity: 1;
}

.language-toggle {
  display: inline-grid;
  min-width: 44px;
  min-height: 36px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .language-toggle:hover,
.site-header.is-scrolled .language-toggle:focus-visible {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 2px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(22px, 7vw, 110px) 90px;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.92), rgba(3, 7, 8, 0.66) 48%, rgba(3, 7, 8, 0.18)),
    linear-gradient(0deg, rgba(3, 7, 8, 0.76), transparent 54%),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2200&q=85")
      center / cover;
  transform: scale(1.02);
}

.hero-inner {
  width: min(920px, 100%);
}

.hero-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 7.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(243, 223, 8, 0.58);
  border-radius: 14px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 42px rgba(243, 223, 8, 0.22);
  font-weight: 950;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(243, 223, 8, 0.28);
  background: #fff04a;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 92px);
}

.company {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f8f7f2;
}

.company::before {
  display: none;
}

.company::after {
  content: "";
  position: absolute;
  right: clamp(-42px, -2vw, -18px);
  bottom: 42px;
  width: clamp(340px, 34vw, 620px);
  aspect-ratio: 690 / 120;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.company-heading {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.company-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.96;
}

.company-heading h2 span {
  color: var(--gold);
}

.company-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 96px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 10px 26px rgba(243, 223, 8, 0.58);
}

.company-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 680px);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  justify-content: center;
  width: min(1500px, 100%);
  margin: 0 auto;
  z-index: 1;
}

.company-left {
  display: grid;
  gap: 22px;
}

.company-logo-card,
.company-facts article,
.company-info-card {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(17, 17, 17, 0.07);
}

.company-logo-card {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

.company-logo-card::before {
  display: none;
}

.company-logo-img {
  position: relative;
  width: min(360px, 96%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24));
}

.company-facts {
  display: grid;
  gap: 12px;
}

.company-facts article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 15px 18px;
  border-radius: 4px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
}

.fact-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #a89900;
  background: transparent;
  box-shadow: none;
}
.fact-icon svg {
  position: relative;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-facts small,
.company-card-head > span:last-child {
  display: block;
  color: #a89900;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.routes-content h2,
.identity-copy h2,
.contact-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.company-facts strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.company-cards {
  display: grid;
  gap: 18px;
}

.company-info-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 244, 0.94)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.08);
}

.company-info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(243, 223, 8, 0.24));
}

.company-info-card::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -64px;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(243, 223, 8, 0.08);
  pointer-events: none;
}

.company-info-card.large {
  min-height: 278px;
  color: var(--ink);
}

.company-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.company-card-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #a89900;
  background: transparent;
  box-shadow: none;
}

.company-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.company-info-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #262620;
  font-size: 0.96rem;
  line-height: 1.74;
}

.company-info-card p:first-of-type {
  margin-top: 0;
}

.section-heading p,
.routes-content p,
.identity-copy p,
.contact-head p,
.form-title p {
  color: var(--muted);
}

.routes {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding: clamp(78px, 10vw, 122px) clamp(22px, 6vw, 92px);
  color: var(--ink);
  background:
    radial-gradient(circle at 68% 42%, rgba(243, 223, 8, 0.16), transparent 30%),
    linear-gradient(90deg, #f8f7f2 0%, #f3f0e7 100%);
  isolation: isolate;
}

.routes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.45), transparent);
}

.routes-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(430px, 1fr);
  gap: clamp(38px, 5.8vw, 82px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.routes-content {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
}

.routes-content h2 {
  max-width: 540px;
  color: var(--ink);
  font-size: clamp(3rem, 5.3vw, 5.9rem);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.routes-content p {
  max-width: 520px;
  color: #32322d;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.route-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.route-badges span {
  position: relative;
  overflow: hidden;
  padding: 12px 15px 12px 17px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.055);
  font-size: 0.88rem;
  font-weight: 900;
}

.route-badges span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 223, 8, 0.14);
  vertical-align: 1px;
}

.ports-panel {
  position: relative;
  margin-top: 28px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 100% 0%, rgba(243, 223, 8, 0.16), transparent 36%);
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.07);
}

.ports-panel::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.ports-panel > span {
  display: block;
  margin-bottom: 16px;
  padding-left: 12px;
  color: #9f9000;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ports-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0 0 0 12px;
  counter-reset: ports;
  list-style: none;
}

.ports-panel li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  font-weight: 900;
}

.ports-panel li::before {
  counter-increment: ports;
  content: counter(ports, decimal-leading-zero);
  flex: 0 0 auto;
  color: #b8a600;
  font-size: 0.72rem;
  font-weight: 950;
}

.americas-map {
  position: relative;
  margin: 0;
  min-height: auto;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(590px, 100%);
}

.americas-map::before {
  content: "";
  position: absolute;
  inset: 9% 2% 9%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 223, 8, 0.13), transparent 58%),
    radial-gradient(circle, rgba(17, 17, 17, 0.08), transparent 64%);
  filter: blur(18px);
}

.map-globe {
  position: relative;
  width: 100%;
  max-width: 590px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  isolation: isolate;
}

.map-globe::before,
.map-globe::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.map-globe::before {
  inset: 0;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 42%, rgba(243, 223, 8, 0.1), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.14) 42%, rgba(248, 247, 242, 0.04) 70%, transparent 73%);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.28),
    0 20px 48px rgba(17, 17, 17, 0.07);
}

.map-globe::after {
  inset: 7%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(17, 17, 17, 0.035) 50%, transparent 50.15%),
    linear-gradient(0deg, transparent 49.85%, rgba(17, 17, 17, 0.03) 50%, transparent 50.15%),
    radial-gradient(ellipse at center, transparent 36%, rgba(17, 17, 17, 0.028) 37%, transparent 38%, transparent 57%, rgba(17, 17, 17, 0.024) 58%, transparent 59%);
  opacity: 0.72;
}

.map-globe img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 84%;
  height: 84%;
  object-fit: contain;
  transform: translate(3%, -1%);
  filter: drop-shadow(0 14px 18px rgba(17, 17, 17, 0.1));
}

.map-orbit {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(530px, 92%);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(390px, 70%);
  aspect-ratio: 1;
  border-color: rgba(243, 223, 8, 0.34);
}


.map-route-fill {
  position: absolute;
  z-index: 1;
  right: 8%;
  top: 15%;
  width: 24%;
  height: 36%;
  overflow: visible;
  opacity: 0.42;
  pointer-events: none;
}

.map-route-fill path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  filter: drop-shadow(0 8px 12px rgba(243, 223, 8, 0.24));
}

.map-route-fill path + path {
  stroke-width: 1.4;
  opacity: 0.58;
}

.map-route-fill circle {
  fill: rgba(255, 255, 255, 0.82);
  stroke: var(--gold);
  stroke-width: 2;
}
.map-label {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
  font-size: clamp(0.66rem, 0.78vw, 0.76rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.label-north {
  left: 35%;
  top: 20%;
}

.label-central {
  left: 36%;
  top: 52%;
}

.label-antilles {
  right: 12%;
  top: 46%;
}

.label-south {
  right: 16%;
  bottom: 20%;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 223, 8, 0.12), transparent 26%),
    radial-gradient(circle at 78% 28%, rgba(17, 17, 17, 0.045), transparent 28%),
    radial-gradient(rgba(17, 17, 17, 0.055) 1.5px, transparent 1.5px),
    #f8f7f2;
  background-size: auto, auto, 32px 32px, auto;
}

.section-heading {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.55rem);
  line-height: 1.04;
}

.services .section-label {
  color: #77715a;
}

.services .section-heading::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--gold) 0 48%, transparent 48% 62%, rgba(17, 17, 17, 0.32) 62% 78%, transparent 78% 86%, rgba(243, 223, 8, 0.52) 86%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 32px);
  width: min(1060px, 100%);
  margin: 0 auto;
}

.service-card {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 244, 0.9)),
    var(--white);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.08);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 32px 76px rgba(17, 17, 17, 0.14);
}

.service-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(17, 17, 17, 0.18);
  font-size: 0.86rem;
  font-weight: 950;
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: #a89900;
  background: transparent;
  box-shadow: none;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-card::before,
.company-info-card::after,
.contact-cards article::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(243, 223, 8, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.company-info-card,
.company-facts article,
.route-badges span,
.contact-cards article,
.contact-form {
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.company-info-card:hover,
.company-facts article:hover,
.contact-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 223, 8, 0.34);
  box-shadow: 0 24px 62px rgba(17, 17, 17, 0.12);
}

.route-badges span:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 223, 8, 0.42);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: #5c6159;
  font-size: 0.93rem;
  line-height: 1.65;
}

.identity {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.identity::before,
.identity::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.identity::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(243, 223, 8, 0.11), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
  opacity: 0.9;
}

.identity::after {
  right: clamp(24px, 8vw, 150px);
  top: 84px;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 223, 8, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(243, 223, 8, 0.08);
}

.identity-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(560px, 640px);
  align-items: center;
  column-gap: clamp(66px, 6vw, 110px);
  width: min(1500px, 100%);
  margin: 0 auto;
}

.identity-copy {
  max-width: 590px;
}

.identity-copy h2 {
  color: var(--white);
  text-wrap: balance;
}

.identity-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.identity-workspace {
  position: relative;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.identity-workspace::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(243, 223, 8, 0.36), transparent 30%, rgba(255, 255, 255, 0.12));
  opacity: 0.42;
}

.identity-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 26px;
}

.tab {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  border-radius: 20px;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.tab.is-active {
  color: var(--ink);
  background: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 12px 28px rgba(243, 223, 8, 0.14);
}

.tab-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.tab-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.identity-panels {
  position: relative;
}

.identity-panel {
  display: none;
  min-height: 274px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.identity-panel.is-active {
  display: block;
  animation: identityPanelIn 420ms cubic-bezier(.2, .8, .2, 1) both;
}

.identity-panel h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.identity-panel h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 4px;
  background: var(--gold);
}

.identity-lead {
  display: block;
  max-width: 610px;
  margin: 0 0 18px;
  color: rgba(243, 223, 8, 0.92);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 900;
  line-height: 1.35;
}

.identity-panel p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.04rem);
  line-height: 1.78;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  border-radius: 10px;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 223, 8, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

@keyframes identityPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) clamp(22px, 6vw, 92px);
  background:
    radial-gradient(circle at 12% 72%, rgba(243, 223, 8, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(17, 17, 17, 0.045), transparent 26%),
    var(--paper);
}

.contact-head {
  width: min(840px, 100%);
  margin: 0 auto 50px;
  text-align: center;
}

.contact-head h2 {
  text-wrap: balance;
}

.contact-shell {
  display: grid;
  gap: 34px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.contact-cards article,
.contact-form {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.contact-cards article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px;
  border-radius: 20px;
}

.contact-cards article::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -54px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(243, 223, 8, 0.13);
}

.contact-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  place-items: center;
  color: var(--ink);
  border-radius: 14px;
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(243, 223, 8, 0.23);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-icon .whatsapp-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}


.contact-cards span:not(.contact-icon) {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.contact-cards strong {
  display: block;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.contact-cards a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-cards a::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: width 220ms ease;
}

.contact-cards a:hover::after {
  width: 28px;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(26px, 4vw, 40px);
  border-top: 4px solid var(--gold);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(243, 223, 8, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

.contact-form-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 18px;
}

.form-title,
.contact-form .full {
  grid-column: 1 / -1;
}

.form-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-left: 0;
  border-radius: 99px;
  color: var(--navy);
  background: rgba(243, 223, 8, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  line-height: 1.05;
}

.form-title p {
  margin: 10px 0 4px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 13px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.26);
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  opacity: 0;
}

.contact-form textarea {
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 223, 8, 0.86);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 223, 8, 0.18);
}

.contact-support {
  align-self: start;
  padding: 30px;
  color: var(--white);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(243, 223, 8, 0.12), transparent 36%),
    var(--navy);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.22);
}

.contact-support .contact-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--ink);
}

.contact-support h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.08;
}

.contact-support p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.contact-form .button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 190px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(243, 223, 8, 0.22);
}
.contact-support a {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(243, 223, 8, 0.22);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  cursor: pointer;
}

.button:hover {
  color: var(--white);
  background: var(--navy-2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 116px) clamp(22px, 6vw, 92px) 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #050505;
}

.footer-curve {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: clamp(48px, 6vw, 76px);
  background: var(--paper);
  clip-path: ellipse(66% 52% at 50% 0%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.5;
}

.footer-shell,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: block;
  width: clamp(112px, 10vw, 148px);
  height: auto;
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
  clip-path: inset(0 0 34% 0);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0;
}

.site-footer p {
  max-width: 380px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer-column span,
.footer-contact span {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.site-footer nav a,
.footer-contact a,
.footer-bottom a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 750;
  transition: color 200ms ease, transform 200ms ease;
}

.site-footer nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(54px, 7vw, 86px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer small {
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(.2, .8, .2, 1),
    transform 720ms cubic-bezier(.2, .8, .2, 1),
    filter 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border-color: rgba(243, 223, 8, 0.42);
    box-shadow: 0 30px 76px rgba(17, 17, 17, 0.16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .language-toggle {
    width: fit-content;
    margin: 10px 14px 8px;
    color: var(--ink);
    border-color: transparent;
    background: transparent;
  }

  .language-toggle:hover,
  .language-toggle:focus-visible {
    border-color: rgba(17, 17, 17, 0.18);
    background: rgba(17, 17, 17, 0.06);
  }

  .company-shell,
  .routes-shell,
  .identity-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .identity-shell {
    max-width: 720px;
    align-items: start;
  }

  .identity-copy {
    max-width: 680px;
  }

  .identity-workspace {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-support {
    width: min(360px, 100%);
  }

  .company-shell {
    max-width: 680px;
  }

  .routes {
    min-height: auto;
  }

  .routes-content {
    width: 100%;
    max-width: 680px;
  }
  .americas-map {
    min-height: auto;
    justify-self: center;
    width: min(590px, 100%);
  }
  .map-globe {
    max-width: 590px;
  }
}

@media (max-width: 640px) {
  .brand-name {
  max-width: 220px;
  overflow: hidden;
  color: currentColor;
  font-family: "Arial Black", "Geist", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 0.95;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

  .hero {
    min-height: 90vh;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .routes-content h2 {
    font-size: clamp(2.6rem, 14vw, 3.55rem);
  }

  .route-badges {
    display: grid;
  }

  .ports-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .ports-panel ul {
    grid-template-columns: 1fr;
  }
  .map-globe {
    max-width: 590px;
  }

  .map-label {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
  font-size: clamp(0.66rem, 0.78vw, 0.76rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

  .label-north {
  left: 35%;
  top: 20%;
}

  .label-central {
  left: 36%;
  top: 52%;
}

  .label-antilles {
  right: 12%;
  top: 46%;
}

  .label-south {
  right: 16%;
  bottom: 20%;
}

  .company-heading h2 {
    font-size: 2.7rem;
  }

  .company-logo-card {
    min-height: 220px;
  }

  .company-logo-img {
    width: min(300px, 94%);
  }

  .company-info-card,
  .company-info-card.large {
    padding: 22px;
  }

  .identity::after {
    width: 150px;
    top: 44px;
    right: -42px;
  }

  .identity-workspace {
    padding: 10px;
  }

  .identity-tabs {
    grid-template-columns: 1fr;
  }

  .tab {
    min-height: 44px;
  }

  .identity-panel {
    min-height: auto;
    padding: 26px 22px;
  }

  .tags {
    display: grid;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-form-main {
    grid-template-columns: 1fr;
  }

  .contact-support {
    order: -1;
  }

  .contact-form .button {
    justify-self: stretch;
  }

  .site-footer {
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-curve {
    height: 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


.contact-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status[data-type="success"] {
  color: #587000;
}

.form-status[data-type="error"] {
  color: #9b1c1c;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}