:root {
  --green-950: #071f18;
  --green-900: #0b2d22;
  --green-800: #123d30;
  --green-700: #19513f;
  --gold: #d7ad4a;
  --gold-2: #f1d58b;
  --ink: #10231d;
  --muted: #64736d;
  --line: rgba(16, 35, 29, 0.12);
  --paper: #f7f4ec;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 31, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 173, 74, 0.2);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.topbar .container,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar .container {
  min-height: 38px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
}

.brand img {
  width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-2);
  background: rgba(215, 173, 74, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--green-950);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-dark {
  background: var(--green-900);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  overflow: hidden;
  background: var(--green-950);
}

.hero video,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 24, 0.93), rgba(7, 31, 24, 0.62), rgba(7, 31, 24, 0.35)),
    radial-gradient(circle at 82% 24%, rgba(215, 173, 74, 0.32), transparent 26%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: center;
  gap: 48px;
  padding: 86px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  margin: 18px 0 22px;
  max-width: 900px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  line-height: 1.22;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

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

.hero-panel {
  border: 1px solid rgba(215, 173, 74, 0.26);
  background: rgba(7, 31, 24, 0.6);
  padding: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero-dot {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold);
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background: var(--green-950);
  color: var(--white);
}

.section-white {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--muted);
  max-width: 650px;
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.supply-chain-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 31, 24, 0.98), rgba(7, 31, 24, 0.9)),
    radial-gradient(circle at 82% 55%, rgba(215, 173, 74, 0.12), transparent 34%);
}

.supply-chain-section .container {
  position: relative;
  z-index: 1;
}

.supply-chain-section .section-head,
.supply-chain-section .grid-3 {
  position: relative;
  z-index: 2;
}

.supply-chain-truck {
  position: absolute;
  right: -210px;
  bottom: -118px;
  width: min(760px, 58vw);
  opacity: 0.2;
  filter: saturate(0.9) drop-shadow(0 30px 55px rgba(0, 0, 0, 0.32));
  pointer-events: none;
  z-index: 1;
}

.import-export-plane {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(215, 173, 74, 0.16), transparent 30%),
    linear-gradient(135deg, #061b15, var(--green-950));
}

.import-export-plane .container {
  position: relative;
  z-index: 1;
}

.plane-stage {
  position: relative;
  min-height: 340px;
}

.plane-stage::before {
  content: "";
  position: absolute;
  inset: 60px 0 30px auto;
  width: 78%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(30px);
}

.plane-stage img {
  position: absolute;
  right: -80px;
  top: 50%;
  width: min(760px, 125%);
  max-width: none;
  transform: translateY(-50%);
  animation: planeFloat 5.8s ease-in-out infinite;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.25));
}

@keyframes planeFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(-1deg);
  }

  50% {
    transform: translateY(calc(-50% - 16px)) translateX(18px) rotate(1deg);
  }
}

.muted {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 31, 24, 0.08);
}

.card-body {
  padding: 26px;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card .link {
  color: var(--green-800);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list span,
.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 173, 74, 0.16);
  color: var(--gold);
  font-weight: 900;
}

.trade-band {
  background:
    linear-gradient(135deg, rgba(11, 45, 34, 0.96), rgba(7, 31, 24, 0.94)),
    url("../../images/sea-bg-scaled.webp") center/cover;
  color: var(--white);
  border-radius: 8px;
  padding: 50px;
  overflow: hidden;
  position: relative;
}

.trade-band .accent-svg {
  position: absolute;
  width: 160px;
  right: 28px;
  bottom: -30px;
  opacity: 0.18;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  border: 1px solid rgba(215, 173, 74, 0.3);
  background: rgba(215, 173, 74, 0.1);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 390px;
  color: var(--white);
  overflow: hidden;
  background: var(--green-950);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.content-panel {
  background: var(--white);
  border-radius: 8px;
  padding: 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-panel h3 {
  color: var(--green-900);
}

.rich-list {
  padding-left: 18px;
}

.rich-list li {
  margin-bottom: 10px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(215, 173, 74, 0.18);
  border-radius: 8px;
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
}

.metric-strip div {
  padding: 26px;
  background: var(--green-900);
  color: var(--white);
}

.metric-strip strong {
  display: block;
  color: var(--gold-2);
  font-size: 28px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 30px;
}

.testimonial-slider .testimonial {
  display: none;
}

.testimonial-slider .testimonial.active {
  display: block;
}

.contact-card {
  background: var(--green-900);
  color: var(--white);
  border-radius: 8px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border: 1px solid rgba(215, 173, 74, 0.35);
  border-radius: 50%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 50px;
  padding: 13px 15px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: #051712;
  color: rgba(255, 255, 255, 0.76);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.svg-corner {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  width: 180px;
}

.svg-corner.left {
  left: 16px;
  top: 20px;
}

.svg-corner.right {
  right: 20px;
  bottom: 20px;
}

@media (max-width: 960px) {
  .hero-content,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .supply-chain-truck {
    right: -260px;
    width: 760px;
    opacity: 0.14;
  }

  .plane-stage img {
    right: -120px;
    width: min(720px, 150%);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    min-height: 72px;
  }

  .brand img {
    width: 189px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--green-900);
    border: 1px solid rgba(215, 173, 74, 0.18);
    border-radius: 8px;
    padding: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    display: block;
  }

  .stat-grid,
  .metric-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trade-band,
  .content-panel,
  .contact-card {
    padding: 26px;
  }

  .plane-stage {
    min-height: 230px;
  }

  .plane-stage img {
    right: -72px;
    width: 145%;
  }

  .supply-chain-truck {
    right: -190px;
    bottom: -62px;
    width: 520px;
    opacity: 0.1;
  }

  .footer-bottom {
    display: block;
  }
}
