:root {
  --blue-dark: #0a3654;
  --blue: #1b89b3;
  --yellow: #f2c24a;
  --copper: #b9825a;
  --light: #f2f7fb;
  --text: #1f2933;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(10, 54, 84, 0.14);
  --shadow-soft: 0 10px 30px rgba(10, 54, 84, 0.1);
  --radius: 24px;
}

/* Reset base */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 22px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 54, 84, 0.1);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-brands {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto !important;
}

.brand-partner img {
  width: 108px;
}

.hero-kpi {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

/* Language switcher */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-dark);
  background: rgba(10, 54, 84, 0.08);
  border: 1px solid rgba(10, 54, 84, 0.12);
  transition: 0.2s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: transparent;
}

/* Hero */

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 59, 92, 0.92), rgba(5, 59, 92, 0.45));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 650px;
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid rgba(5, 59, 92, 0.12);
}

.btn-secondary:hover {
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Sections */

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card-content {
  padding: 28px;
}

.service-card-content h3 {
  margin-bottom: 12px;
}

.service-card-content p {
  margin-bottom: 0;
}

/* Partners */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.partner-card,
.contact-card,
.cta-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.partner-card img {
  width: 220px;
  height: 120px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

/* CTA */

.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), #186e93);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 460px);
  align-items: start;
  gap: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.lead-form {
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 54, 84, 0.14);
}

.lead-form label {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 54, 84, 0.14);
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  line-height: 1.4;
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(245, 197, 66, 0.5);
  outline-offset: 1px;
}

.lead-form .btn {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.lead-form input.field-invalid,
.lead-form select.field-invalid,
.lead-form textarea.field-invalid {
  border-color: #c53030;
  outline: 2px solid rgba(197, 48, 48, 0.22);
  outline-offset: 1px;
}

.lead-form input.field-valid,
.lead-form select.field-valid,
.lead-form textarea.field-valid {
  border-color: #276749;
}

.field-error {
  display: block;
  color: #c53030;
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.4;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--text);
}

/* Scroll animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Service cards — equal height */

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content p:last-child {
  margin-top: auto;
}

/* Footer */

.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.footer-brand img {
  width: 140px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Header right controls */

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--blue-dark);
  border-radius: 8px;
  line-height: 0;
}

.nav-toggle:hover {
  background: rgba(10, 54, 84, 0.08);
}

/* Gallery CTA */

.gallery-cta {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  background: var(--light);
  border-radius: 18px;
  border: 2px dashed rgba(10, 54, 84, 0.15);
}

.gallery-cta p {
  margin: 0;
  font-size: 15px;
}

.gallery-cta a {
  color: var(--blue);
  font-weight: 700;
}

/* Tracking buttons gap */

.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 1000px) {
  .nav {
    gap: 14px;
    font-size: 14px;
  }

  .brand img {
    width: 150px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 28px;
    box-shadow: 0 8px 30px rgba(10, 54, 84, 0.15);
    z-index: 19;
    gap: 0;
    border-top: 1px solid rgba(10, 54, 84, 0.1);
  }

  .nav.nav-open a {
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(10, 54, 84, 0.07);
  }

  .nav.nav-open a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero {
    min-height: 620px;
  }

  .two-columns,
  .partners-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .lead-form {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .brand img {
    width: 120px;
  }

  .brand-partner img {
    width: 88px;
  }

  .header-brands {
    gap: 10px;
  }

  .language-switcher a {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .brand-partner {
    display: none;
  }

  .service-card img {
    height: 190px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(10, 54, 84, 0.94), rgba(27, 137, 179, 0.72)),
    url("assets/1_international-freight-hero.webp") center/cover no-repeat;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.gallery-item figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 15px;
}

.gallery-item--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 280px;
  padding: 24px;
  text-align: center;
  border: 2px dashed rgba(10, 54, 84, 0.22);
  background: var(--light);
  box-shadow: none;
}

.gallery-item--placeholder span {
  font-size: 32px;
  line-height: 1;
  opacity: 0.35;
}

.gallery-item--placeholder p {
  margin: 0;
  font-size: 14px;
  max-width: 220px;
}

.redirect-card {
  width: min(620px, 100%);
  padding: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.redirect-card img {
  width: 220px;
  height: auto;
  margin: 0 auto 24px;
}

.redirect-card h1 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.redirect-card p {
  margin: 0 0 24px;
}

.redirect-card .hero-actions {
  justify-content: center;
}

@media (max-width: 560px) {
  .redirect-card {
    padding: 30px 22px;
  }

  .redirect-card img {
    width: 180px;
  }
}