/* ==========================================================================
   LAYER: TOKENS
   ========================================================================== */
:root {
  /* Brand rule: primary theme color is blue for all new/updated UI */
  --ff-body: "Barlow", sans-serif;
  --ff-heading: "Nunito Sans", sans-serif;

  --fs-body: 1rem;
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.75rem);
  --fs-h4: 1.125rem;
  --fs-h5: 1rem;
  --fs-h6: 0.92rem;
  --fs-h-section: clamp(1.1rem, 1.85vw, 1.775rem);
  --fs-h-reason: clamp(1.1rem, 1.38vw, 1.48rem);
  --fs-subtitle-section: clamp(0.78rem, 1.05vw, 1.1rem);
  --space-0: 0;
  --space-2: 2px;
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-14: 14px;
  --space-18: 18px;
  --space-20: 20px;
  --space-22: 22px;
  --space-28: 28px;
  --space-30: 30px;
  --space-34: 34px;
  --space-38: 38px;
  --space-40: 40px;
  --space-42: 42px;
  --space-46: 46px;
  --space-48: 48px;
  --space-54: 54px;
  --space-62: 62px;
  --space-74: 74px;
  --space-92: 92px;
  --section-y: 64px;
  --section-y-compact: 52px;

  --lh-body: 1.55;
  --lh-heading: 1.15;
  --fw-heading: 700;

  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #16324a;
  --muted: #61788f;
  --line: #dde7f0;
  --brand: #0c63b4;
  --brand-dark: #084f92;
  --accent: #0c63b4;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(16, 52, 84, 0.08);
}

/* ==========================================================================
   LAYER: BASE
   ========================================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
}
h5 {
  font-size: var(--fs-h5);
}
h6 {
  font-size: var(--fs-h6);
}

/* ==========================================================================
   LAYER: UTILITIES
   ========================================================================== */
/* Reusable typography classes for non-semantic heading needs */
.t-heading {
  margin: 0 0 12px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
}

.t-h-section {
  margin-bottom: 10px;
  font-size: var(--fs-h-section);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.t-h-reason {
  font-size: var(--fs-h-reason);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.01em;
}
.t-subtitle-section {
  font-size: var(--fs-subtitle-section);
  line-height: 1.35;
  color: #a6a6a6;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

/* ==========================================================================
   LAYER: COMPONENTS
   ========================================================================== */
.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding-block: var(--section-y);
  padding-inline: var(--space-0);
}

.cold-storage-page .section + .section {
  position: relative;
}

.cold-storage-page .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, 92vw);
  height: 1px;
  background: #e6edf5;
  transform: translateX(-50%);
}

.cold-truck-page .cold-industries.section {
  position: relative;
}

.cold-truck-page .about.section + .cold-industries.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, 92vw);
  height: 1px;
  background: #e6edf5;
  transform: translateX(-50%);
}

.page-main {
  padding-top: var(--space-74);
}

[data-header-overlay="true"] .page-main,
[data-header-overlay="true"] main {
  padding-top: var(--space-0);
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.back-to-top {
  position: fixed;
  right: calc(clamp(18px, 3vw, 30px) + env(safe-area-inset-right));
  bottom: calc(clamp(18px, 3vw, 30px) + env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 26px rgba(12, 99, 180, 0.28),
    0 6px 14px rgba(16, 24, 38, 0.14);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  z-index: 60;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow:
    0 18px 32px rgba(12, 99, 180, 0.32),
    0 8px 18px rgba(16, 24, 38, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px) scale(1.02);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.back-to-top-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .back-to-top-icon {
    width: 20px;
    height: 20px;
  }
}

.topbar {
  display: none;
}

.topbar-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  font-family: var(--ff-heading);
  background: #ffffff;
  border-bottom: 1px solid rgba(210, 220, 231, 0.9);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease;
}

.header.scrolled {
  background: #ffffff;
  border-bottom-color: rgba(210, 220, 231, 0.95);
  box-shadow: 0 10px 28px rgba(16, 52, 84, 0.08);
}

[data-header-overlay="true"] .header:not(.scrolled) {
  background: rgba(12, 24, 38, 0.32);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

[data-header-overlay="true"] .header:not(.scrolled) .nav > a,
[data-header-overlay="true"] .header:not(.scrolled) .nav-drop-toggle {
  color: rgba(244, 246, 251, 0.92);
}

[data-header-overlay="true"] .header:not(.scrolled) .nav > a:hover,
[data-header-overlay="true"] .header:not(.scrolled) .nav-drop-toggle:hover {
  color: #ffffff;
}

[data-header-overlay="true"] .header:not(.scrolled) .social-link {
  color: #1b74d1;
}

[data-header-overlay="true"] .header:not(.scrolled) .menu-toggle {
  background: rgba(16, 24, 38, 0.32);
  border-color: rgba(255, 255, 255, 0.22);
}

[data-header-overlay="true"] .header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

[data-header-overlay="true"] .header:not(.scrolled) .nav.open {
  color: #274761;
  background: #fff;
  border-color: var(--line);
}

[data-header-overlay="true"] .header:not(.scrolled) .nav.open > a,
[data-header-overlay="true"] .header:not(.scrolled) .nav.open .nav-drop-toggle {
  color: #274761;
}

[data-header-overlay="true"] .header:not(.scrolled) .nav.open > a:hover,
[data-header-overlay="true"] .header:not(.scrolled) .nav.open .nav-drop-toggle:hover {
  color: var(--brand);
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0;
  align-items: center;
  justify-self: start;
}

.logo-image {
  display: block;
  width: auto;
  max-width: min(22vw, 160px);
  height: clamp(52px, 5vw, 68px);
  object-fit: contain;
  object-position: left top;
  filter: none;
}

.nav {
  position: relative;
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin: 0;
}

.nav > a,
.nav-drop-toggle {
  padding: 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #55585c;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  border: 0;
}

.nav > a:hover,
.nav-drop-toggle:hover {
  color: #30343a;
}

.header-tools {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 0.72;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.lang-flag {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.lang-btn.active,
.lang-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.mobile-only {
  display: none;
}

.header-tools.mobile-only {
  gap: 10px;
  justify-self: end;
}

.lang-switch--mobile {
  gap: 6px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  opacity: 0.78;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.lang-pill:hover,
.lang-pill:focus-visible {
  opacity: 1;
  border-color: #c2d7ed;
  transform: translateY(-1px);
}

.lang-pill.active {
  opacity: 1;
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(12, 99, 180, 0.22);
}

.social-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #1b74d1;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover {
  color: #0f5dad;
  transform: translateY(-1px);
}

.social-link svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ==========================================================================
   LAYER: PAGES
   ========================================================================== */
.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  background:
    linear-gradient(rgba(24, 33, 50, 0.75), rgba(24, 33, 50, 0.75)),
    url("/assets/images/stock/home-hero-company-profile-w1800.jpg")
      center / cover no-repeat;
}

.about-page .about-hero {
  background:
    linear-gradient(rgba(24, 33, 50, 0.75), rgba(24, 33, 50, 0.75)),
    url("/assets/images/stock/aci.png")
      center / cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 29, 45, 0.1), rgba(20, 29, 45, 0.45));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-48);
  color: #fff;
  text-align: center;
}

.about-hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-hero-content p {
  max-width: 1020px;
  margin: 0 auto;
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(238, 241, 246, 0.9);
}

.about-hero-line {
  display: inline-block;
  width: 122px;
  height: 4px;
  margin-top: 18px;
  background: #2e90e5;
}

.about-overview.section {
  padding: 34px 0 20px;
  background: #fff;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-feature {
  color: #445160;
}

.about-feature img {
  display: block;
  width: 100%;
  height: 260px;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  object-fit: cover;
}

.about-feature h3 {
  margin: 0 0 4px;
  font-family: var(--ff-heading);
  font-size: 2.25rem;
  font-weight: 500;
  color: #3b454f;
  letter-spacing: 0.01em;
}

.feature-line {
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 6px 0 10px;
  background: var(--brand);
}

.about-feature p,
.about-feature li {
  font-size: 0.9rem;
  line-height: 1.56;
  color: #5f6b78;
}

.about-feature ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-feature li {
  margin-bottom: 6px;
}

.about-feature li::before {
  content: "- ";
}

.about-team.section {
  padding: 8px 0 10px;
  background: #fff;
}

.about-block-head {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #d5dde7;
  border-bottom: 1px solid #d5dde7;
}

.about-block-head h2 {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: 2.05rem;
  font-weight: 500;
  color: #343d47;
}

.about-block-head p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-style: italic;
  color: #8b98a7;
}

.about-page .about-team.section {
  padding-block: var(--space-8) var(--space-18);
  background: #fff;
}

.about-page .about.section {
  padding-block: var(--space-12) var(--space-48);
  background: #fff;
}

.about.about-match {
  padding-block: var(--space-20);
  background: #fff;
}

.about-page .about-team .about-block-head {
  margin-bottom: 0;
  border-top: 1px solid #d5dde7;
  border-bottom: 0;
}

.about-page .about-team .reason-grid {
  gap: 28px 54px;
  margin-top: 26px;
}

.about-page .about-team .reason {
  display: grid;
  grid-template-columns: 112px 1fr;
  column-gap: 18px;
  align-items: start;
  padding: 6px 0;
}

.about-page .about-team .reason-icon.reason-index {
  display: flex;
  grid-row: 1 / span 2;
  align-items: flex-start;
  align-self: start;
  justify-content: center;
  width: 108px;
  height: 82px;
  padding-top: var(--space-4);
  margin: 0;
  font-family: var(--ff-body);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
  letter-spacing: 0.06em;
}

.about-page .about .about-block-head {
  margin-bottom: 24px;
  border-top: 1px solid #d5dde7;
  border-bottom: 0;
}

.about.about-match .about-block-head {
  border-top: 0;
  border-bottom: 0;
}

.t-heading.t-h-section {
  font-size: var(--fs-h-section);
}

.t-heading.t-h-section {
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.t-subtitle-section {
  font-size: var(--fs-subtitle-section);
  line-height: 1.35;
  color: #a6a6a6;
}

.about-feature h3.t-heading.t-h-section {
  font-size: var(--fs-h-section);
}

.about-page .about .why-line {
  width: 122px;
  height: 5px;
  margin-top: 16px;
  background: var(--brand);
}

.about.about-match .why-line {
  width: 122px;
  height: 5px;
  margin-top: 16px;
  background: var(--brand);
}

.about-page .about .reason-grid {
  gap: 28px 54px;
}

.about.about-match .reason-grid {
  gap: 28px 54px;
}

.about-page .about .reason {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 20px;
  align-items: start;
}

.about.about-match .reason {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 20px;
  align-items: start;
}

.about-page .about .reason-icon {
  grid-row: 1 / span 2;
  width: 82px;
  height: 82px;
  margin: -15px 0 0;
}

.about.about-match .reason-icon {
  grid-row: 1 / span 2;
  width: 82px;
  height: 82px;
  margin: -15px 0 0;
}

.about-page .about .reason-icon svg path,
.about-page .about .reason-icon svg rect,
.about-page .about .reason-icon svg circle,
.about-page .about .reason-icon svg line,
.about-page .about .reason-icon svg polyline {
  stroke: var(--brand);
  stroke-width: 2;
}

.about.about-match .reason-icon svg path,
.about.about-match .reason-icon svg rect,
.about.about-match .reason-icon svg circle,
.about.about-match .reason-icon svg line,
.about.about-match .reason-icon svg polyline {
  stroke: var(--brand);
  stroke-width: 2;
}

.t-heading.t-h-reason {
  margin: 0 0 10px;
  font-size: var(--fs-h-reason);
  line-height: 1.14;
  color: #353b42;
  letter-spacing: 0.01em;
}

.about-page .about-team .reason p,
.about-page .about .reason p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(0.94rem, 1.15vw, 1.26rem);
  line-height: 1.6;
  color: #777;
}

.about.about-match .reason p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(0.94rem, 1.15vw, 1.26rem);
  line-height: 1.6;
  color: #777;
}

.service-detail-page.nvocc-page .about-hero {
  background:
    linear-gradient(rgba(10, 33, 58, 0.68), rgba(10, 33, 58, 0.78)),
    url("/assets/images/stock/home-hero-nvocc-service-w1800.jpg")
      center 34% / cover no-repeat;
}

.service-detail-page.nvocc-page .service-media {
  background-image: url("/assets/images/stock/nvocc-service.png");
}

.sea-freight-page .about-hero {
  background:
    linear-gradient(rgba(8, 23, 47, 0.72), rgba(8, 23, 47, 0.8)),
    url("/assets/images/stock/sea-hero.jpg")
      center 52% / cover no-repeat;
}

.reefer-page .about-hero {
  background:
    linear-gradient(rgba(10, 31, 58, 0.74), rgba(10, 31, 58, 0.82)),
    url("/assets/images/stock/reefer-container-hero.png")
      center 48% / cover no-repeat;
}

.air-reefer-page .about-hero {
  background:
    linear-gradient(rgba(8, 26, 52, 0.74), rgba(8, 26, 52, 0.84)),
    url("/assets/images/stock/air-reefer-cotainer-hero.png")
      center 48% / cover no-repeat;
}

.air-freight-page .about-hero {
  background:
    linear-gradient(rgba(8, 26, 52, 0.74), rgba(8, 26, 52, 0.84)),
    url("/assets/images/stock/air-hero.jpg")
      center 48% / cover no-repeat;
}

.consolidation-page .about-hero {
  background:
    linear-gradient(rgba(9, 28, 54, 0.72), rgba(9, 28, 54, 0.82)),
    url("/assets/images/stock/consolidation-hero.jpg")
      center 50% / cover no-repeat;
}

.customs-procedures-service-page .about-hero {
  background:
    linear-gradient(rgba(9, 28, 54, 0.72), rgba(9, 28, 54, 0.82)),
    url("/assets/images/stock/customs-procedures-service-hero.jpg")
      center 50% / cover no-repeat;
}

.domestic-page .about-hero {
  background:
    linear-gradient(rgba(7, 45, 76, 0.7), rgba(9, 58, 92, 0.78)),
    url("/assets/images/stock/domestic-transportation-cold-storage.jpg")
      center 42% / cover no-repeat;
}

.integrated-logistics-page .about-hero {
  background:
    linear-gradient(rgba(7, 36, 62, 0.7), rgba(9, 58, 92, 0.8)),
    url("/assets/images/stock/integrated-logistics-hero.webp")
      center 48% / cover no-repeat;
}

.overseas-page .about-hero {
  background:
    linear-gradient(rgba(7, 36, 62, 0.7), rgba(9, 58, 92, 0.8)),
    url("/assets/images/stock/overseas-hero.jpg")
      center 48% / cover no-repeat;
}

.project-logistics-solutions-page .about-hero {
  background:
    linear-gradient(rgba(7, 36, 62, 0.7), rgba(9, 58, 92, 0.8)),
    url("/assets/images/stock/project-logistics-solutions-hero.png")
      center 48% / cover no-repeat;
}

.express-page .about-hero {
  background:
    linear-gradient(rgba(7, 36, 62, 0.7), rgba(9, 58, 92, 0.8)),
    url("/assets/images/stock/express-delivery-hero.jpg")
      center 48% / cover no-repeat;
}

.insurance-page .about-hero {
  background:
    linear-gradient(rgba(7, 36, 62, 0.7), rgba(9, 58, 92, 0.8)),
    url("/assets/images/stock/cargo-insurance-hero.jpg")
      center 48% / cover no-repeat;
}

.cold-truck-page .about-hero {
  background:
    linear-gradient(rgba(6, 42, 74, 0.72), rgba(12, 66, 102, 0.8)),
    url("/assets/images/stock/refrigerated-trucking-hero.jpg")
      center 44% / cover no-repeat;
}

.cold-storage-page .about-hero {
  background:
    linear-gradient(rgba(6, 42, 74, 0.72), rgba(12, 66, 102, 0.8)),
    url("/assets/images/stock/warehouse-section.jpg")
      center 44% / cover no-repeat;
}

.service-intro.section {
  background: #fff;
}

.service-detail-page .service-intro.section {
  padding-block: var(--space-0);
  overflow: hidden;
}

.reefer-page.service-detail-page .service-intro.section {
  padding-top: var(--space-0);
  padding-bottom: var(--space-0);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 0;
  align-items: stretch;
}

.service-copy p + p {
  margin-top: 22px;
}

.service-copy p {
  font-size: 0.98rem;
  color: #6e7480;
}

.service-detail-page .service-copy {
  padding: 48px 32px 48px 0;
}

.service-detail-page .service-copy p {
  max-width: 860px;
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  line-height: 1.6;
  color: #8a8a8a;
}

.service-detail-page .service-route-lead {
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}

.service-detail-page .service-emphasis {
  color: var(--brand);
}

.service-detail-page .service-media {
  width: calc(100% + ((100vw - min(1140px, 92vw)) / 2));
  height: auto;
  min-height: 100%;
  margin-right: calc((100vw - min(1140px, 92vw)) / -2);
  background: url("/assets/images/stock/service-project-logistics-media-w1400.jpg")
    center center / cover no-repeat;
}

.sea-freight-page .service-media {
  background: url("/assets/images/stock/sea-service.jpg")
    center center / cover no-repeat;
}

.reefer-page .service-media {
  background: url("/assets/images/stock/reefer-container-service.png")
    center center / cover no-repeat;
}

.air-reefer-page .service-media {
  background: url("/assets/images/stock/service-air-freight-media-w1400.jpg")
    center center / cover no-repeat;
}

.reefer-priority.section {
  padding-top: 14px;
  padding-bottom: 18px;
  background: #fff;
}

.reefer-page .reefer-priority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 34px;
  align-items: start;
}

.reefer-priority-side-stack {
  display: grid;
  gap: 18px;
}

.reefer-priority-main h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.1;
  color: #1a2b45;
}

.reefer-priority-main p {
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: #5c6e86;
}

.reefer-priority-main blockquote {
  margin: 12px 0 18px;
  padding-left: 18px;
  font-style: italic;
  font-weight: 600;
  color: #6f8098;
  border-left: 4px solid #2ea9f0;
}

.reefer-priority-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid #d9e4f0;
  border-radius: 8px;
}

.reefer-priority-banner-image {
  min-height: 106px;
  background: url("/assets/images/stock/warehouse-section.jpg")
    center / cover no-repeat;
}

.air-reefer-page .reefer-priority-banner-image {
  background: url("/assets/images/stock/service-air-freight-media-w1400.jpg")
    center / cover no-repeat;
}

.reefer-priority-banner-copy {
  padding: 12px 14px;
  background: #0d63b8;
}

.reefer-priority-banner-copy p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #c7e3ff;
}

.reefer-priority-banner-copy a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0d63b8;
  background: #fff;
  border-radius: 4px;
}

.reefer-page .reefer-priority-side {
  padding: 32px 30px 14px;
  margin-top: -8px;
  background: #f5f8fc;
  border: 1px solid #e2e9f2;
  border-radius: 20px;
  min-height: 0;
}

.reefer-priority-side h3 {
  margin-bottom: 14px;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: #0f6ca8;
}

.reefer-priority-side p {
  margin-bottom: 14px;
  font-size: 1.01rem;
  color: #5c6e86;
}

.reefer-priority-link {
  font-size: 1.06rem;
  font-weight: 700;
  color: #0f6ca8;
}

.reefer-implementation.section {
  background: #fff;
}

.reefer-implementation .about-block-head {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}

.air-reefer-page .air-reefer-steps,
.air-reefer-layout .air-reefer-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.air-reefer-page .air-reefer-steps--4,
.air-reefer-layout .air-reefer-steps--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.air-reefer-page .air-reefer-flow,
.air-reefer-layout .air-reefer-flow {
  margin-top: 38px;
}

.air-reefer-page .air-reefer-timeline,
.air-reefer-layout .air-reefer-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  margin: 0 0 26px;
  padding: 0;
}

.air-reefer-page .air-reefer-flow--4 .air-reefer-timeline,
.air-reefer-layout .air-reefer-flow--4 .air-reefer-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.air-reefer-page .air-reefer-timeline::before,
.air-reefer-layout .air-reefer-timeline::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
}

.air-reefer-page .air-reefer-dot,
.air-reefer-layout .air-reefer-dot {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d3f7a;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  box-shadow:
    0 16px 26px rgba(0, 10, 28, 0.22),
    0 0 0 4px rgba(74, 173, 255, 0.55);
}

.air-reefer-page .reefer-implementation.section,
.reefer-implementation.section.air-reefer-layout {
  background: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-blend-mode: screen, screen, normal;
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-color: #0d3f7a;
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
}

.air-reefer-page .reefer-implementation .about-block-head,
.air-reefer-layout .about-block-head {
  padding: 0 0 24px;
}

.air-reefer-page .reefer-implementation .why-head h2,
.air-reefer-layout .why-head h2 {
  color: #fff;
}

.air-reefer-page .reefer-implementation .why-subtitle,
.air-reefer-layout .why-subtitle {
  color: rgba(232, 245, 255, 0.82);
  max-width: 760px;
  margin-inline: auto;
  font-style: italic;
}

.air-reefer-page .reefer-implementation .why-line,
.air-reefer-layout .why-line {
  background: rgba(255, 255, 255, 0.44);
}

.air-reefer-page .air-reefer-step,
.air-reefer-layout .air-reefer-step {
  --step-accent: #2ea9f0;
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 233, 242, 0.7);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 10, 28, 0.22);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.air-reefer-page .air-reefer-step::before,
.air-reefer-layout .air-reefer-step::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 6px;
  content: "";
  background: var(--step-accent);
  border-radius: 18px 18px 0 0;
  pointer-events: none;
}

.air-reefer-page .air-reefer-step--receive,
.air-reefer-layout .air-reefer-step--receive {
  --step-accent: #2ee9ff;
}

.air-reefer-page .air-reefer-step--pack,
.air-reefer-layout .air-reefer-step--pack {
  --step-accent: #4aadff;
}

.air-reefer-page .air-reefer-step--temp,
.air-reefer-layout .air-reefer-step--temp {
  --step-accent: #1dffb3;
}

.air-reefer-page .air-reefer-step--deliver,
.air-reefer-layout .air-reefer-step--deliver {
  --step-accent: #2ea9f0;
}

.air-reefer-page .air-reefer-step--support,
.air-reefer-layout .air-reefer-step--support {
  --step-accent: #6d84ff;
}

.air-reefer-page .air-reefer-step:hover,
.air-reefer-layout .air-reefer-step:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 34px rgba(0, 10, 28, 0.26);
}

.air-reefer-page .air-reefer-step-head,
.air-reefer-layout .air-reefer-step-head {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 26px 18px 14px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid rgba(226, 233, 242, 0.9);
  z-index: 1;
}

.air-reefer-page .air-reefer-step-index,
.air-reefer-layout .air-reefer-step-index {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 1;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: var(--step-accent);
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 10px 18px rgba(0, 10, 28, 0.18);
}

.air-reefer-page .air-reefer-step-head h3,
.air-reefer-layout .air-reefer-step-head h3 {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #0d3f7a;
  text-transform: uppercase;
}

.air-reefer-page .air-reefer-step-body,
.air-reefer-layout .air-reefer-step-body {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 18px 18px 22px;
  text-align: center;
}

.air-reefer-page .air-reefer-step-body p,
.air-reefer-layout .air-reefer-step-body p {
  max-width: 28ch;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  color: #6b7a8c;
}

@media (max-width: 1100px) {
  .air-reefer-page .air-reefer-timeline,
  .air-reefer-layout .air-reefer-timeline {
    display: none;
  }

  .air-reefer-page .air-reefer-step-index,
  .air-reefer-layout .air-reefer-step-index {
    display: grid;
  }

  .air-reefer-page .air-reefer-step,
  .air-reefer-layout .air-reefer-step {
    overflow: visible;
  }

  .air-reefer-page .air-reefer-steps,
  .air-reefer-layout .air-reefer-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .air-reefer-page .air-reefer-steps,
  .air-reefer-layout .air-reefer-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .air-reefer-page .air-reefer-steps,
  .air-reefer-layout .air-reefer-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .air-reefer-page .air-reefer-step,
  .air-reefer-layout .air-reefer-step {
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 10, 28, 0.18);
  }

  .air-reefer-page .air-reefer-step::before,
  .air-reefer-layout .air-reefer-step::before {
    border-radius: 14px 14px 0 0;
  }

  .air-reefer-page .air-reefer-step-head,
  .air-reefer-layout .air-reefer-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    text-align: left;
  }

  .air-reefer-page .air-reefer-step-index,
  .air-reefer-layout .air-reefer-step-index {
    position: static;
    top: auto;
    left: auto;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-width: 3px;
    transform: none;
  }

  .air-reefer-page .air-reefer-step-head h3,
  .air-reefer-layout .air-reefer-step-head h3 {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
  }

  .air-reefer-page .air-reefer-step-head h3 br,
  .air-reefer-layout .air-reefer-step-head h3 br {
    display: none;
  }

  .air-reefer-page .air-reefer-step-body,
  .air-reefer-layout .air-reefer-step-body {
    padding: 10px 14px 16px;
    text-align: left;
  }

  .air-reefer-page .air-reefer-step-body p,
  .air-reefer-layout .air-reefer-step-body p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

.reefer-page .page-main > section.section:not(.service-intro) {
  padding-block: var(--space-54);
}

.reefer-page .page-main > section.reefer-priority.section {
  padding-block: 27px 27px;
}

.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.18), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.1), transparent 42%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #0a78d1 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: screen, screen, normal;
}

.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.18), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.1), transparent 42%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #0a78d1 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: screen, screen, normal;
}

.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section .container {
  position: relative;
  z-index: 1;
}

.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout .container {
  position: relative;
  z-index: 1;
}

.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section::before,
.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section::after {
  position: absolute;
  width: 520px;
  height: 520px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout::before,
.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout::after {
  position: absolute;
  width: 520px;
  height: 520px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section::before {
  top: -220px;
  left: -240px;
}

.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout::before {
  top: -220px;
  left: -240px;
}

.reefer-page.air-reefer-page .page-main > section.reefer-implementation.section::after {
  right: -260px;
  bottom: -240px;
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.06);
}

.reefer-page .page-main > section.reefer-implementation.section.air-reefer-layout::after {
  right: -260px;
  bottom: -240px;
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.06);
}

.air-reefer-page .reefer-implementation.section,
.reefer-implementation.section.air-reefer-layout {
  background: transparent;
  background-image: none;
}

.reefer-page .reefer-implementation.section {
  padding-top: var(--space-30);
}

.reefer-importance.section,
.reefer-cargo.section {
  background: #fff;
}

.reefer-importance.section {
  background-image: none;
}

.reefer-importance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}

.reefer-importance-copy {
  padding-top: 2px;
}

.reefer-importance-kicker {
  margin: 0 0 12px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-subtitle-section);
  color: var(--brand);
}

.reefer-importance-title {
  margin: 0 0 14px;
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: var(--lh-heading);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-size: var(--fs-h-section);
  color: #0b1f36;
}

.reefer-importance-lead {
  margin: 0 0 18px;
  max-width: 60ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #5f7288;
}

.reefer-importance-alert {
  max-width: 620px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(240, 188, 188, 0.75);
  border-radius: 16px;
  background: rgba(255, 241, 241, 0.7);
}

.reefer-importance-alert-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #b21d1d;
}

.reefer-importance-alert-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #b21d1d;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  font-size: 0.82rem;
}

.reefer-importance-alert strong {
  font-weight: var(--fw-heading);
}

.reefer-importance-alert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #6a5160;
  font-size: 0.92rem;
}

.reefer-importance-alert-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 180px;
}

.reefer-importance-alert-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: #e44;
  box-shadow: 0 0 0 4px rgba(228, 68, 68, 0.12);
  flex: 0 0 10px;
}

.reefer-importance-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.reefer-importance-figure {
  margin: 0;
  position: sticky;
  top: 92px;
  width: min(440px, 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(16, 52, 84, 0.18);
  background: #dbe8f5;
}

.reefer-importance-figure-media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: clamp(240px, 20vw, 320px);
  background: url("/assets/images/stock/international-standard.jpg") center center /
    cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
}

.reefer-importance-figure-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 18, 33, 0.6) 0%, rgba(3, 18, 33, 0) 55%);
  pointer-events: none;
}

.reefer-importance-figure-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  color: #fff;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.reefer-importance-figure-caption span {
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--fs-subtitle-section);
  opacity: 0.9;
}

.reefer-importance-figure-caption strong {
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
}

.reefer-cargo.section {
  background-image: none;
}

.reefer-cargo-head {
  margin-bottom: 34px;
}

.reefer-cargo-title {
  margin: 0 0 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #0b1f36;
}

.reefer-cargo-head .reefer-cargo-title {
  font-size: var(--fs-h-section);
}

.reefer-cargo-line {
  display: inline-block;
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.reefer-cargo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.reefer-cargo-item {
  text-align: center;
  padding: 8px 6px 0;
}

.reefer-cargo-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3f7fb;
  border: 1px solid rgba(221, 231, 240, 0.9);
  color: #0d3f7a;
  box-shadow: 0 10px 22px rgba(16, 52, 84, 0.06);
}

.reefer-cargo-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.reefer-cargo-item h3 {
  margin: 0 0 8px;
  font-family: var(--ff-heading);
  font-size: 1.02rem;
  font-weight: var(--fw-heading);
  color: #0b1f36;
}

.reefer-cargo-item p {
  margin: 0;
  font-size: var(--fs-h6);
  line-height: var(--lh-body);
  color: #6a7f96;
}

@media (max-width: 1020px) {
  .reefer-importance-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reefer-importance-figure {
    position: relative;
    top: auto;
    margin-top: 18px;
  }

  .reefer-importance-figure {
    width: 100%;
  }

  .reefer-importance-figure-media {
    aspect-ratio: 16 / 10;
    min-height: 280px;
  }

  .reefer-cargo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .reefer-cargo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .reefer-cargo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.reefer-benefits.section {
  background: #fff;
}

.reefer-benefits .about-block-head {
  padding: 0 0 24px;
  border-top: 0;
  border-bottom: 0;
}

.reefer-benefits .why-subtitle {
  max-width: 760px;
  margin-inline: auto;
}

.reefer-benefits-head .t-h-section {
  font-weight: 400;
  text-transform: uppercase;
}

.reefer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 52px;
  align-items: start;
}

.reefer-benefit {
  text-align: left;
}

.reefer-benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--brand);
  background: rgba(13, 63, 122, 0.08);
  border: 1px solid rgba(209, 226, 242, 0.9);
  border-radius: 14px;
}

.reefer-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.reefer-benefit h3 {
  margin-bottom: 10px;
}

.reefer-benefit p {
  margin: 0;
}

.reefer-highlights.section {
  background: #fff;
}

.reefer-page .page-main > section.reefer-highlights.section {
  padding-block: 24px 28px;
}

.reefer-highlights-head {
  margin-bottom: 34px;
  text-align: left;
}

.reefer-highlights-head h2 {
  margin: 0 0 10px;
  font-family: var(--ff-heading);
  font-size: clamp(2.05rem, 3.1vw, 3.2rem);
  font-weight: 700;
  color: #0d3f7a;
  letter-spacing: 0.01em;
}

.reefer-highlights-head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.reefer-highlights-head p::after {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  content: "";
  background: var(--brand);
  border-radius: 999px;
}

.reefer-highlights-list {
  display: grid;
  gap: 10px;
}

.reefer-highlight-item {
  display: grid;
  grid-template-columns: minmax(0, 90px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 14px 0;
}

.reefer-highlight-item:last-child {
  border-bottom: 0;
}

.reefer-highlight-index {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(13, 63, 122, 0.7);
}

.reefer-highlight-content h3 {
  margin: 0 0 10px;
  font-family: var(--ff-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: #0d3f7a;
}

.reefer-highlight-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #5c6e86;
}

@media (max-width: 780px) {
  .reefer-highlight-item {
    grid-template-columns: minmax(0, 68px) minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .reefer-highlight-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .reefer-highlight-index {
    letter-spacing: 0.12em;
  }
}

.air-freight-page .service-media {
  background: url("/assets/images/stock/air-service.webp")
    center center / cover no-repeat;
}

.consolidation-page .service-media {
  background: url("/assets/images/stock/consolidation-service.png")
    center center / cover no-repeat;
}

.customs-procedures-service-page .service-media {
  background: url("/assets/images/stock/customs-procedures-service.jpg")
    center center / cover no-repeat;
}

.domestic-page .service-media {
  background: url("/assets/images/stock/domestic-transportation-service.jpg")
    center center / cover no-repeat;
}

.integrated-logistics-page .service-media {
  background: url("/assets/images/stock/integrated-logistics-service.jpg")
    center center / cover no-repeat;
}

.overseas-page .service-media {
  background: url("/assets/images/stock/overseas-service.jpg")
    center center / cover no-repeat;
}

.project-logistics-solutions-page .service-media {
  background: url("/assets/images/stock/project-logistics-solutions-service.png")
    center center / cover no-repeat;
}

.express-page .service-media {
  background: url("/assets/images/stock/express-delivery-service.jpg")
    center center / cover no-repeat;
}

.insurance-page .service-media {
  background: url("/assets/images/stock/cargo-insurance-service.webp")
    center center / cover no-repeat;
}

.service-detail-page .about.section {
  padding-block: var(--space-34) var(--space-42);
}

.service-detail-page .about .about-block-head {
  padding-top: var(--space-0);
  margin-bottom: 34px;
  border-top: 0;
}

.service-detail-page .about .reason-grid {
  margin-top: 0;
}

.route-list {
  max-width: 1400px;
  padding: 0;
  margin: 10px auto 0;
  text-align: center;
  list-style: none;
}

.route-list li {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 500;
  line-height: 1.24;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.route-list li + li {
  margin-top: 6px;
}

.service-contact {
  padding-top: var(--space-0);
  margin-top: 0;
}

.service-contact .cta {
  padding: 0;
  background: transparent;
}

.service-contact .cta-inner {
  min-height: 0;
  padding: 20px 24px;
  background: linear-gradient(90deg, var(--brand) 0%, #0a78d1 100%);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(9, 44, 82, 0.18);
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
  background:
    linear-gradient(rgba(8, 37, 67, 0.78), rgba(8, 37, 67, 0.82)),
    url("/assets/images/stock/contact-us.jpg")
      center / cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 174, 255, 0.24), transparent 34%),
    linear-gradient(rgba(8, 37, 67, 0.18), rgba(8, 37, 67, 0.2));
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
  padding: 112px 0 56px;
}

.contact-hero-copy h1,
.contact-panel h2,
.contact-panel strong,
.contact-panel a,
.contact-panel span {
  color: #fff;
}

.contact-hero-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.contact-hero-text {
  max-width: 640px;
  font-size: 1rem;
  color: rgba(241, 247, 255, 0.88);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.contact-panel {
  padding: 28px;
  background: rgba(8, 23, 39, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(4, 18, 30, 0.22);
  backdrop-filter: blur(10px);
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.contact-panel-label,
.contact-branch-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(241, 247, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel-address {
  margin-bottom: 18px;
  color: rgba(241, 247, 255, 0.88);
}

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

.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: var(--space-14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list li:last-child {
  padding-bottom: var(--space-0);
  border-bottom: 0;
}

.contact-list strong {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list span,
.contact-list a {
  color: rgba(241, 247, 255, 0.88);
}

.contact-head h2 {
  letter-spacing: 0.04em;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card-grid--branches {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(16, 52, 84, 0.08);
}

.contact-card {
  padding: 26px 24px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact-card p {
  font-family: inherit;
}

.contact-card a,
.contact-card span {
  font-weight: 700;
  color: var(--brand);
}

.contact-branches {
  padding-block: var(--space-30) var(--space-46);
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.contact-form-section {
  padding-block: var(--space-34) var(--space-40);
  background: #fff;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-map-card,
.contact-form-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(16, 52, 84, 0.08);
}

.contact-map-card {
  min-height: 560px;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.contact-map-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(17, 48, 79, 0.16);
}

.contact-map-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.04em;
}

.contact-form-card {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 0.98rem;
  color: #274761;
  background: #f8fbfe;
  border: 1px solid #d4dee8;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7e8c9b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(0, 98, 176, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 98, 176, 0.08);
}

.contact-form-footer {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-form-note {
  max-width: 460px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6c7a88;
}

.contact-form-submit {
  min-width: 138px;
}

.contact-section-divider {
  display: block;
  width: min(100%, 1120px);
  height: 1px;
  margin: 6px auto 12px;
  background: #d6d6d6;
  opacity: 1;
}

.contact-branch-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-branch-card .contact-branch-label {
  margin-bottom: 0;
  color: var(--brand);
}

.contact-branch-meta {
  display: grid;
  gap: 10px;
  padding: 14px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #dbe6f1;
}

.contact-branch-meta li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-branch-meta li span:first-child {
  min-width: 84px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #667483;
}

.contact-branch-meta a,
.contact-branch-meta li span:last-child {
  font-weight: 700;
  color: var(--brand);
  text-align: right;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
  content: "";
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  width: 620px;
  padding: 16px;
  pointer-events: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown#servicesDropdown .mega-menu {
  left: 0;
  grid-template-columns: 1fr;
  gap: 1px;
  width: max-content;
  min-width: 200px;
  max-width: 250px;
  padding: 6px;
}

.nav-dropdown#servicesDropdown .mega-menu a {
  padding: 4px 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.mega-menu-news {
  left: 0;
  grid-template-columns: 1fr;
  gap: 2px;
  width: max-content;
  min-width: 200px;
  max-width: 250px;
  padding: 8px;
}

.mega-menu-news a {
  padding: 5px 7px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.open .mega-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu a {
  padding: 8px 10px;
  font-weight: 600;
  color: #335671;
  border-radius: 0;
}

.mega-menu a:hover {
  color: var(--brand);
  background: #f1f7fd;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #0b3f6f 0%, #0c69bd 52%, #0d87db 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 23, 45, 0.48), rgba(10, 23, 45, 0.74)),
    url("/assets/images/stock/home-hero-company-profile-w1800.jpg")
      center / cover no-repeat;
  transform: scale(1.02);
  transition: background-image 0.45s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(110, 191, 255, 0.25), transparent 33%);
}

.hero-slider-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: clamp(760px, 92vh, 980px);
  padding: 92px 0;
}

.hero-slider-copy {
  max-width: 920px;
}

.hero-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
}

.hero-copy p {
  max-width: 920px;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  color: #e7f0f9;
}

.hero-slider-copy .eyebrow {
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.hero-slider-status {
  display: grid;
  gap: 18px;
  align-self: end;
  justify-self: end;
  min-width: 132px;
}

.hero-slider-dots {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.hero-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  transition:
    width 0.2s ease,
    background-color 0.2s ease;
}

.hero-dot.active {
  width: 72px;
  background: #2e90e5;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.hero-nav:hover,
.hero-nav:focus-visible {
  outline: none;
  background: rgba(245, 166, 35, 0.2);
  border-color: rgba(245, 166, 35, 0.72);
}

.hero-nav-prev {
  left: 42px;
}

.hero-nav-next {
  right: 42px;
}

.hero-slider:focus-visible {
  outline: none;
}

.home-services {
  background: #fff;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  aspect-ratio: 4 / 3;
  padding: 44px clamp(22px, 3vw, 42px) 36px;
  color: #f5f9ff;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.45)),
    linear-gradient(0deg, var(--service-overlay), var(--service-overlay)),
    var(--service-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-service-card--sea {
  --service-overlay: rgba(6, 34, 61, 0.72);
  --service-image: url("/assets/images/stock/home-hero-sea-freight-w1800.jpg");
}

.home-service-card--air {
  --service-overlay: rgba(8, 78, 136, 0.7);
  --service-image: url("/assets/images/stock/home-hero-air-freight-w1800.jpg");
}

.home-service-card--integrated {
  --service-overlay: rgba(6, 92, 110, 0.68);
  --service-image: url("/assets/images/stock/integrated-logistics-service.jpg");
}

.home-service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  max-width: 360px;
  text-shadow: 0 10px 20px rgba(10, 22, 36, 0.35);
}

.home-service-content h2 {
  margin: 0 0 14px;
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #ffffff;
}

.home-service-content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(240, 246, 255, 0.88);
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.home-service-link:hover,
.home-service-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  outline: none;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.reason,
.cta-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reason,
.news-card {
  padding: 22px;
}

.about {
  background: #fff;
}

.why-head h2,
.news-head h2 {
  margin-bottom: 8px;
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 500;
  color: #32363b;
  letter-spacing: 0.07em;
}

.why-subtitle,
.news-subtitle {
  margin: 0;
  font-size: 1.06rem;
  font-style: italic;
  color: #9f9f9f;
}

.why-line {
  display: inline-block;
  width: 118px;
  height: 4px;
  margin-top: 18px;
  background: var(--brand);
}

.reason {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
}

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

.reason-icon svg path,
.reason-icon svg rect,
.reason-icon svg circle,
.reason-icon svg line,
.reason-icon svg polyline {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason h3 {
  margin-bottom: 8px;
  font-family: var(--ff-heading);
  font-size: clamp(1.18rem, 1.7vw, 1.95rem);
  font-weight: 500;
  color: #373b40;
  letter-spacing: 0.02em;
}

.reason p {
  font-size: 0.97rem;
  color: #7d7d7d;
}

.sea-solutions {
  --sea-accent: var(--brand);
  --sea-accent-hover: var(--brand-dark);
  --sea-heading: #20486e;
  --sea-text: #315575;
  --sea-muted: #6483a0;
  background: #fff;
  padding-block: 48px 60px;
}

.sea-solutions .container {
  width: min(1320px, 96vw);
}

.sea-solutions .about-block-head {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-top: 0;
  border-bottom: 0;
}

.sea-solutions .why-head h2 {
  color: var(--sea-heading);
  letter-spacing: 0.04em;
}

.sea-solutions .why-subtitle {
  color: var(--sea-muted);
}

.sea-solutions .why-line {
  margin-top: 14px;
}

.sea-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sea-solution-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e0ea;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(23, 58, 92, 0.07);
}

.sea-solution-media {
  position: relative;
  min-height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sea-solution-media--tracking {
  background-image: url("/assets/images/stock/contact-specialized-news-hero-w1800.jpg");
}

.sea-solution-media--reefer {
  background-image: url("/assets/images/stock/sea-reefer-container.jpg");
}

.sea-solution-media--customs {
  background-image: url("/assets/images/stock/customs-procedures-service.jpg");
}

.sea-solution-media--insurance {
  background-image: url("/assets/images/stock/insurance.png");
}

.sea-solution-media--air-express {
  background-image: url("/assets/images/stock/air-reefer-container.jpg");
}

.sea-solution-media--cold-storage {
  background-image: url("/assets/images/stock/testimonials-container-terminal-w1600.jpg");
}

.integrated-logistics-page .sea-solution-media--tracking {
  background-image: url("/assets/images/stock/domestic-transportation-refrigerated-trucking.jpg");
}

.integrated-logistics-page .sea-solution-media--cold-storage {
  background-image: url("/assets/images/stock/domestic-transportation-cold-storage.jpg");
}

.domestic-page .sea-solution-media--reefer {
  background-image: url("/assets/images/stock/domestic-transportation-refrigerated-trucking.jpg");
}

.domestic-page .sea-solution-media--cold-storage {
  background-image: url("/assets/images/stock/domestic-transportation-cold-storage.jpg");
}

.air-solution-media--reefer {
  background-image: url("/assets/images/stock/air-reefer-container.jpg");
}

.air-solution-media--air-express {
  background-image: url("/assets/images/stock/express-delivery.jpg");
}

.air-solution-media--insurance {
  background-image: url("/assets/images/stock/insurance.png");
}

.sea-solution-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #eaf3ff;
  border-radius: 12px;
  box-shadow: 0 8px 14px rgba(12, 99, 180, 0.18);
}

.sea-solution-icon svg {
  width: 28px;
  height: 28px;
}

.sea-solution-icon svg path,
.sea-solution-icon svg rect,
.sea-solution-icon svg circle,
.sea-solution-icon svg line,
.sea-solution-icon svg polyline {
  fill: none;
  stroke: var(--sea-accent);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sea-solution-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 250px;
  padding: 22px 20px;
}

.sea-solution-body h3 {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: clamp(1.38rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--sea-accent);
  letter-spacing: 0.03em;
}

.sea-solution-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--sea-text);
}

.sea-solution-link {
  margin-top: auto;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--sea-accent);
}

.sea-solution-link:hover {
  color: var(--sea-accent-hover);
}

.sea-solutions-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 300px;
  margin: 24px auto 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.sea-page-btn {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--sea-accent);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.sea-page-btn:disabled {
  color: #9ab5d1;
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
}

.sea-page-indicator {
  min-width: 170px;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--sea-accent);
  text-align: center;
}

.cold-split.section {
  padding-top: 44px;
  padding-bottom: 44px;
  background: #fff;
}

.cold-storage-page .cold-split.section {
  padding-top: 0;
  padding-bottom: 0px;
}

.cold-truck-page .cold-split.section {
  padding-top: 0;
  padding-bottom: 0;
}

.cold-split-bleed {
  overflow: hidden;
}

.cold-split-bleed-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.cold-split-bleed-grid .cold-split-media {
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.cold-split-bleed-right {
  display: flex;
  align-items: stretch;
  background: transparent;
}

.cold-split-bleed-right .container {
  display: flex;
  align-items: stretch;
  width: min(1140px, 100%);
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(18px, 3vw, 42px);
  padding-right: clamp(18px, 3vw, 42px);
}

.cold-split-bleed-right .cold-split-copy {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cold-split-media {
  min-height: 420px;
  border-radius: 22px;
  background: url("/assets/images/stock/domestic-transportation-service.jpg") center / cover no-repeat;
  border: 1px solid #d7e0ea;
  box-shadow: 0 16px 40px rgba(23, 58, 92, 0.08);
}

.cold-truck-page .cold-split-media {
  background: url("/assets/images/stock/refrigerated-trucking-service.jpg") center / cover no-repeat;
}

.cold-split-copy {
  padding: 26px 24px;
  background: #f5f8fc;
  border: 1px solid #e2e9f2;
  border-radius: 22px;
}

.cold-split-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  line-height: 1.1;
  color: #1a2b45;
}

.cold-split-copy p {
  margin: 0 0 14px;
  color: #5c6e86;
}

.cold-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cold-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3c5873;
}

.cold-bullets li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #2ea9f0;
  border-radius: 999px;
}

.cold-bullets strong {
  color: #1a2b45;
  font-weight: 800;
}

.cold-split-actions {
  margin-top: 18px;
}

.cold-industries.section {
  padding-top: 25px;
  padding-bottom: 31px;
  background: #fff;
}

.cold-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.cold-industry-card {
  position: relative;
  min-height: 170px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d7e0ea;
  background: #1a2b45;
  box-shadow: 0 10px 22px rgba(23, 58, 92, 0.07);
}

.cold-industry-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(12, 42, 72, 0.78) 0%, rgba(12, 42, 72, 0.18) 70%),
    var(--cold-industry-bg, none);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.cold-industry-card > * {
  position: relative;
}

.cold-industry-card h3 {
  margin: 0 0 8px;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.cold-industry-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.cold-industry-card--food {
  --cold-industry-bg: url("/assets/images/stock/frozen-food.jpg");
}

.cold-industry-card--dairy {
  --cold-industry-bg: url("/assets/images/stock/ice-cream-&-dairy.jpg");
}

.cold-industry-card--retail {
  --cold-industry-bg: url("/assets/images/stock/retail-distribution.jpg");
}

.cold-industry-card--medical {
  --cold-industry-bg: url("/assets/images/stock/pharma-&-medicine.webp");
}

.cold-storage-page .cold-industry-card--dairy {
  --cold-industry-bg: url("/assets/images/stock/fresh-produce.webp");
}

.cold-storage-page .cold-industry-card--retail {
  --cold-industry-bg: url("/assets/images/stock/dairy-&-chilled.jpg");
}

.cold-storage-page .cold-split-media {
  background-image: url("/assets/images/stock/warehouse-section.jpg");
}

.cold-storage-page .cold-split-copy p {
  color: var(--muted);
}

.cold-storage-page .cold-storage-split-title {
  margin: 0 0 10px;
  font-family: var(--ff-heading);
  font-weight: 500;
  line-height: var(--lh-heading);
  font-size: var(--fs-h-section);
  letter-spacing: 0.02em;
  color: var(--ink);
}

.cold-storage-page .cold-bullets li {
  font-size: var(--fs-body);
  color: var(--muted);
}

.cold-storage-page .cold-bullets strong {
  color: var(--ink);
}

.cold-storage-page .cold-consult-banner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  max-width: 600px;
  margin: 16px auto 0 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cold-storage-page .cold-consult-banner .reefer-priority-banner-image {
  min-height: 80px;
  background-image: url("/assets/images/stock/cold-storage-warehouse-image.jpg");
}

.cold-storage-page .cold-consult-banner .reefer-priority-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
}

.cold-storage-page .cold-consult-banner .reefer-priority-banner-copy p {
  margin: 0;
  max-width: 42ch;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #fff;
}

.cold-storage-page .cold-consult-banner .reefer-priority-banner-copy a {
  padding: 6px 10px;
  font-size: 0.76rem;
  border-radius: 10px;
}

.storage-range.section {
  padding-top: 54px;
  padding-bottom: 62px;
  background: radial-gradient(circle at top, #0f1b3b 0%, #0a132a 40%, #070d1e 100%);
  color: #e8efff;
}

.cold-storage-page .storage-range.section {
  padding-bottom: 24px;
}

.storage-range-title {
  color: #f2f6ff;
}

.storage-range-subtitle {
  color: rgba(232, 239, 255, 0.72);
}

.storage-range.section .why-line {
  background: linear-gradient(90deg, #2e90ff, #6bd6ff);
}

.storage-range-body {
  margin-top: 26px;
}

.storage-range-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  height: 26px;
  margin: 10px 6px 22px;
}

.storage-range-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #7aa7ff 0%, #7fe6ff 50%, #a6ffdc 100%);
}

.storage-range-dot {
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-radius: 999px;
  background: #7aa7ff;
  box-shadow: 0 0 0 6px rgba(122, 167, 255, 0.2);
  position: relative;
  z-index: 1;
}

.storage-range-dot:nth-child(2) {
  background: #7fe6ff;
  box-shadow: 0 0 0 6px rgba(127, 230, 255, 0.2);
}

.storage-range-dot:nth-child(3) {
  background: #a6ffdc;
  box-shadow: 0 0 0 6px rgba(166, 255, 220, 0.2);
}

.storage-range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
}

.storage-range-card {
  width: 71%;
  min-height: 280px;
  padding: 20px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(14, 29, 56, 0.9), rgba(8, 18, 38, 0.95));
  box-shadow: 0 18px 40px rgba(4, 9, 20, 0.45);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  --accent: #6bd6ff;
  --accent-soft: rgba(107, 214, 255, 0.18);
}

.storage-range-card h3 {
  margin: 2px 0 6px;
  color: #f2f6ff;
  font-size: 1.05rem;
}

.storage-range-temp {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.storage-range-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(232, 239, 255, 0.74);
}

.storage-range-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--accent);
  background: none;
}

.storage-range-icon svg {
  width: 22px;
  height: 22px;
}

.storage-range-icon.is-cool,
.storage-range-icon.is-chilled,
.storage-range-icon.is-frozen {
  background: none;
}

.storage-range-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: rgba(232, 239, 255, 0.7);
}

.storage-range-list li {
  margin: 4px 0 0;
  padding-left: 16px;
  position: relative;
}

.storage-range-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.storage-range-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--accent-soft), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.storage-range-card:nth-child(1) {
  --accent: #7aa7ff;
  --accent-soft: rgba(122, 167, 255, 0.2);
}

.storage-range-card:nth-child(2) {
  --accent: #7fe6ff;
  --accent-soft: rgba(127, 230, 255, 0.2);
}

.storage-range-card:nth-child(3) {
  --accent: #a6ffdc;
  --accent-soft: rgba(166, 255, 220, 0.2);
}

@media (max-width: 960px) {
  .storage-range-track {
    display: none;
  }

  .storage-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .storage-range-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.storage-system.section {
  padding-top: 56px;
  padding-bottom: 62px;
  background: #fff;
}

.storage-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.storage-system-card {
  padding: 22px 24px 20px;
  border-radius: 20px;
  border: 1px solid #e2e9f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 14px 28px rgba(23, 58, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.storage-system-card h3 {
  margin: 0 0 10px;
  color: #1d3557;
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

.storage-system-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #5c6b7d;
}

.storage-system-card:hover {
  transform: translateY(-2px);
  border-color: #cdd9ea;
  box-shadow: 0 18px 36px rgba(23, 58, 92, 0.12);
}

.storage-system-ticks {
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #6b7687;
  font-weight: 600;
}

.storage-system-ticks li {
  position: relative;
  padding-left: 22px;
}

.storage-system-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e6bf6;
  font-weight: 700;
}

@media (max-width: 900px) {
  .storage-system-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .storage-system-ticks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.storage-models.section {
  padding-top: 54px;
  padding-bottom: 62px;
  background: #fff;
}

.storage-models-layout {
  display: grid;
  grid-template-columns: auto 12px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px auto 0;
  max-width: 1040px;
  justify-content: center;
}

.storage-models-title .t-h-section {
  margin: 0;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.6px;
}

.storage-model-divider {
  width: 2px;
  height: 48px;
  border-radius: 999px;
  background: #2e6bf6;
  justify-self: center;
}

.storage-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  justify-self: center;
}

.storage-model-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #edf1f7;
  background: #fff;
  box-shadow: 0 10px 20px rgba(20, 45, 80, 0.06);
  text-align: center;
}

.storage-model-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e9eef6;
}

.storage-model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.storage-model-media--pallet img {
  object-position: center 35%;
}

.storage-model-media--area img {
  object-position: center 45%;
}

.storage-model-media--volume img {
  object-position: center 30%;
}

.storage-model-media--private img {
  object-position: center 40%;
}

.storage-model-body {
  padding: 14px 16px 16px;
}

.storage-model-card h3 {
  margin: 0 0 1px;
  color: #1d4ed8;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
  min-height: 1.9em;
}

.storage-model-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.15;
  min-height: 1.4em;
  letter-spacing: 0.2px;
  text-transform: none;
  color: #91a0b2;
}

@media (max-width: 980px) {
  .storage-models-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .storage-models-title .t-h-section {
    text-align: center;
  }

  .storage-model-divider {
    width: 56px;
    height: 2px;
  }

  .storage-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .storage-model-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .storage-model-media {
    aspect-ratio: 16 / 9;
  }

  .storage-model-card h3 {
    white-space: normal;
  }
}

.storage-integrations.section {
  padding-top: 54px;
  padding-bottom: 62px;
  background: #fff;
}

.storage-integration-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.storage-integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid #edf1f7;
  background: #fff;
  text-align: center;
  color: #1f3356;
  box-shadow: 0 10px 24px rgba(20, 45, 80, 0.06);
  min-height: 112px;
}

.storage-integration-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: #2e6bf6;
}

.storage-integration-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.storage-integration-title {
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

@media (max-width: 1100px) {
  .storage-integration-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .storage-integration-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .storage-integration-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.storage-process.section {
  padding-top: 54px;
  padding-bottom: 66px;
  background: #fff;
}

.cold-storage-page .storage-process.section {
  padding-top: 24px;
  background: radial-gradient(circle at 20% 10%, rgba(46, 169, 240, 0.22), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(29, 255, 179, 0.12), transparent 42%),
    linear-gradient(135deg, #08335f 0%, #0d3f7a 55%, #06407e 100%);
}

.cold-storage-page .storage-process.section::before {
  display: none;
}

.cold-storage-page .storage-process .section-head h2 {
  color: #fff;
}

.cold-storage-page .storage-process .why-subtitle {
  color: rgba(232, 245, 255, 0.82);
  max-width: 760px;
  margin-inline: auto;
  font-style: italic;
}

.cold-storage-page .storage-process .why-line {
  background: rgba(255, 255, 255, 0.44);
}

.cold-storage-page .air-reefer-flow {
  margin-top: 38px;
}

.cold-storage-page .air-reefer-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin: 0 0 26px;
  padding: 0;
}

.cold-storage-page .air-reefer-timeline::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
}

.cold-storage-page .air-reefer-dot {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d3f7a;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  box-shadow:
    0 16px 26px rgba(0, 10, 28, 0.22),
    0 0 0 4px rgba(74, 173, 255, 0.55);
}

.cold-storage-page .air-reefer-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.cold-storage-page .air-reefer-step {
  --step-accent: #2ea9f0;
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 233, 242, 0.7);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 10, 28, 0.22);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.cold-storage-page .air-reefer-step::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 6px;
  content: "";
  background: var(--step-accent);
  border-radius: 18px 18px 0 0;
  pointer-events: none;
}

.cold-storage-page .air-reefer-step--receive {
  --step-accent: #2ee9ff;
}

.cold-storage-page .air-reefer-step--pack {
  --step-accent: #4aadff;
}

.cold-storage-page .air-reefer-step--temp {
  --step-accent: #1dffb3;
}

.cold-storage-page .air-reefer-step--deliver {
  --step-accent: #2ea9f0;
}

.cold-storage-page .air-reefer-step:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 34px rgba(0, 10, 28, 0.26);
}

.cold-storage-page .air-reefer-step-head {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 26px 18px 14px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid rgba(226, 233, 242, 0.9);
  z-index: 1;
}

.cold-storage-page .air-reefer-step-index {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 1;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: var(--step-accent);
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 10px 18px rgba(0, 10, 28, 0.18);
}

.cold-storage-page .air-reefer-step-head h3 {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #0d3f7a;
  text-transform: uppercase;
}

.cold-storage-page .air-reefer-step-body {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 18px 18px 22px;
  text-align: center;
}

.cold-storage-page .air-reefer-step-body p {
  max-width: 28ch;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  color: #6b7a8c;
}

@media (max-width: 1100px) {
  .cold-storage-page .air-reefer-timeline {
    display: none;
  }

  .cold-storage-page .air-reefer-step-index {
    display: grid;
  }

  .cold-storage-page .air-reefer-step {
    overflow: visible;
  }

  .cold-storage-page .air-reefer-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .cold-storage-page .air-reefer-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .cold-storage-page .air-reefer-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .cold-storage-page .air-reefer-step {
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 10, 28, 0.18);
  }

  .cold-storage-page .air-reefer-step::before {
    border-radius: 14px 14px 0 0;
  }

  .cold-storage-page .air-reefer-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    text-align: left;
  }

  .cold-storage-page .air-reefer-step-index {
    position: static;
    top: auto;
    left: auto;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-width: 3px;
    transform: none;
  }

  .cold-storage-page .air-reefer-step-head h3 {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
  }

  .cold-storage-page .air-reefer-step-head h3 br {
    display: none;
  }

  .cold-storage-page .air-reefer-step-body {
    padding: 10px 14px 16px;
    text-align: left;
  }

  .cold-storage-page .air-reefer-step-body p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

@media (max-width: 1020px) {
  .cold-split-bleed-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 0 16px;
  }

  .cold-split-bleed-grid .cold-split-media {
    min-height: 340px;
    border-radius: 0;
    border: 0;
  }

  .cold-split-bleed-right .container {
    padding: 0;
  }

  .cold-split-media {
    min-height: 340px;
  }

  .cold-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-range-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .storage-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-integration-list {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 560px) {
  .cold-industry-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.testimonials {
  padding: 32px 0 12px;
  background: #fff;
}

.testimonial-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.testimonial-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 56px 46px 92px;
  color: #fff;
  background: linear-gradient(160deg, #0a4f94 0%, #0d68bc 58%, #1590df 100%);
}

.testimonial-mark {
  margin: 0 0 18px;
  font-family: var(--ff-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: #fff;
}

.testimonial-eyebrow {
  width: min(100%, 720px);
  margin: 0 0 18px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(235, 244, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.testimonial-text {
  width: min(100%, 720px);
  margin: 0;
  font-size: clamp(1rem, 1.12vw, 1.32rem);
  font-style: italic;
  line-height: 1.48;
  color: #fff;
}

.testimonial-sign {
  display: block;
  width: min(100%, 720px);
  padding-top: var(--space-22);
  margin: 30px 0 0;
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.testimonial-source {
  width: min(100%, 720px);
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(235, 244, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: min(100%, 720px);
  margin-top: 28px;
}

.testimonial-copy > * {
  margin-right: auto;
  margin-left: auto;
}

.testimonial-copy > .testimonial-mark {
  margin-right: 0;
  margin-left: 0;
}

.testimonial-dots span {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.testimonial-dots span.active {
  background: #fff;
}

.testimonial-photo {
  min-height: 100%;
  background:
    linear-gradient(rgba(7, 32, 67, 0.16), rgba(7, 32, 67, 0.12)),
    url("/assets/images/stock/testimonials-container-terminal-w1600.jpg")
      center / cover no-repeat;
}

.partners.section {
  padding: 28px 0;
}

.logo-strip {
  position: relative;
  padding: 12px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
}

.logo-strip::before,
.logo-strip::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 72px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: logo-marquee 26s linear infinite;
}

.partner-logo {
  display: grid;
  flex: 0 0 176px;
  place-items: center;
  height: 56px;
  padding: 6px 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.partner-logo img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.faq.section {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(rgba(17, 43, 78, 0.84), rgba(17, 43, 78, 0.88)),
    url("/assets/images/stock/faq-background-w1800.jpg")
      center / cover no-repeat;
}

.faq-wrap {
  position: relative;
  z-index: 1;
}

.faq-head {
  margin-bottom: 22px;
  text-align: center;
}

.faq-kicker {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.faq-head h2 {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-style: italic;
  color: rgba(228, 239, 255, 0.82);
}

.faq-line {
  display: inline-block;
  width: 92px;
  height: 3px;
  margin-top: 12px;
  background: #1f8bdb;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  align-self: start;
  background: rgba(14, 34, 56, 0.28);
  border: 1px solid rgba(150, 188, 225, 0.36);
}

.faq-q {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ecf4ff;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 3px solid #1f8bdb;
}

.faq-a {
  max-width: none;
  max-height: 0;
  padding: 0;
  margin: 0 14px 0 17px;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(228, 239, 255, 0.82);
  text-align: justify;
  text-justify: inter-word;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.28s ease,
    margin 0.28s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.faq-item.open .faq-a {
  max-height: 220px;
  margin: 10px 14px 14px 17px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .faq-q {
  color: #fff;
}

.date {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand);
}

.news {
  background: #fff;
}

.news-line {
  display: inline-block;
  width: 118px;
  height: 4px;
  margin-top: 18px;
  background: var(--brand);
}

.news .news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.news .news-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.news-card-empty {
  min-height: 0;
}

.news-card-empty > * {
  display: none;
}

.news-image {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  overflow: hidden;
}

.news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .news-card h3 {
  margin-bottom: 8px;
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 1.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.34;
  color: #34383e;
}

.news-title-link {
  color: inherit;
  text-decoration: none;
}

.news-title-link:hover {
  color: var(--brand);
}

.news .news-card .date {
  margin-bottom: 14px;
  font-weight: 600;
  color: #8f8f8f;
}

.news .news-card p {
  color: #7c7c7c;
}

.dynamic-news-article {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(10, 35, 63, 0.07);
}

.dynamic-news-grid .dynamic-news-article {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.dynamic-news-header {
  padding: 28px 28px 18px;
  border-bottom: 1px solid #e0e0e0;
}

.dynamic-news-header h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #1b2735;
}

.dynamic-news-meta {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #7d8792;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dynamic-news-date {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #8a949e;
}

.dynamic-news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.dynamic-news-share-label {
  font-size: 0.95rem;
  color: var(--brand);
}

.dynamic-news-share-btn {
  padding: 8px 14px;
  font: inherit;
  font-size: 0.9rem;
  color: #2e3b4a;
  background: #f1f1f1;
  border: 1px solid #d1d6dc;
  cursor: pointer;
}

.dynamic-news-share-btn:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.dynamic-news-excerpt {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #616c76;
}

.dynamic-news-cover img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.dynamic-news-cover {
  margin: 0 28px 24px;
}

.dynamic-news-content {
  padding: 24px 28px 34px;
}

.dynamic-news-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #556171;
}

.dynamic-news-content p + p {
  margin-top: 18px;
}

.dynamic-news-figure {
  margin: 0 0 24px;
}

.dynamic-news-figure img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.dynamic-news-figure figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #7a8794;
}

.dynamic-news-empty {
  color: #7a8794;
}

.news-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 12px 28px 28px;
}

.news-post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  transition: color 0.2s ease;
}

.news-post-nav-link:hover {
  color: #0e4a92;
}

.news-post-nav-link.is-next {
  text-align: right;
  align-items: flex-end;
}

.news-post-nav-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8794;
  font-weight: 600;
}

.news-post-nav-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: #0b3b73;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.news-post-nav-spacer {
  display: block;
}

.news-post-video {
  position: relative;
  overflow: hidden;
  background: #1b2735;
  aspect-ratio: 16 / 9;
}

.news-post-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 26, 45, 0.7), rgba(7, 31, 58, 0.4)),
    url("/assets/images/stock/contact-specialized-news-hero-w1800.jpg")
      center / cover no-repeat;
}

.news-post-video-placeholder span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-post-contact h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.news-post-map {
  overflow: hidden;
  border: 1px solid #d6d6d6;
  background: #f1f1f1;
}

.news-post-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.news-post-contact-body {
  padding-top: 14px;
  color: #7b838c;
  line-height: 1.7;
}

.news-post-contact-body p {
  margin-bottom: 10px;
}

.specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/contact-specialized-news-hero-w1800.jpg")
      center / cover no-repeat;
}

.recruitment-page .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/recruitment-news-hero-w1800.jpg")
      center / cover no-repeat;
}

[data-lang-vi-url="/vn/news/knowledge"] .specialized-news-hero,
[data-lang-en-url="/news/knowledge"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/knowledge.jpg")
      center / cover no-repeat;
}

[data-lang-vi-url="/vn/news/specialized"] .specialized-news-hero,
[data-lang-en-url="/news/specialized"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/contact-specialized-news-hero-w1800.jpg")
      center / cover no-repeat;
}

[data-lang-vi-url="/vn/news/internal"] .specialized-news-hero,
[data-lang-en-url="/news/internal"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/aci.png")
      center / cover no-repeat;
}

[data-lang-vi-url="/vn/news/recruitment"] .specialized-news-hero,
[data-lang-en-url="/news/recruitment"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/recruitment.jpg")
      center / cover no-repeat;
}

[data-news-category="specialized-news"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/contact-specialized-news-hero-w1800.jpg")
      center / cover no-repeat;
}

[data-news-category="specialized-knowledge"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/knowledge.jpg")
      center / cover no-repeat;
}

[data-news-category="internal-news"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/aci.png")
      center / cover no-repeat;
}

[data-news-category="recruitment"] .specialized-news-hero {
  background:
    linear-gradient(rgba(7, 31, 58, 0.72), rgba(7, 31, 58, 0.78)),
    url("/assets/images/stock/recruitment.jpg")
      center / cover no-repeat;
}

.specialized-news-section {
  background: #ececec;
}

.specialized-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
  gap: 44px;
  align-items: start;
}

.specialized-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.specialized-news-empty-state {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 320px;
  padding: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px dashed #c9ced4;
}

.specialized-news-empty-state p {
  max-width: 420px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6f7983;
}

.specialized-news-card,
.specialized-news-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.specialized-news-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
}

.specialized-news-thumb {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #d7d7d7;
}

.specialized-news-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.specialized-news-card:hover .specialized-news-thumb img {
  transform: scale(1.03);
}

.specialized-news-body {
  padding: 0;
}

.specialized-news-meta,
.specialized-news-side-label {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7d8792;
  text-transform: none;
  letter-spacing: 0.01em;
}

.specialized-news-card h2,
.specialized-news-panel h2,
.specialized-news-panel h3 {
  margin-bottom: 10px;
  color: #1b2735;
}

.specialized-news-card h2 {
  font-size: clamp(1.35rem, 1.5vw, 1.95rem);
  font-weight: 500;
  line-height: 1.38;
}

.specialized-news-card p:last-child,
.specialized-news-panel p {
  margin-bottom: 0;
  line-height: 1.7;
  color: #7b838c;
}

.specialized-news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.specialized-news-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1b2f45;
  background: #fff;
  border: 1px solid #d6dee7;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(16, 52, 84, 0.08);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.specialized-news-page-link:hover {
  color: #0a4f8f;
  border-color: rgba(12, 99, 180, 0.55);
  background: #f2f7ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(12, 99, 180, 0.12);
}

.specialized-news-page-link:focus-visible {
  outline: 3px solid rgba(12, 99, 180, 0.2);
  outline-offset: 2px;
}

.specialized-news-page-link.is-active,
.specialized-news-page-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #0c63b4 0%, #0a4f8f 100%);
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(12, 99, 180, 0.25);
}


.specialized-news-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 28px;
}

.specialized-news-panel {
  padding: 0;
}

.specialized-news-search {
  position: relative;
}

.specialized-news-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 52px 0 16px;
  font: inherit;
  color: #3f4953;
  background: #f5f5f5;
  border: 1px solid #d6d6d6;
}

.specialized-news-search input:focus {
  outline: 0;
  border-color: rgba(234, 131, 33, 0.8);
  box-shadow: 0 0 0 3px rgba(234, 131, 33, 0.12);
}

.specialized-news-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 50px;
  font-size: 1.1rem;
  color: #7b838c;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.specialized-news-search button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.specialized-news-sidebar-block {
  padding-top: var(--space-18);
  border-top: 1px solid #d2d2d2;
}

.specialized-news-sidebar-block h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.specialized-news-highlight-list {
  display: grid;
  gap: 28px;
}

.specialized-news-highlight {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.specialized-news-highlight-date {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.specialized-news-highlight-day {
  min-width: 62px;
  padding: 12px 8px 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  text-align: center;
  background: #e9e9e9;
}

.specialized-news-highlight-month {
  font-size: 0.78rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.specialized-news-highlight-content h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}

.specialized-news-highlight-content p {
  margin: 0;
  line-height: 1.7;
  color: #7b838c;
}

.specialized-news-link {
  color: inherit;
  text-decoration: none;
}

.specialized-news-link:hover {
  color: var(--brand);
}


.specialized-news-page .about-hero-content {
  text-align: center;
}

.specialized-news-page .about-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.specialized-news-page .about-hero-line {
  margin-right: auto;
  margin-left: auto;
}

.cta {
  padding: 0;
  background: linear-gradient(90deg, var(--brand) 0%, #0a78d1 100%);
}

.cta-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  padding: 16px 0;
  color: #fffef8;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 32px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.cta-btn:hover {
  background: rgba(7, 42, 76, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
}

.home-cta-compact .cta-inner {
  gap: 16px;
  min-height: 72px;
  padding: 10px 0;
}

.home-cta-compact .cta-inner h2 {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.3;
}

.home-cta-compact .cta-btn {
  min-width: 96px;
  min-height: 28px;
  font-size: 0.68rem;
  border-radius: 5px;
}

.footer {
  padding-top: var(--space-54);
  color: #c7ced6;
  background: #071a2d;
}

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

.footer h3,
.footer h4 {
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #fff;
}

.footer h4::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  content: "";
  background: #1f8bdb;
}

.footer p,
.footer li {
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.48;
  color: #c7ced6;
}

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

.footer-social {
  gap: 14px;
  margin-top: 14px;
}

.footer-social .social-link {
  color: #1f8bdb;
}

.footer-social .social-link:hover {
  color: #57b2ff;
  transform: translateY(-1px);
}

.footer-social .social-link:focus-visible {
  outline: 2px solid rgba(31, 139, 219, 0.65);
  outline-offset: 3px;
}

.footer-social .social-link svg {
  width: 42px;
  height: 42px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  min-height: 46px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid rgba(137, 190, 234, 0.72);
  border-radius: 6px;
}

.copyright {
  padding: 12px 0;
  margin-top: 30px;
  font-size: 0.84rem;
  text-align: center;
  border-top: 1px solid rgba(129, 173, 212, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   LAYER: RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sea-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sea-solutions .container {
    width: min(1200px, 94vw);
  }

  .reefer-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
  }

}

@media (max-width: 960px) {
  .nav-wrap {
    position: relative;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }

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

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card-grid--branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-card {
    padding: 28px;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-submit {
    width: 100%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .menu-toggle {
    display: flex;
    grid-column: -2 / -1;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: min(92vw, 360px);
    padding: 10px 16px 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
    color: #274761;
  }

  .nav > a,
  .nav-drop-toggle {
    width: 100%;
    padding: 10px 0;
  }

  .nav-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-drop-toggle::after {
    content: "";
    width: 18px;
    height: 18px;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7177' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    transition: transform 0.2s ease;
  }

  .nav-dropdown.open .nav-drop-toggle::after {
    transform: rotate(180deg);
  }

  .nav.open > a:hover,
  .nav.open .nav-drop-toggle:hover {
    color: var(--brand);
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    width: 100%;
    padding: 8px 0;
    pointer-events: auto;
    border: 0;
    border-top: 1px dashed #cfddec;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .mega-menu-news {
    width: 100%;
    max-width: none;
    padding: 8px 0;
  }

  .nav-dropdown.open .mega-menu {
    display: grid;
  }

  .hero-slider-content {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 320px;
  }

  .about-hero-content {
    padding-top: var(--space-38);
  }

  .about-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-list-simple {
    grid-template-columns: 1fr;
  }

  .service-detail-page .service-copy {
    padding: 44px 0 30px;
  }

  .service-detail-page .about.section {
    padding-block: var(--space-54);
  }

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

  .specialized-news-grid,
  .specialized-news-list,
  .specialized-news-card {
    grid-template-columns: 1fr;
  }

  .specialized-news-sidebar {
    position: static;
  }

  .news-post-nav {
    grid-template-columns: 1fr;
    padding: 8px 20px 24px;
  }

  .news-post-nav-link.is-next {
    text-align: left;
    align-items: flex-start;
  }

  .news-post-nav-spacer {
    display: none;
  }

  .hero-slider-content {
    min-height: auto;
    padding: 66px 0;
  }

  .hero-slider-status {
    align-self: start;
    justify-self: start;
  }

  .hero-slider-dots {
    justify-items: start;
  }

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

  .partner-logo {
    flex-basis: 160px;
    height: 54px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-detail-page .service-media {
    width: 100%;
    min-height: 360px;
    margin-right: 0;
  }

  .reefer-page .reefer-priority-grid,
  .reefer-priority-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page .about-team .reason,
  .about-page .about .reason,
  .about.about-match .reason {
    grid-template-columns: 88px 1fr;
    column-gap: 14px;
  }

  .about-page .about-team .reason-icon.reason-index,
  .about-page .about .reason-icon,
  .about.about-match .reason-icon {
    width: 84px;
    height: 64px;
    margin-top: 0;
  }

  .about-page .about-team .reason-icon.reason-index {
    padding-top: var(--space-2);
    font-size: 2rem;
  }

  .t-heading.t-h-reason {
    font-size: 1.24rem;
  }

  .about-page .about-team .reason p,
  .about-page .about .reason p,
  .about.about-match .reason p {
    font-size: 1rem;
  }

  .testimonial-split {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
  }

  .testimonial-copy {
    padding: 42px 28px 32px;
  }

  .testimonial-photo {
    min-height: 280px;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 46px;
    padding: 6px 0;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: 0;
  }

  .contact-hero-grid {
    padding: 104px 0 42px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 400px;
  }

  .reefer-priority.section {
    padding-top: 18px;
  }

  .reefer-priority-main h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .reefer-priority-banner {
    grid-template-columns: 1fr;
  }

  .reefer-page .reefer-priority-side {
    margin-top: 0;
    padding: 22px 20px 14px;
    border-radius: 16px;
  }

  .reefer-priority-side h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
  }

  .reefer-priority-side p {
    font-size: 0.98rem;
  }

  .reefer-page.service-detail-page .service-intro.section {
    padding-bottom: var(--space-46);
  }

  .reefer-page .page-main > section.section:not(.service-intro) {
    padding-block: var(--space-46);
  }

  .reefer-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .reefer-highlights-head h2 {
    letter-spacing: 0;
  }


  .contact-card-grid,
  .contact-card-grid--branches {
    grid-template-columns: 1fr;
  }

  .sea-solutions-grid {
    grid-template-columns: 1fr;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 16px;
  }

  .home-services {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    background: transparent;
  }

  .home-service-card {
    aspect-ratio: 4 / 3;
    padding: 36px 22px 30px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(10, 30, 48, 0.22);
  }

  .home-service-content p {
    font-size: 0.95rem;
  }

  .sea-solutions {
    padding-block: 38px 48px;
  }

  .sea-solutions .about-block-head {
    padding-bottom: 20px;
    margin-bottom: 22px;
  }

  .sea-solution-media {
    min-height: 210px;
  }

  .sea-solution-body {
    min-height: 0;
    padding: 22px 20px;
  }

  .sea-solution-body h3 {
    font-size: clamp(1.2rem, 6vw, 1.75rem);
  }

  .sea-solutions-controls {
    width: 100%;
    min-width: 0;
    max-width: 360px;
    margin-top: 18px;
  }

  .sea-page-indicator {
    min-width: 0;
    font-size: 0.96rem;
  }

  .contact-form-card {
    padding: 24px 22px;
  }

  .contact-form-section {
    padding-block: var(--space-22) var(--space-28);
  }

  .contact-branches {
    padding-block: var(--space-22) var(--space-34);
  }

  .logo-image {
    max-width: 152px;
    height: 56px;
  }

  .section {
    padding-block: var(--section-y-compact);
    padding-inline: var(--space-0);
  }

  .hero-slider-content {
    min-height: 100svh;
    height: auto;
    padding: 120px 0 96px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-slider-status {
    gap: 14px;
    min-width: 0;
  }

  .hero-nav {
    top: auto;
    bottom: 22px;
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
    transform: none;
  }

  .hero-nav-prev {
    left: 18px;
  }

  .hero-nav-next {
    right: 18px;
  }

  .about-hero {
    min-height: 290px;
  }

  .about-hero-content h1 {
    font-size: 1.65rem;
  }

  .about-hero-content p {
    font-size: 0.82rem;
  }

  .about-hero-line {
    width: 88px;
    height: 3px;
  }

  .service-detail-page .service-copy p {
    font-size: 1rem;
  }

  .service-detail-page .service-media {
    width: 100%;
    min-height: 280px;
    margin-right: 0;
  }

  .about-feature h3 {
    font-size: 1.85rem;
  }

  .about-feature h3.t-heading.t-h-section {
    font-size: 1rem;
  }

  .about-feature img {
    min-height: 200px;
  }

  .about-feature--mission img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
  }

  .about-block-head h2 {
    font-size: 1.6rem;
  }

  .about-block-head p {
    font-size: 0.84rem;
  }

  .t-heading.t-h-section {
    font-size: 1rem;
  }

  .t-subtitle-section {
    font-size: 1rem;
  }

  .about-page .about-team .reason,
  .about-page .about .reason,
  .about.about-match .reason {
    grid-template-columns: 74px 1fr;
    column-gap: 12px;
  }

  .about-page .about-team .reason-icon.reason-index,
  .about-page .about .reason-icon,
  .about.about-match .reason-icon {
    width: 70px;
    height: 48px;
    margin-top: 0;
  }

  .about-page .about-team .reason-icon.reason-index {
    padding-top: var(--space-2);
    font-size: 1.55rem;
  }

  .t-heading.t-h-reason {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .about-page .about-team .reason p,
  .about-page .about .reason p,
  .about.about-match .reason p {
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .reason-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-list li {
    font-size: 0.94rem;
    line-height: 1.32;
  }

  .logo-strip::before,
  .logo-strip::after {
    width: 34px;
  }

  .partner-logo {
    flex-basis: 140px;
    height: 52px;
  }

  .partner-logo img {
    max-width: 112px;
    max-height: 34px;
  }

  .faq.section {
    padding: 52px 0;
  }

  .faq-kicker {
    font-size: 1.5rem;
  }

  .faq-head h2 {
    font-size: 1.2rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-compact .cta-inner {
    gap: 10px;
    min-height: 64px;
    padding: 8px 0;
  }

  .home-cta-compact .cta-btn {
    min-width: 88px;
    min-height: 26px;
    font-size: 0.64rem;
  }

  .news .news-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .specialized-news-thumb img {
    max-height: 280px;
  }

  .testimonial-mark {
    font-size: 3.6rem;
  }

  .testimonial-dots {
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

/* ==========================================================================
   LAYER: PAGES (NEWS ADMIN)
   ========================================================================== */
.news-admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(12, 99, 180, 0.18), transparent 32%),
    linear-gradient(180deg, #eef5fb 0%, #ffffff 34%);
}

.news-admin-main {
  padding-top: var(--space-0);
}

.news-admin-hero {
  padding: 110px 0 38px;
  color: #fff;
  background: linear-gradient(135deg, #0a447b, #0c63b4 58%, #5da3e0);
}

.news-admin-hero .eyebrow,
.news-admin-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.news-admin-hero-inner {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.news-admin-hero-copy {
  max-width: 760px;
}

.news-admin-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.news-admin-back {
  flex: 0 0 auto;
}

.news-admin-shell {
  padding-top: var(--space-42);
}

.news-admin-auth-shell {
  padding-top: var(--space-42);
}

.news-admin-auth-panel {
  max-width: 560px;
  margin: 0 auto;
}

.news-admin-login-form {
  margin-top: 20px;
}

.news-admin-login-status {
  min-height: 24px;
}

.news-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.news-admin-side {
  display: grid;
  gap: 22px;
}

.news-admin-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(189, 209, 229, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(14, 50, 86, 0.08);
}

.news-admin-panel-head h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.news-admin-panel-head p:last-child {
  margin-bottom: 0;
}

.news-admin-label {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-admin-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.news-admin-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-admin-field {
  display: grid;
  gap: 8px;
}

.news-admin-field span {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
}

.news-admin-field input,
.news-admin-field select,
.news-admin-field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d8e8;
  border-radius: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-admin-field input:focus,
.news-admin-field select:focus,
.news-admin-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(12, 99, 180, 0.12);
}

.news-admin-field textarea {
  min-height: 120px;
  resize: vertical;
}

.news-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.news-admin-reset {
  color: var(--ink);
  background: #eaf1f8;
}

.news-admin-status {
  min-height: 24px;
  margin: 0;
  font-weight: 600;
  color: #22764b;
}

.news-admin-status[data-error="true"] {
  color: #c0392b;
}

.news-admin-preview-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e5f1;
  border-radius: 20px;
}

.news-admin-preview-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(135deg, rgba(12, 99, 180, 0.12), rgba(12, 99, 180, 0.02)), #f3f7fb;
}

.news-admin-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}

.news-admin-preview-body {
  padding: 22px;
}

.news-admin-preview-meta,
.news-admin-post-meta,
.news-admin-post-slug {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-admin-preview-body h3,
.news-admin-post-item h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.news-admin-posts {
  display: grid;
  gap: 14px;
}

.news-admin-empty {
  padding: 22px;
  background: #f8fbfe;
  border: 1px dashed #bfd3e6;
  border-radius: 18px;
}

.news-admin-post-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #f8fbfe;
  border: 1px solid #d9e7f3;
  border-radius: 18px;
}

.news-admin-post-copy p:last-child {
  margin-bottom: 0;
}

.news-admin-delete {
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  color: #9a2f22;
  cursor: pointer;
  background: #ffe8e5;
  border: 0;
  border-radius: 999px;
}

.news-admin-logout-wrap {
  margin-top: 16px;
}

.news-admin-logout {
  color: var(--ink);
  background: #eaf1f8;
}

.news-admin-block-editor {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #f8fbfe;
  border: 1px solid #d9e7f3;
  border-radius: 18px;
}

.news-admin-block-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.news-admin-block-head h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.news-admin-block-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-admin-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-admin-block-button {
  color: var(--ink);
  background: #eaf1f8;
}

.news-admin-block-list {
  display: grid;
  gap: 14px;
}

.news-admin-block-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d8e5f1;
  border-radius: 16px;
}

.news-admin-block-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.news-admin-block-card-head p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.news-admin-block-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-admin-mini {
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  background: #f3f8fc;
  border: 1px solid #d0dfec;
  border-radius: 999px;
}

.news-admin-mini-danger {
  color: #9a2f22;
  background: #ffe8e5;
  border-color: #ffd2cb;
}

.news-admin-block-textarea,
.news-admin-block-image-fields input {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d8e8;
  border-radius: 14px;
}

.news-admin-block-textarea {
  min-height: 140px;
  resize: vertical;
}

.news-admin-block-image-fields {
  display: grid;
  gap: 12px;
}

.news-admin-preview-content {
  display: grid;
  gap: 18px;
  padding-top: var(--space-8);
}

.news-admin-preview-text p {
  margin-bottom: 12px;
}

.news-admin-preview-figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.news-admin-preview-figure img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.news-admin-preview-figure figcaption,
.news-admin-preview-placeholder {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ==========================================================================
   LAYER: RESPONSIVE (NEWS ADMIN)
   ========================================================================== */
@media (max-width: 1080px) {
  .news-admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-admin-hero {
    padding-top: var(--space-92);
  }

  .news-admin-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-admin-row {
    grid-template-columns: 1fr;
  }

  .news-admin-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .news-admin-block-head,
  .news-admin-post-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-admin-panel {
    padding: 22px;
    border-radius: 20px;
  }
}
