:root {
  --navy-980: #04122b;
  --navy-950: #071a3d;
  --navy-900: #0d2a57;
  --navy-800: #14407d;
  --navy-100: #e9f0fb;
  --white: #ffffff;
  --ink-900: #0f1e33;
  --slate-700: #37455e;
  --slate-500: #5f708a;
  --border: #dbe4f2;
  --surface: #f5f8fd;
  --shadow-soft: 0 12px 28px rgba(8, 25, 58, 0.08);
  --shadow-card: 0 18px 38px rgba(7, 26, 61, 0.1);
}

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

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

body {
  font-family: "Inter", sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(1140px, 91%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.main-nav a {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.nav-dropdown {
  position: relative;
}

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

.nav-dropdown-trigger::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu a {
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--navy-100);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav a:hover {
  color: var(--navy-800);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--navy-900);
  background: transparent;
  color: var(--navy-900);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(76, 129, 206, 0.22) 0%, transparent 40%),
    linear-gradient(152deg, var(--navy-980), var(--navy-900));
  color: var(--white);
  padding: 6rem 0 5.4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(100deg, rgba(4, 18, 43, 0.92) 25%, rgba(4, 18, 43, 0.68) 58%, rgba(4, 18, 43, 0.72) 100%),
    url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}

.hero::after {
  background:
    linear-gradient(135deg, rgba(7, 26, 61, 0.15) 0%, rgba(7, 26, 61, 0.42) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: right center;
  mix-blend-mode: soft-light;
  opacity: 0.32;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-top .eyebrow {
  margin-bottom: 0.65rem;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 0.2rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero-detail {
  padding-top: 0.4rem;
}

.hero-subheading {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  max-width: 100%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: normal;
  max-width: 100%;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy-800);
}

.hero .eyebrow {
  color: #d5e5ff;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.btn {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.76rem 1.2rem;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 10px 20px rgba(6, 23, 54, 0.22);
}

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

.hero-cta {
  padding: 0.88rem 1.6rem;
  font-size: 1rem;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: transparent;
}

.section {
  padding: 5.25rem 0;
}

.section-alt {
  background: var(--surface);
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-items {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.trust-items span {
  font-size: 0.82rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.section-heading h2 {
  margin-top: 0.45rem;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  letter-spacing: -0.015em;
}

#services .section-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

#services.section {
  padding-top: 3.25rem;
  padding-bottom: 3.2rem;
}

.services-intro {
  margin: 0.85rem auto 0;
  color: var(--slate-700);
  font-size: 0.98rem;
}

.operations-gallery-section {
  padding-top: 4.2rem;
  padding-bottom: 1.6rem;
}

.operations-gallery {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.gallery-card figcaption {
  padding: 0.85rem 0.95rem;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}

.services-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 0 1rem;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(8, 25, 58, 0.06);
  transition: all 0.25s ease;
}

.service-image {
  width: 100%;
  margin: 0 0 0.95rem;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--border);
}

.service-card > :not(.service-image) {
  margin-left: 1rem;
  margin-right: 1rem;
}

.service-card:hover {
  border-color: #c9d9f1;
  box-shadow: 0 12px 24px rgba(8, 25, 58, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #e9f1ff;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-card p {
  margin: 0.55rem 0 0.65rem;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.service-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--navy-800);
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-980), var(--navy-900));
  color: var(--white);
  padding: 4.8rem 0 4rem;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--service-hero-overlay, linear-gradient(108deg, rgba(4, 18, 43, 0.9) 20%, rgba(4, 18, 43, 0.7) 62%, rgba(4, 18, 43, 0.78) 100%)),
    var(--service-hero-image, url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=80"));
  background-size: cover;
  background-position: center center;
  opacity: 0.82;
}

.service-page-hero .container {
  position: relative;
  z-index: 1;
}

.service-page-hero h1 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.015em;
}

.service-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.service-detail-heading {
  margin-bottom: 1rem;
}

.service-detail-heading-row {
  display: block;
}

.service-detail-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.service-detail-split-full {
  grid-template-columns: 1fr;
}

.service-context-grid {
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-context-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.service-context-card figcaption {
  padding: 0.8rem 0.9rem;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-detail-heading h2 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.service-detail-heading p {
  margin: 0;
  color: var(--slate-700);
  max-width: 760px;
}

.service-detail-content {
  color: var(--ink-900);
}

.service-detail-content ul {
  margin: 0;
  padding-left: 1rem;
}

.service-checklist {
  columns: 2;
  column-gap: 1.5rem;
}

.service-checklist li {
  break-inside: avoid;
}

.service-inline-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-inline-gallery-item {
  margin: 0;
}

.service-inline-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-coverage-card {
  background: #f7faff;
  border: 1px solid #dbe5f4;
  border-radius: 14px;
  padding: 1rem;
  margin-top: 4.2rem;
}

.service-detail-split-full .service-coverage-card {
  margin-top: 0.9rem;
}

.service-coverage-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.service-coverage-card p {
  margin: 0.5rem 0 0;
  color: var(--slate-700);
}

.service-detail-content h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.15rem;
}

.service-detail-content h3:first-child {
  margin-top: 0.2rem;
}

.service-detail-subheading {
  margin-top: 1.6rem;
}

.service-detail-subheading p {
  margin-top: 0.6rem;
}

.service-detail-grid-stacked {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-detail-section-compact {
  padding-top: 2rem;
  padding-bottom: 1.6rem;
}

.dunnage-scope-section {
  padding-top: 2rem;
}

.dunnage-scope-section .service-detail-split {
  grid-template-columns: 1fr;
}

.dunnage-scope-section .service-coverage-card {
  margin-top: 0.9rem;
}

.dunnage-use-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.dunnage-use-text h3:first-child {
  margin-top: 0;
}

.dunnage-use-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  justify-self: end;
  width: 100%;
  height: auto;
}

.dunnage-use-images img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin-top: 0;
}

.detail-card ul {
  margin-bottom: 0;
  padding-left: 1rem;
}

.service-back-link {
  margin-top: 1.4rem;
  display: inline-block;
  color: var(--navy-900);
  font-weight: 600;
}

.service-gallery-section {
  padding-top: 0.5rem;
  padding-bottom: 0.15rem;
}

.service-sectors-section {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.service-sectors-header h2 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  letter-spacing: -0.015em;
}

.service-sectors-header p {
  margin: 0;
  color: var(--slate-700);
}

.service-sectors-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-sector-card {
  margin: 0;
}

.service-sector-card.text-only {
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfdff;
}

.service-sector-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-sector-card h3 {
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 1.05rem;
}

.service-sector-card.text-only h3 {
  margin: 0;
  font-size: 1.02rem;
}


.service-photo-panel {
  margin-top: 1.3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: var(--white);
}

.service-photo-track {
  display: flex;
  transition: transform 0.38s ease;
  will-change: transform;
}

.service-photo-slide {
  flex: 0 0 100%;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: zoom-in;
}

.service-photo-slide img {
  width: 100%;
  height: min(40vw, 360px);
  object-fit: cover;
}

.service-photo-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem 0.95rem;
  background: #f9fbff;
}

.service-photo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #c2d0e6;
  padding: 0;
  cursor: pointer;
}

.service-photo-dot.is-active {
  background: var(--navy-800);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(3, 12, 30, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-content {
  width: min(1080px, 96vw);
  max-height: 92vh;
  position: relative;
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0b1f42;
}

.gallery-lightbox-caption {
  margin-top: 0.55rem;
  color: #dbe7fb;
  font-size: 0.92rem;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  border: 0;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(8, 25, 58, 0.86);
  color: #fff;
  font-size: 1.2rem;
}

.gallery-lightbox-close {
  top: 10px;
  right: 10px;
}

.gallery-lightbox-prev {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.service-process-section {
  padding-top: 0.75rem;
  padding-bottom: 2.2rem;
}

.service-process-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.service-process-step {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-800);
  text-transform: uppercase;
}

.service-process-card h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.05rem;
}

.service-process-card p {
  margin: 0;
  color: var(--slate-700);
}

.service-cta-band {
  background: var(--navy-980);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-cta-wrap {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.service-cta-wrap h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  letter-spacing: -0.015em;
}

.service-cta-wrap p {
  margin: 0.75rem 0 0;
  color: #c8d8f2;
  max-width: 700px;
}

.service-cta-btn {
  background: #ffffff;
  color: var(--navy-950);
  border-radius: 999px;
  padding: 0.84rem 1.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: start;
}

#about.section {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

#about h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 3.2rem);
  letter-spacing: -0.02em;
}

.about-service-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.about-label {
  margin-bottom: 0.75rem;
}

.about-service-collage img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  font-size: 1.55rem;
  display: block;
  color: var(--navy-900);
}

.stat-card span {
  color: var(--slate-700);
  font-size: 0.95rem;
}

.coverage-text {
  margin-top: 1.35rem;
  color: var(--slate-700);
  max-width: 760px;
}

.coverage-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.partners-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#partners.section {
  padding-top: 1.6rem;
  padding-bottom: 1.5rem;
}

#news.section {
  padding-top: 0.8rem;
  padding-bottom: 2rem;
}

#our-partners.section {
  padding-top: 1.4rem;
  padding-bottom: 1.5rem;
}

#contact.section {
  padding-top: 1.8rem;
}

.our-partners-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.our-partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  text-align: center;
}

.our-partner-logo-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border: 1px solid #e0e7f3;
  border-radius: 12px;
  background: #fbfdff;
}

.our-partner-logo {
  max-width: 180px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.our-partner-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.partner-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.partner-card p {
  margin: 0;
  color: var(--slate-700);
}

.coverage-list,
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.coverage-list {
  padding: 1.35rem;
}

.coverage-list h3 {
  margin: 0 0 0.7rem;
}

.coverage-toggle {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.2rem;
  border: 1px solid #d9e2f2;
  border-radius: 999px;
  background: #f6f9ff;
}

.coverage-toggle-btn {
  border: 0;
  background: transparent;
  color: var(--slate-700);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  cursor: pointer;
}

.coverage-toggle-btn.is-active {
  background: var(--navy-900);
  color: #ffffff;
}

.coverage-list ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--slate-700);
  columns: 2;
  column-gap: 1.5rem;
}

.coverage-list li + li {
  margin-top: 0.35rem;
}

.coverage-list li {
  break-inside: avoid;
}

.map-card {
  position: relative;
  min-height: 320px;
  padding: 1rem;
  background: radial-gradient(circle at 20% 20%, #f4f8ff 0%, #eef4fe 45%, #e5eefb 100%);
  overflow: hidden;
}

.map-card::before {
  content: "Southeast Asia";
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #516683;
  z-index: 5;
}

.leaflet-map {
  height: 100%;
  min-height: 288px;
  width: 100%;
  border-radius: 12px;
  margin-top: 1.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.leaflet-map .leaflet-control-attribution {
  font-size: 10px;
}

.vietnam-hub-dot {
  background: transparent;
  border: none;
}

.vietnam-hub-dot__inner {
  display: block;
  width: 26px;
  height: 26px;
  background: #dc2626;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Keep map layers and controls below sticky header while scrolling */
#sea-map .leaflet-pane,
#sea-map .leaflet-top,
#sea-map .leaflet-bottom,
#sea-map .leaflet-control {
  z-index: 1 !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
}

.contact-info-panel {
  background: linear-gradient(150deg, #071a3d, #08142f);
  color: #e8f0ff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(7, 26, 61, 0.24);
  padding: 1.5rem;
}

.contact-info-panel .eyebrow {
  color: #a9c4f4;
}

.contact-info-panel h2 {
  margin: 0.55rem 0 0.55rem;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: #ffffff;
}

.contact-intro {
  margin: 0;
  color: #c8d8f2;
}

.contact-quick-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.15rem 0;
}

.contact-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: #1e5fd8;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-quick-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.contact-quick-text h3 {
  margin: 0 0 0.18rem;
  color: #ffffff;
  font-size: 1.18rem;
}

.contact-quick-text p {
  margin: 0.08rem 0;
  color: #c0d1ee;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #2f4261;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #c9d7ee;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink-900);
  background: #fcfdff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #a4bfea;
  border-color: var(--navy-800);
}

.service-checkboxes {
  border: 1px solid #c9d7ee;
  border-radius: 10px;
  background: #fcfdff;
  padding: 0.55rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-checkbox-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  column-gap: 0.65rem;
  font-size: 0.94rem;
  color: var(--ink-900);
  font-weight: 500;
  width: 100%;
}

.service-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--navy-800);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f9fbff;
}

.footer-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  color: var(--slate-500);
}

.footer-wrap a {
  color: var(--navy-900);
  font-weight: 600;
}

@media (max-width: 900px) {
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.75rem 0;
    min-height: unset;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-detail-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 116px;
  }

  .hero-collage img {
    height: 105px;
  }

  .hero-collage img:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-collage img:nth-child(6),
  .hero-collage img:nth-child(9) {
    grid-column: span 1;
  }

  .hero h1 {
    white-space: normal;
  }

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

  .operations-gallery {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .service-photo-slide img {
    height: min(58vw, 320px);
  }

  .service-detail-heading-row,
  .service-detail-split {
    display: block;
  }

  .dunnage-use-grid {
    grid-template-columns: 1fr;
  }

  .service-checklist {
    columns: 1;
  }

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

  .service-coverage-card {
    margin-top: 0.85rem;
  }

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

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

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

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

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

  .service-cta-wrap {
    min-height: unset;
    padding: 2.1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .our-partners-grid {
    grid-template-columns: 1fr;
  }

  .coverage-list ul {
    columns: 1;
  }

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

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

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

}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem 4%;
    border-top: 1px solid var(--border);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 0.5rem;
    min-width: 0;
    width: 100%;
    border-color: #e4ebf7;
    background: #fbfdff;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
  }

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