/* ═══════════════════════════════════════════════════
   MAKMAR SHIPPING — All rights reserved
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #0D1B2A;
  --navy-d: #080f18;
  --navy-m: #12263d;
  --blue: #1A73E8;
  --blue-d: #1260c4;
  --blue-l: #4d96f0;
  --green: #2BC48A;
  --green-d: #1fa370;
  --gray: #E6E9EC;
  --muted: #8fa3b8;
  --border: rgba(26, 115, 232, 0.2);
  --panel: rgba(18, 38, 61, 0.8);
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--navy);
  color: var(--gray);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-d);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════
   ANIMATED BACKGROUND
   ═══════════════════════════════════════════════════ */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, #0e2340 0%, var(--navy-d) 70%);
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: var(--blue);
  top: -15%;
  left: -10%;
  animation-duration: 26s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #0f3f7a;
  bottom: -10%;
  right: -5%;
  animation-duration: 33s;
  animation-delay: -8s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--green);
  top: 45%;
  right: 20%;
  animation-duration: 22s;
  animation-delay: -14s;
  opacity: 0.1;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, 40px) scale(1.08);
  }

  100% {
    transform: translate(-40px, 100px) scale(0.94);
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.5;
  }
}

.bg-noise {
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}

/* ─── WATERMARK ─── */
.bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130vw;
  max-width: 1600px;
  z-index: 0;
  opacity: 0.025;
  pointer-events: none;
  filter: blur(6px) saturate(0) brightness(2);
}

.bg-watermark img {
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 100px;
  background: rgba(8, 15, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s ease, background 0.3s, transform 0.3s ease;
}

#nav.nav-hidden {
  transform: translateY(-100%);
}

#nav.scrolled {
  height: 86px;
  background: rgba(8, 15, 24, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #074b96;
  text-transform: uppercase;
  text-shadow: none;
  display: block;

  /* Animations */
  max-height: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-logo {
    gap: 4px;
  }

  .nav-brand-text {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-lang {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang {
  display: flex;
  gap: 6px;
}

.nav-lang a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-lang a:hover,
.nav-lang a.active {
  color: var(--white);
  border-color: var(--green);
  background: rgba(43, 196, 138, 0.12);
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--navy);
  background: var(--green);
  padding: 10px 24px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--green);
  transition: all 0.25s;
  margin-left: 20px;
}

.nav-cta:hover {
  background: transparent;
  color: var(--green);
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1000;
}

.nav-ham span {
  width: 24px;
  height: 2px;
  background: var(--gray);
  transition: all 0.35s;
  display: block;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 160px 4% 180px;
  overflow: hidden;
  height: auto;
  min-height: 50vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 15, 24, 0.4) 0%, rgba(8, 15, 24, 0.88) 100%),
    url('../images/ship1.jpeg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.12) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 115, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 20%, black 60%, transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(43, 196, 138, 0.1);
  border: 1px solid rgba(43, 196, 138, 0.35);
  padding: 8px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 196, 138, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(43, 196, 138, 0);
  }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 7.5vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.ht-accent {
  color: #074b96;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
  display: block;
  text-shadow: 0 0 40px rgba(26, 115, 232, 0.4);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  color: rgba(230, 233, 236, 0.75);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

/* ─── WAVE ─── */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: clamp(80px, 12vh, 140px);
  display: block;
}

.wave-parallax>use {
  animation: waveMove 24s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-parallax>use:nth-child(1) {
  animation-duration: 7s;
  animation-delay: -2s;
}

.wave-parallax>use:nth-child(2) {
  animation-duration: 10s;
  animation-delay: -3s;
}

.wave-parallax>use:nth-child(3) {
  animation-duration: 13s;
  animation-delay: -4s;
}

.wave-parallax>use:nth-child(4) {
  animation-duration: 20s;
  animation-delay: -5s;
}

@keyframes waveMove {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* ─── TICKER ─── */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 46px;
  background: var(--blue);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}

.t-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-item::before {
  content: '◆';
  font-size: 7px;
  opacity: 0.6;
}

.t-logo {
  height: 32px;
  width: auto;
  margin: 0 16px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 16px 38px;
  text-decoration: none;
  border: 2px solid var(--blue);
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  border-color: var(--green);
}

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: transparent;
  padding: 16px 38px;
  text-decoration: none;
  border: 2px solid rgba(230, 233, 236, 0.3);
  display: inline-block;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--navy-m);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 44px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}

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

.stat::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--green);
  transition: width 0.5s ease;
}

.stat:hover {
  background: rgba(26, 115, 232, 0.06);
}

.stat:hover::before {
  width: 100%;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--green);
}

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   SHARED TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 62px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
  display: block;
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 24px 0 32px;
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(230, 233, 236, 0.8);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.section-about {
  position: relative;
  z-index: 1;
  padding: 120px 5%;
  background: linear-gradient(180deg, var(--navy-d) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* image stack */
.about-images {
  position: relative;
  height: 560px;
}

.about-img-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.about-img-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  border: 2px solid var(--green);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.about-year-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 3px;
  padding: 14px 24px;
  border-left: 4px solid var(--green);
  z-index: 3;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(26, 115, 232, 0.35);
  padding: 7px 16px;
  background: rgba(26, 115, 232, 0.08);
  transition: all 0.2s;
}

.pill:hover {
  background: rgba(26, 115, 232, 0.2);
  border-color: var(--blue);
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.section-services {
  position: relative;
  z-index: 1;
  padding: 120px 5%;
  background: var(--navy-m);
  border-bottom: 1px solid var(--border);
}

.services-head {
  margin-bottom: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

.svc-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--bg) center/cover no-repeat;
  cursor: default;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 24, 0.95) 0%, rgba(8, 15, 24, 0.5) 55%, rgba(8, 15, 24, 0.2) 100%);
  transition: background 0.4s;
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(13, 27, 42, 0.97) 0%, rgba(26, 115, 232, 0.3) 100%);
}

.svc-body {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  width: 100%;
}

.svc-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}

.svc-card:hover .svc-desc {
  max-height: 120px;
  opacity: 1;
}

.svc-arrow {
  font-size: 20px;
  color: var(--green);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.35s 0.1s;
}

.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* top accent */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════
   FLEET / GNMTC
   ═══════════════════════════════════════════════════ */
.section-fleet {
  position: relative;
  z-index: 1;
  padding: 120px 5%;
  background: linear-gradient(135deg, var(--navy-d) 0%, #0d2240 100%);
  border-bottom: 1px solid var(--border);
}

.fleet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.fleet-specs {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.fleet-spec {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  flex: 1;
  position: relative;
  overflow: hidden;
}

.fleet-spec:last-child {
  border-right: none;
}

.fleet-spec::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.fleet-spec:hover::before {
  transform: scaleX(1);
}

.fs-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 4px;
}

.fs-key {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.fleet-visual {
  position: relative;
}

.fleet-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.fleet-badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--green);
  padding: 18px 28px;
  border-right: none;
}

.fb-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
}

.fb-txt {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--navy-d);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   OFFICES / CONTACT
   ═══════════════════════════════════════════════════ */
.section-offices {
  position: relative;
  z-index: 1;
  padding: 120px 5% 80px;
  background: var(--navy-d);
  border-bottom: 1px solid var(--border);
}

.offices-head {
  max-width: 1400px;
  margin: 0 auto 64px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

.offices-grid.single-office {
  grid-template-columns: 1fr;
  max-width: 900px;
  background: transparent;
  border: none;
}

.offices-grid.single-office .office-card {
  padding: 60px 80px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.offices-grid.single-office .oc-country {
  font-size: 36px;
  margin-bottom: 8px;
}

.offices-grid.single-office .oc-company {
  font-size: 14px;
  margin-bottom: 32px;
}

.offices-grid.single-office .oc-details {
  font-size: 18px;
  gap: 12px;
}

.offices-grid.single-office .oc-flag {
  font-size: 200px;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}

.office-card {
  background: var(--panel);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
}

.office-card:hover {
  background: rgba(26, 115, 232, 0.1);
  transform: translateY(-4px);
}

/* country code watermark */
.office-card::after {
  content: attr(style);
  /* placeholder, overridden below */
}

.office-card .oc-flag {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.office-card:hover .oc-flag {
  color: rgba(26, 115, 232, 0.08);
}

.oc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-bottom: 20px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 196, 138, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(43, 196, 138, 0);
  }
}

.oc-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 4px;
}

.oc-company {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.oc-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.oc-details a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.oc-details a:hover {
  color: var(--green);
}

/* CTA Strip */
.cta-strip {
  max-width: 1400px;
  margin: 80px auto 0;
  background: linear-gradient(135deg, var(--blue) 0%, #1260c4 100%);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-strip .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-strip .btn-primary::after {
  background: transparent;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 1;
  background: var(--navy-d);
  border-top: 1px solid var(--border);
  padding: 72px 5% 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
}

.footer-socials a:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(43, 196, 138, 0.08);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(143, 163, 184, 0.5);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--d, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.s1 {
  transition-delay: 0.05s;
}

.reveal.s2 {
  transition-delay: 0.15s;
}

.reveal.s3 {
  transition-delay: 0.25s;
}

.reveal.s4 {
  transition-delay: 0.35s;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .nav-cta {
    padding: 8px 16px;
    margin-left: 8px;
  }

  .nav-brand-text {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-inner {
    grid-template-columns: 1fr;
  }

  .fleet-visual img {
    height: 360px;
  }
}

@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta,
  .nav-lang {
    display: none;
  }

  .nav-ham {
    display: flex;
  }

  #nav {
    padding: 0 20px;
  }

  /* Mobile menu */
  .nav-links {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 15, 24, 0.97);
    backdrop-filter: blur(24px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(0.98);
    transition: opacity 0.45s, transform 0.45s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }

  .nav-links a {
    font-size: 28px !important;
    letter-spacing: 5px !important;
    color: var(--white) !important;
  }

  .nav-links a:hover {
    color: var(--green) !important;
  }

  .mobile-lang {
    display: flex !important;
    justify-content: center;
    gap: 16px;
    font-size: 18px;
    margin-top: 20px;
  }

  .mobile-lang a {
    font-size: 18px !important;
  }

  .nav-ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--green);
    width: 28px;
  }

  .nav-ham.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--green);
    width: 28px;
  }

  .hero {
    padding: 140px 20px 100px;
    align-items: flex-start;
    min-height: unset;
  }

  .hero-title {
    font-size: clamp(20px, 7.5vw, 72px) !important;
    white-space: nowrap !important;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 28px 20px;
  }

  .stat-num {
    font-size: 38px;
  }

  .section-about,
  .section-services,
  .section-fleet,
  .section-offices {
    padding: 80px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 360px;
  }

  .about-img-top {
    width: 88%;
    height: 260px;
  }

  .about-img-bot {
    width: 75%;
    height: 220px;
  }

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

  .svc-card {
    min-height: 280px;
  }

  .svc-desc {
    max-height: 120px !important;
    opacity: 1 !important;
  }

  .svc-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .fleet-specs {
    flex-direction: column;
  }

  .fleet-spec {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .fleet-spec:last-child {
    border-bottom: none;
  }

  .fleet-visual img {
    height: 260px;
  }

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

  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

  .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.section-gallery {
  position: relative;
  z-index: 1;
  padding: 120px 5% 100px;
  background: var(--navy-d);
  border-bottom: 1px solid var(--border);
}

.gallery-head {
  max-width: 1400px;
  margin: 0 auto 60px;
}

/* ─── Category Tabs ─── */
.gallery-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 48px;
}

.gtab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.25s;
}

.gtab:hover {
  color: var(--white);
  border-color: var(--blue);
}

.gtab.active {
  color: var(--navy);
  background: var(--green);
  border-color: var(--green);
}

/* ─── Gallery Grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--navy-m);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.g-item:hover {
  border-color: var(--blue);
}

.g-item:hover img {
  transform: scale(1.08);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 24, 0.85) 0%, rgba(8, 15, 24, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-cat {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.g-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--white);
  opacity: 0.8;
  line-height: 1;
}

.g-item.hidden {
  display: none;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lb-inner img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--border);
  display: block;
}

.lb-caption {
  margin-top: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(13, 27, 42, 0.85);
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  z-index: 10000;
}

.lb-close {
  top: 24px;
  right: 32px;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  width: 52px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* ═══════════════════════════════════════════════════
   DOWNLOADS
   ═══════════════════════════════════════════════════ */
.section-downloads {
  position: relative;
  z-index: 1;
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-d) 100%);
  border-bottom: 1px solid var(--border);
}

.dl-head {
  max-width: 1400px;
  margin: 0 auto 56px;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy-m);
  border: 1px solid var(--border);
  padding: 28px 32px;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.dl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.4s ease;
}

.dl-card:hover {
  border-color: var(--blue);
  background: rgba(26, 115, 232, 0.06);
}

.dl-card:hover::before {
  height: 100%;
}

.dl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-icon svg {
  width: 100%;
  height: 100%;
}

.dl-info {
  flex: 1;
}

.dl-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 4px;
}

.dl-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.dl-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--green);
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid var(--green);
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}

.dl-btn:hover {
  background: transparent;
  color: var(--green);
}

/* ─── Button group (View + Download) ─── */
.dl-btn-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.dl-btn-view {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.dl-btn-view:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ─── Gallery + Downloads Responsive ─── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-tabs {
    gap: 8px;
  }

  .gtab {
    font-size: 10px;
    padding: 8px 14px;
  }

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

  .dl-card {
    padding: 20px;
    gap: 14px;
  }

  .lb-prev,
  .lb-next {
    width: 40px;
    height: 60px;
    font-size: 26px;
  }
}

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