/* CargoFromTurkey — premium blue / white / black */

:root {
  --blue-950: #071422;
  --blue-900: #0c4a6e;
  --blue-850: #0a3d5c;
  --blue-800: #075985;
  --blue-700: #0369a1;
  --blue-600: #0284c7;
  --blue-400: #38bdf8;
  --blue-300: #7dd3fc;
  --black: #050508;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-500: #71717a;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --white: #ffffff;
  --off-white: #f0f5fa;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --header-h: 4.25rem;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(7, 20, 35, 0.08);
  --shadow-lg: 0 32px 64px rgba(7, 20, 35, 0.14);
  --shadow-glow: 0 0 0 1px rgba(56, 189, 248, 0.25), 0 20px 50px rgba(2, 132, 199, 0.2);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-600);
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Hero is above the fold — show immediately */
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .marquee-track {
    animation: none !important;
  }

  .pulse,
  .hero-float-card {
    animation: none !important;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 10px 40px rgba(5, 8, 16, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--black);
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.logo:hover {
  color: var(--black);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-600) 55%, var(--blue-400) 100%);
  box-shadow: 0 6px 20px rgba(7, 89, 133, 0.38);
}

.logo-mark-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  color: rgba(255, 255, 255, 0.96);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--blue-800);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin-inline: auto;
  background: var(--black);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  position: relative;
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: width var(--transition);
}

.nav-list a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--blue-900);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
  background: var(--blue-900);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-row {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-dropdown-parent {
  padding-right: 0.15rem;
}

.nav-dropdown-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--gray-700);
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.nav-dropdown-chevron {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(225deg);
  margin-top: 0.12rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.25rem);
  min-width: 14rem;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    visibility 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 140;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: none;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--blue-900);
  background: var(--off-white);
}

.nav-dropdown-menu a[aria-current="page"] {
  color: var(--blue-900);
  background: rgba(2, 132, 199, 0.1);
}

@media (min-width: 769px) {
  /* Invisible hit-area between “Services” and the panel so :hover is not lost in the gap */
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: -0.35rem;
    right: -0.35rem;
    top: 100%;
    height: 1.05rem;
    z-index: 135;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

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

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .site-nav.nav-open {
    max-height: min(90vh, 640px);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 1.25rem;
    gap: 0;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
  }

  .nav-dropdown-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-dropdown-parent {
    flex: 1;
    padding: 0 !important;
    border-bottom: none !important;
    margin: 0;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 10px;
    background: var(--off-white);
    margin: 0 0 0.5rem;
    padding: 0.25rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 240px;
  }

  .nav-dropdown-menu a {
    padding: 0.55rem 1rem 0.55rem 1.25rem;
    font-size: 0.9rem;
  }

  .nav-list > li:not(.nav-dropdown) > a::after {
    display: none;
  }

  .nav-list > li:not(.nav-dropdown) > a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-list li:last-child .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(3.5rem, 9vw, 6.5rem);
  color: var(--white);
  background: var(--blue-950);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 28px 64px rgba(0, 0, 0, 0.45);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--blue-950);
  background-image: url("images/slider.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.45);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 85% -10%, rgba(56, 189, 248, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(2, 132, 199, 0.28), transparent 48%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.04), transparent 45%),
    linear-gradient(168deg, rgba(10, 31, 51, 0.88) 0%, rgba(7, 20, 35, 0.9) 45%, rgba(3, 8, 16, 0.92) 100%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 4;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.hero-copy {
  max-width: 38rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 12px var(--blue-400);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.text-gradient {
  background: linear-gradient(120deg, var(--blue-300) 0%, var(--white) 45%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--white);
  color: var(--blue-950);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-300);
  color: var(--black);
  border-color: var(--blue-300);
}

.btn-glow:hover {
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-stat {
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stats dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 0.35rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.stat-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-glass {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  padding: 1rem 1rem 1.25rem;
  overflow: hidden;
}

.hero-glass-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-glass-title {
  color: var(--white);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
}

.hero-map {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hero-float-card {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  line-height: 1.35;
  animation: float 5s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hero-float-card span {
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.72rem;
}

.hero-float-card--a {
  top: 8%;
  right: -4%;
}

.hero-float-card--b {
  bottom: 6%;
  left: -6%;
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 959px) {
  .hero-float-card--a {
    right: 0;
  }

  .hero-float-card--b {
    left: 0;
  }
}

/* Marquee */
.marquee-wrap {
  background: var(--black);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.marquee {
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  animation: marquee 32s linear infinite;
}

.marquee-track span:nth-child(even) {
  color: var(--blue-400);
  opacity: 0.9;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: clamp(3.75rem, 8vw, 5.5rem) 0;
}

.section-header {
  margin-bottom: 2.75rem;
  max-width: 44rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.section-kicker--on-dark {
  color: var(--blue-300);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--black);
}

.section-intro {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--gray-700);
}

/* Services */
.services {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.service-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 1.65rem 1.65rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-400));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(7, 89, 133, 0.2);
}

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

.service-card--featured {
  border-color: rgba(7, 89, 133, 0.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 0.25rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  background: var(--off-white);
  color: var(--blue-900);
  border: 1px solid var(--gray-200);
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--black);
}

.service-card p {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--blue-800);
}

.service-link:hover {
  color: var(--blue-600);
}

.service-icon {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.service-icon--air {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
}

.service-icon--sea {
  background: linear-gradient(135deg, var(--black), var(--blue-800));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
}

.service-icon--road {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-400));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17.5 14c-.09 0-.17.01-.25.05L18.67 9H15V6h4l2 8h-3.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17.5 14c-.09 0-.17.01-.25.05L18.67 9H15V6h4l2 8h-3.5z'/%3E%3C/svg%3E") center / 55% no-repeat;
}

/* Process */
.process {
  background: var(--white);
  border-block: 1px solid var(--gray-200);
}

.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.process-step {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  border-color: rgba(7, 89, 133, 0.3);
  box-shadow: var(--shadow);
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}

/* Destinations */
.destinations {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.destinations-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .destinations-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.destinations-copy .section-header {
  margin-bottom: 1.5rem;
}

.region-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.region-list li {
  padding: 0.45rem 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.port-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.port-chip {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px dashed var(--blue-800);
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.8);
}

.destinations-more {
  margin: 1.1rem 0 0;
}

.destinations-more a {
  font-weight: 700;
  color: var(--blue-800);
  text-decoration: none;
}

.destinations-more a:hover {
  color: var(--blue-900);
  text-decoration: underline;
}

.destinations-service-links {
  margin-top: 1.5rem;
  max-width: 40rem;
}

.destinations-panel {
  position: relative;
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-950) 55%, #02060d 100%);
  color: var(--white);
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.destinations-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
  pointer-events: none;
}

.panel-title {
  position: relative;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  z-index: 1;
}

.checklist {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  z-index: 1;
}

.checklist li {
  margin-bottom: 0.7rem;
  padding-left: 0.35rem;
  opacity: 0.92;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.panel-metric {
  position: relative;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  z-index: 1;
}

.panel-metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-300);
  line-height: 1;
}

.panel-metric-label {
  font-size: 0.88rem;
  opacity: 0.85;
  max-width: 14rem;
}

/* Bento */
.bento {
  background: var(--white);
}

.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-cell--wide {
    grid-column: span 2;
  }
}

.bento-cell {
  padding: 1.5rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bento-cell h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
}

.bento-cell p {
  margin: 0;
  font-size: 0.92rem;
}

.bento-cell--dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.88);
  border-color: var(--gray-800);
}

.bento-cell--dark h3 {
  color: var(--white);
}

.bento-cell--accent {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: rgba(255, 255, 255, 0.92);
  border-color: transparent;
}

.bento-cell--accent h3 {
  color: var(--white);
  letter-spacing: -0.015em;
}

/* Quote */
.quote-block {
  background: var(--off-white);
  border-block: 1px solid var(--gray-200);
}

.quote-card {
  margin: 0;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -0.2rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(12, 74, 110, 0.08);
  pointer-events: none;
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  position: relative;
  z-index: 1;
}

.quote-card blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--black);
}

.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.quote-name {
  font-weight: 800;
  color: var(--blue-900);
}

.quote-role {
  color: var(--gray-500);
  font-weight: 600;
}

/* About */
.about {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.about-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.about-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

.about-copy h2 {
  margin-top: 0;
}

.about-copy p:last-of-type {
  margin-bottom: 1rem;
}

.about-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gray-700);
}

.about-bullets li {
  margin-bottom: 0.45rem;
}

.about-aside {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.65rem;
}

.about-aside-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
}

.about-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--gray-700);
}

.about-steps li {
  margin-bottom: 0.65rem;
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(56, 189, 248, 0.15), transparent 40%),
    linear-gradient(165deg, var(--blue-900) 0%, var(--black) 100%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band-text {
  margin: 0;
  max-width: 36rem;
  opacity: 0.88;
  font-size: 1rem;
}

.cta-band .btn-primary {
  flex-shrink: 0;
}

/* Contact */
.contact {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-intro h2 {
  margin-top: 0;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.contact-chip {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  min-width: 10rem;
}

.contact-chip-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-chip-value {
  font-weight: 800;
  color: var(--blue-900);
  font-size: 0.95rem;
}

.contact-address {
  margin: 1.5rem 0 0;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-phone {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--blue-800);
}

.contact-phone:hover {
  color: var(--blue-600);
  text-decoration: underline;
}

.contact-map-link {
  margin: 0.85rem 0 0;
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.contact-form-feedback {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form-feedback[hidden] {
  display: none !important;
}

.contact-form-feedback--success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.contact-form-feedback--error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.contact-form {
  background: linear-gradient(165deg, var(--off-white) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.05rem;
}

.form-row-split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row:last-of-type {
  margin-bottom: 1.2rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--black);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  font: inherit;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: rgba(7, 89, 133, 0.35);
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(3.75rem, 7vw, 5.5rem) 0 0;
  font-size: 1.06rem;
}

.footer-grid {
  display: grid;
  gap: clamp(2.5rem, 4.5vw, 3.5rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.25rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    align-items: start;
    column-gap: clamp(1.75rem, 3vw, 2.5rem);
  }
}

.logo-text--footer {
  color: var(--white);
  font-size: clamp(1.28rem, 2.8vw, 1.52rem);
}

.footer-tagline {
  margin: 0.65rem 0 0.75rem;
  font-size: 1.05rem;
  opacity: 0.9;
  font-weight: 600;
}

.footer-lead {
  margin: 0;
  max-width: 26rem;
  line-height: 1.65;
  font-size: 1.04rem;
  opacity: 0.86;
}

.footer-contact {
  margin: 1.5rem 0 0;
  max-width: 26rem;
  line-height: 1.65;
  font-size: 1.02rem;
  opacity: 0.92;
}

.footer-contact a {
  color: var(--blue-300);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: var(--white);
}

.footer-heading {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
}

.footer-links a:hover {
  color: var(--blue-300);
}

.footer-keyword {
  margin: 0;
  line-height: 1.65;
  font-size: 1.02rem;
  opacity: 0.88;
  max-width: 30rem;
}

.footer-keyword a {
  color: var(--blue-300);
  font-weight: 700;
  text-decoration: none;
}

.footer-keyword a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: clamp(1.65rem, 3.2vw, 2.25rem) 0 clamp(2rem, 4vw, 2.85rem);
}

@media (min-width: 640px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.96rem;
  opacity: 0.72;
}

.footer-meta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

/* Inner pages (About, etc.) */
.nav-list a[aria-current="page"]:not(.nav-cta) {
  color: var(--blue-900);
}

.nav-list a[aria-current="page"]:not(.nav-cta)::after {
  width: 100%;
}

.nav-cta[aria-current="page"] {
  background: var(--blue-900);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.55);
}

.footer-links a[aria-current="page"] {
  color: var(--blue-300);
  pointer-events: none;
}

.footer-keyword a[aria-current="page"] {
  color: var(--blue-300);
  pointer-events: none;
}

.page-hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  background: var(--blue-950);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--blue-950);
  background-image:
    linear-gradient(165deg, rgba(3, 8, 16, 0.82) 0%, rgba(10, 31, 51, 0.72) 42%, rgba(3, 8, 16, 0.88) 100%),
    radial-gradient(ellipse 75% 65% at 78% 12%, rgba(56, 189, 248, 0.14), transparent 52%),
    url("images/ship4.png");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-hero-bg--road {
  background-image:
    linear-gradient(165deg, rgba(3, 8, 16, 0.82) 0%, rgba(10, 31, 51, 0.72) 42%, rgba(3, 8, 16, 0.88) 100%),
    radial-gradient(ellipse 75% 65% at 78% 12%, rgba(56, 189, 248, 0.14), transparent 52%),
    url("images/road-banner.png");
}

.page-hero-bg--air {
  background-image:
    linear-gradient(165deg, rgba(3, 8, 16, 0.82) 0%, rgba(10, 31, 51, 0.72) 42%, rgba(3, 8, 16, 0.88) 100%),
    radial-gradient(ellipse 75% 65% at 78% 12%, rgba(56, 189, 248, 0.14), transparent 52%),
    url("images/air-banner.png");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.page-hero-inner--wide {
  max-width: min(52rem, 100%);
}

.breadcrumb {
  margin-bottom: 1.25rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.breadcrumb-list a {
  color: var(--blue-300);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb-list [aria-current="page"] {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 38rem;
}

.page-section {
  padding: clamp(3rem, 6vw, 4.25rem) 0;
}

.page-section--muted {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.page-section--border {
  border-block: 1px solid var(--gray-200);
}

.container.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.page-prose p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.page-prose p:last-child {
  margin-bottom: 0;
}

.mission-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card {
  padding: 1.75rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mission-card--dark {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-950) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.mission-card .section-kicker {
  margin-top: 0;
}

.mission-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.mission-card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
}

.mission-card-title--light {
  color: var(--white);
}

.mission-card--dark .section-kicker--on-dark {
  color: var(--blue-300);
}

.values-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.values-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.values-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.values-icon {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 0.85rem;
}

.values-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}

.values-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.split-feature {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .split-feature {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2.5rem;
  }
}

.split-feature-copy .section-kicker {
  margin-top: 0;
}

.split-feature-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.split-feature-copy > p {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.page-checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gray-700);
}

.page-checklist li {
  margin-bottom: 0.55rem;
}

.page-checklist li:last-child {
  margin-bottom: 0;
}

.split-feature-aside {
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-feature-aside-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-feature-address {
  margin: 0 0 0.75rem;
  font-style: normal;
  line-height: 1.55;
  font-size: 0.95rem;
}

.split-feature-phone {
  margin: 0 0 1rem;
}

.split-feature-phone a {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}

.split-feature-phone a:hover {
  color: var(--blue-300);
  text-decoration: underline;
}

.split-feature-note {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
}

.about-ops-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-ops-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-ops-list li {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-ops-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
}

.about-ops-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
}

.about-more {
  margin: 1.25rem 0 0;
}

/* Contact page */
.contact-page-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact--page {
  border-top: none;
}

.map-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.map-section-header {
  margin-bottom: 1.5rem;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background: var(--gray-200);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Service detail pages */
.page-checklist--cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .page-checklist--cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc-card {
  margin: 0;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.svc-card strong {
  color: var(--black);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}

.faq-a {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.split-feature-note--spaced {
  margin-bottom: 1rem;
}

.link-cta-dark {
  color: var(--blue-300);
  font-weight: 700;
  text-decoration: none;
}

.link-cta-dark:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Service pages — large visuals (images/…) */
.service-split-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.service-split {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
}

@media (min-width: 900px) {
  .service-split {
    grid-template-columns: 1fr 1fr;
  }

  .service-split--img-right .service-split-content {
    order: 1;
  }

  .service-split--img-right .service-split-figure {
    order: 2;
  }
}

.service-split-figure {
  margin: 0;
}

.service-split-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.service-split-content .section-kicker {
  margin-top: 0;
}

.service-split-content h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.service-split-content > p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.service-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-gallery-grid.service-gallery-grid--square-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-gallery-card--wide {
    grid-column: 1 / -1;
  }
}

.service-gallery-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-gallery-grid--square-row .service-gallery-card img {
  aspect-ratio: 1 / 1;
}

.service-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-gallery-card--wide img {
  aspect-ratio: 16 / 6;
  min-height: 200px;
  max-height: 420px;
}

.service-gallery-card figcaption {
  margin: 0;
  padding: 0.6rem 1rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.service-strip {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background: var(--off-white);
  border-block: 1px solid var(--gray-200);
}

.service-strip-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16 / 5;
  min-height: 160px;
  max-height: 440px;
  box-shadow: 0 20px 50px rgba(7, 20, 35, 0.18);
  border: 1px solid var(--gray-200);
}

.service-strip-caption {
  margin: 0.65rem 0 0;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.service-products-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.service-products-copy .section-kicker {
  margin-top: 0;
}

.service-products-figure {
  margin: 0;
}

.service-products-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.service-products-figure figcaption {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--gray-500);
}

@media (min-width: 1024px) {
  .service-products-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.92fr) minmax(0, 0.82fr);
    align-items: start;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .service-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-products-figure {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .service-products-aside {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .service-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp (injected by main.js) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(5, 8, 16, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(5, 8, 16, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 3px;
}

.whatsapp-float-icon {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float:hover {
    transform: none;
  }
}
