:root {
  --color-navy: #0b1b30;
  --color-navy-deep: #050c18;
  --color-accent: #1ba8e0;
  --color-accent-dark: #0f7fae;
  --color-text: #333c47;
  --color-muted: #6b7684;
  --font-heading: 'Segoe UI', 'Poppins', system-ui, sans-serif;
  --font-body: 'Segoe UI', 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin: 0;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: #0a0a0a;
  color: #fff;
  font-size: 0.9rem;
}
.topbar-inner {
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
}
.topbar-pill .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
}
.topbar-social {
  display: flex;
  gap: 0.6rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

/* ---------- Header / nav ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}
.site-header-inner {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.brand img {
  height: 92px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle .bar {
  width: 26px;
  height: 2px;
  background: var(--color-navy);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
}
.nav-item > a:hover,
.nav-item > a:focus-visible {
  color: var(--color-accent);
}
.nav-item.has-children > a::after {
  content: '\25BE';
  margin-left: 0.35rem;
  font-size: 0.7em;
}

.submenu {
  display: block;
  position: absolute;
  /* top:100% with zero margin keeps the hoverable area unbroken between
     the nav link and the submenu — a gap here (e.g. a margin-top) lets
     the mouse leave both elements mid-travel and the menu closes before
     the user can reach it. */
  top: 100%;
  left: -1.1rem;
  min-width: 320px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(10, 20, 40, 0.18);
  border-radius: 12px;
  padding: 0.75rem 0.4rem 0.4rem;
  margin: 0;
  list-style: none;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item.has-children:hover .submenu,
.nav-item.has-children:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.submenu li a:hover,
.submenu li a:focus-visible {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    display: none;
    box-shadow: 0 12px 24px rgba(10, 20, 40, 0.12);
  }
  .nav-list.open {
    display: flex;
  }
  .nav-item > a {
    display: block;
    padding: 0.75rem 1.5rem;
  }
  .submenu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.25rem;
  }
}

/* ---------- Home: hero / overview ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(5, 12, 24, 0.88) 0%, rgba(11, 27, 48, 0.7) 45%, rgba(11, 27, 48, 0.35) 100%),
    url('../images/home/vision-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0;
  color: #fff;
  overflow: hidden;
}
.hero-icons {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.35;
  pointer-events: none;
}
.hero-icons svg {
  width: 3rem;
  height: 3rem;
  stroke: #fff;
  fill: none;
  stroke-width: 1.4;
}
.hero-inner {
  position: relative;
  max-width: 1300px;
}
.hero-eyebrow {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 62ch;
}

/* Compact hero variant: short eyebrow + title only (no long vision copy) */
.hero--compact {
  padding: 4.5rem 0;
}
.hero--compact .hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: none;
}

/* ---------- Generic inner-page hero (services, who-we-are, etc) ---------- */
.page-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(5, 12, 24, 0.9) 0%, rgba(11, 27, 48, 0.75) 50%, rgba(11, 27, 48, 0.5) 100%),
    url('../images/home/vision-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 4.5rem 0;
  color: #fff;
}
.page-hero-inner {
  max-width: 900px;
}
.page-hero h1 {
  color: var(--color-accent);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
}
.page-hero p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  margin: 0 0 0.5rem;
}
.page-hero p:last-child {
  margin-bottom: 0;
}

/* ---------- Photo-background page hero variant ---------- */
.page-hero--photo {
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.55) 0%, rgba(5, 12, 24, 0.55) 100%),
    url('../images/hero/office-coldchain.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}
.page-hero--photo .page-hero-inner {
  max-width: 1100px;
}
.page-hero--photo h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
}

/* left-aligned photo hero, for pages with supporting paragraphs (vs. the
   short single-line centered title variant) */
.page-hero--photo.page-hero--left {
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.82) 0%, rgba(5, 12, 24, 0.55) 55%, rgba(5, 12, 24, 0.25) 100%),
    url('../images/hero/office-coldchain.jpg');
  background-size: cover;
  background-position: center;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
  padding: 6.5rem 0 2.5rem;
}
.page-hero--left .page-hero-inner {
  max-width: 1100px;
}
.page-hero--left h1 {
  margin: 0 0 0.75rem;
}

/* Statement variant: a full descriptive sentence rather than a short blue
   title — white text at a calmer size, matching the home hero's "Our
   Vision" paragraph treatment instead of the oversized title style. */
.page-hero--statement h1 {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.55;
  max-width: 70ch;
}

/* warehouse/distribution page hero: its own background photo */
.page-hero--warehouse {
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.6) 0%, rgba(5, 12, 24, 0.6) 100%),
    url('../images/services/warehousing-distribution/warehouse-3.jpg');
  background-size: cover;
  background-position: center;
}

/* ---------- Section title (plain centered heading) ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  padding: 3rem 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Process diagram section ---------- */
.process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}
.truck-flyby {
  display: inline-block;
  font-size: 1.6rem;
  animation: truck-drive 4s ease-in-out infinite;
}
.process-section {
  padding-bottom: 4rem;
}
.process-figure {
  margin: 0 auto;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.1);
  transition: transform 0.4s ease;
}
.process-figure:hover {
  transform: translateY(-4px) scale(1.01);
}

/* ---------- Regional operation sections (image rows grouped by heading) ---------- */
.region-section {
  padding-top: 3rem;
}
.region-section:first-of-type {
  padding-top: 3.5rem;
}
.region-section:last-of-type {
  padding-bottom: 4rem;
}
.region-title {
  color: var(--color-accent);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin: 0 0 1.5rem;
}

/* ---------- Two-panel info grid (flat gray boxes side by side) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 3.5rem 0;
}
.info-grid + .info-grid {
  padding-top: 0;
}
.info-panel {
  background: #f6f8fa;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-panel p {
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.info-panel p:last-child {
  margin-bottom: 0;
}
.info-panel.info-panel--media {
  padding: 1.5rem;
  align-items: center;
  justify-content: center;
}
.info-panel img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.35s ease;
}
.info-panel--media:hover img {
  transform: scale(1.03);
}

/* ---------- Our Partners grid ---------- */
.partners-section {
  padding: 3.5rem 0 4.5rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.partner-card {
  background: #f6f8fa;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 26px rgba(10, 20, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 20, 40, 0.14);
}
.partner-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #dde3ea;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.partner-logo img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.partner-card:hover .partner-logo img {
  transform: scale(1.1) rotate(-2deg);
}
.partner-card p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
  text-align: center;
}
.partner-grid .animate-in {
  transition-delay: calc(var(--reveal-index, 0) * 100ms);
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ---------- Global Network page ---------- */
.section-heading {
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.02em;
  padding: 3rem 0 1.5rem;
}
.network-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.12);
  padding: 1.5rem;
  margin-bottom: 3.5rem;
}
.network-card img {
  border-radius: 10px;
}

.network-intro {
  text-align: center;
  padding: 0 0 2.5rem;
}
.network-intro .eyebrow {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.network-intro h2 {
  color: var(--color-accent);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.network-intro h2 .highlight {
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--color-navy);
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4.5rem;
}
.network-grid p {
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}
.network-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.network-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
}
.network-list .icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-accent);
}
.network-list .icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.9rem 1rem 0.9rem 1.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-pill:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}
.btn-pill .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}
.btn-pill .arrow svg {
  width: 1rem;
  height: 1rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

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

/* ---------- Split card: text column + image column ---------- */
.split-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.12);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.split-card.split-card--bordered {
  border-left: 3px solid #e3e7ec;
  border-right: 3px solid #e3e7ec;
}
.split-text {
  border-left: 3px solid #e3e7ec;
  padding-left: 2.25rem;
}
.split-card--bordered .split-text {
  border-left: none;
  padding-left: 0;
}
.split-media img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.split-text h2,
.split-text h3 {
  color: var(--color-accent);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 0 0 1.25rem;
}
.split-text h3.temp-heading {
  margin-top: 1.75rem;
}

.temp-list,
.check-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.temp-list {
  border-bottom: 1px solid #e3e7ec;
  padding-bottom: 1.25rem;
}
.temp-list li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}
.temp-list .icon,
.check-list .icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
}
.temp-list .icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
}
.check-list .icon {
  background: var(--color-accent);
  border-radius: 999px;
}
.check-list .icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}
.check-list li {
  font-weight: 600;
  color: var(--color-navy);
}

@media (max-width: 800px) {
  .split-card {
    grid-template-columns: 1fr;
  }
  .split-text {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #e3e7ec;
    padding-top: 1.5rem;
  }
}

/* ---------- Divider banner (icon + text flanked by lines) ---------- */
.divider-banner {
  background: var(--color-accent);
  padding: 2rem 0;
  margin: 2.5rem 0;
}
.divider-banner .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.divider-banner .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.divider-banner h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.divider-banner h2 svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
@media (max-width: 640px) {
  .divider-banner h2 {
    white-space: normal;
    text-align: center;
  }
}

/* ---------- Mini gallery (small centered product shots) ---------- */
.mini-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0 0 3.5rem;
}
.mini-gallery img {
  max-width: 220px;
  height: auto;
}

/* ---------- Modern image gallery card (used on service pages) ---------- */
.gallery-section {
  padding: 3.5rem 0 4.5rem;
}
.gallery-section--tight {
  padding-top: 0;
}
.gallery-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.12);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}
.gallery-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.4s ease;
}
.gallery-card figure:hover img {
  transform: scale(1.04);
}

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

.overview-banner {
  background:
    radial-gradient(circle at 15% 50%, rgba(27, 168, 224, 0.35), transparent 45%),
    linear-gradient(100deg, #071a33 0%, #0c2c52 60%, #0e3f6e 100%);
  padding: 2.5rem 0;
}
.overview-banner h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.overview-banner h2 span {
  color: var(--color-accent);
}

.overview-list {
  padding: 3rem 0 4rem;
}
.overview-list ul {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #f6f8fa;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.point-icon {
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.point-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.overview-list li:hover .point-icon {
  background: var(--color-accent-dark);
  transform: scale(1.08);
}

/* ---------- Scroll-reveal animation ---------- */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.overview-list ul .animate-in {
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.overview-list li p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.warehouse-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(10, 20, 40, 0.12);
  padding: 2.5rem;
  text-align: center;
}
.warehouse-card h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.warehouse-card img {
  border-radius: 8px;
  margin: 0 auto;
}
.concept-caption {
  margin-top: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.concept-caption span {
  display: block;
  font-weight: 400;
  text-transform: none;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background:
    linear-gradient(rgba(5, 12, 24, 0.88), rgba(5, 12, 24, 0.92)),
    repeating-linear-gradient(120deg, #10233c 0, #10233c 2px, #0b1b30 2px, #0b1b30 40px);
  color: #d8dee6;
}
.site-footer-inner {
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}
.brand-name {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}
.brand-copy {
  max-width: 32ch;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.brand-email {
  color: #d8dee6;
  text-decoration: underline;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-col ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  color: #d8dee6;
  text-decoration: none;
  line-height: 1.4;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
}
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #c0392b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  animation: gentle-bob 2.6s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}
.back-to-top:hover {
  background: var(--color-accent);
  transform: scale(1.12);
  animation-play-state: paused;
}

@media (max-width: 800px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   Playful micro-animations — small, tasteful motion cues used site-wide.
   Kept subtle and paused for prefers-reduced-motion at the bottom.
   ====================================================================== */

@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes truck-drive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes icon-pop {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.15) rotate(-6deg); }
  60% { transform: scale(1.08) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav links: underline grows in from the center on hover */
.nav-item > a {
  position: relative;
}
.nav-item > a::before {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 2px;
  background: var(--color-accent);
  transition: left 0.2s ease, right 0.2s ease;
}
.nav-item > a:hover::before,
.nav-item > a:focus-visible::before {
  left: 0;
  right: 0;
}

/* Logo gives a friendly little wiggle when you hover the brand link */
.brand img {
  transition: transform 0.35s ease;
}
.brand:hover img {
  animation: icon-pop 0.5s ease;
}

/* Bullet/step icons across the site pop playfully on hover */
.point-icon,
.temp-list .icon,
.check-list .icon,
.submenu li a {
  transition: transform 0.25s ease, background 0.25s ease, color 0.15s ease;
}
.temp-list li:hover .icon,
.check-list li:hover .icon {
  animation: icon-pop 0.45s ease;
}

/* Hero headings ease upward into place on page load */
.hero-inner > *,
.page-hero-inner > * {
  animation: hero-rise 0.7s ease both;
}
.hero-inner > *:nth-child(2),
.page-hero-inner > *:nth-child(2) {
  animation-delay: 0.08s;
}
.page-hero-inner > *:nth-child(3) {
  animation-delay: 0.16s;
}

/* Slow Ken Burns drift on photographic hero backgrounds */
@keyframes hero-drift {
  from { background-size: 108% auto; }
  to { background-size: 116% auto; }
}
.page-hero--photo {
  animation: hero-drift 14s ease-in-out infinite alternate;
}

/* Gallery figures get a little lift as well as the existing zoom */
.gallery-card figure {
  transition: transform 0.3s ease;
}
.gallery-card figure:hover {
  transform: translateY(-4px);
}

/* Universal fallback: every content image gets at least a gentle hover
   animation, even ones not wrapped in one of the component patterns above
   (which already have their own richer hover — this just makes sure
   nothing in <main> is ever completely static). */
main img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
main img:hover {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .truck-flyby,
  .page-hero--photo,
  .hero-inner > *,
  .page-hero-inner > * {
    animation: none !important;
  }
  .brand:hover img,
  .temp-list li:hover .icon,
  .check-list li:hover .icon {
    animation: none !important;
  }
}

/* ---------- Leadership team page ---------- */
.team-intro {
  position: relative;
  text-align: center;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}
.team-intro-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 380px;
  background: radial-gradient(circle, rgba(27, 168, 224, 0.12), transparent 70%);
  pointer-events: none;
}
.team-intro h2 {
  position: relative;
  color: var(--color-accent);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 1.1rem;
}
.team-intro .divider {
  display: block;
  position: relative;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(27, 168, 224, 0.5);
  margin: 0 auto 1.75rem;
}
.team-intro p {
  position: relative;
  max-width: 60ch;
  margin: 0 auto 0.75rem;
  color: var(--color-text);
  line-height: 1.75;
}

.team-grid {
  position: relative;
  padding: 0 0 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(10, 20, 40, 0.1);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 20, 40, 0.16);
}
.team-card img {
  width: 100%;
  aspect-ratio: 271 / 314;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.team-card h3 {
  color: var(--color-accent);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.team-card .divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-navy);
  margin: 0 auto 1rem;
}
.team-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Sustainability page ---------- */
.sustainability-intro {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.sustainability-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 20%, transparent 59px, rgba(11, 27, 48, 0.07) 60px, rgba(11, 27, 48, 0.07) 61px, transparent 62px),
    radial-gradient(circle at 8% 20%, transparent 99px, rgba(11, 27, 48, 0.05) 100px, rgba(11, 27, 48, 0.05) 101px, transparent 102px),
    radial-gradient(circle at 95% 85%, transparent 79px, rgba(27, 168, 224, 0.08) 80px, rgba(27, 168, 224, 0.08) 81px, transparent 82px);
}
.sustainability-card {
  position: relative;
  max-width: 1100px;
  margin: -3.5rem auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(10, 20, 40, 0.16);
  padding: 2.5rem 3rem;
}
.sustainability-card .eyebrow {
  display: block;
  color: #c0392b;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sustainability-card h2 {
  color: var(--color-accent);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin: 0 0 1.5rem;
}
.sustainability-card p {
  color: var(--color-text);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.sustainability-card p:last-of-type {
  margin-bottom: 1.75rem;
}
.btn-solid {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-solid:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .sustainability-card {
    padding: 2rem 1.5rem;
  }
}

/* ---------- Project photo gallery ---------- */
.projects-heading {
  background: #e9edf1;
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}
.projects-heading h2 {
  color: var(--color-accent);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}
.project-gallery {
  padding-bottom: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 27, 48, 0) 40%, rgba(11, 27, 48, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item .expand-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item .expand-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item:hover::after,
.gallery-item:hover .expand-icon {
  opacity: 1;
}
.gallery-item:hover .expand-icon {
  transform: scale(1) rotate(0deg);
}

@media (max-width: 1000px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Contact page ---------- */
.contact-map-section {
  padding: 3rem 0 0;
}
.contact-map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.14);
  line-height: 0;
}
.contact-map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-info-strip {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.contact-info-item {
  text-align: center;
}
.contact-info-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #eaf7fd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-info-item .icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
}
.contact-info-item:hover .icon {
  background: var(--color-accent);
  transform: translateY(-4px);
}
.contact-info-item:hover .icon svg {
  stroke: #fff;
}
.contact-info-item h3 {
  color: var(--color-accent);
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}
.contact-info-item p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}
.contact-info-item a {
  color: var(--color-text);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--color-accent);
}

.offices-section {
  background: #f6f8fa;
  padding: 3.5rem 0 4rem;
}
.offices-section > .container > h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2.25rem;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.office-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(10, 20, 40, 0.12);
}
.office-card h3 {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}
.office-card .label {
  display: block;
  text-decoration: underline;
  font-size: 0.85rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.office-card p {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.55;
}
.office-card a {
  color: var(--color-accent);
  text-decoration: none;
  word-break: break-word;
}
.office-card a:hover {
  text-decoration: underline;
}

.inquiries-section {
  padding: 4.5rem 0;
}
.inquiries-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.inquiries-visual {
  text-align: center;
}
.inquiries-visual img {
  max-width: 100%;
  height: auto;
}
.inquiries-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin: 0 0 0.5rem;
}
.inquiries-copy .lede {
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .field-full {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe4ea;
  background: #f6f8fa;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}
.contact-form button {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 1.75rem;
  margin-top: 0.25rem;
}
.form-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success {
  color: #1e8e3e;
}
.form-status.error {
  color: #c0392b;
}

@media (max-width: 900px) {
  .contact-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .inquiries-grid {
    grid-template-columns: 1fr;
  }
  .inquiries-visual {
    order: 2;
  }
}
@media (max-width: 560px) {
  .contact-info-strip {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}
