/*
Theme Name: Blue Arrow Shipping
Theme URI: https://bluearrow-shipping.com
Description: Recreated Blue Arrow Shipping & Logistics website.
Version: 2.0
Author: OpenAI
Text Domain: bluearrow
*/

:root {
  --color-accent: #2ec1f6;
  --color-accent-deep: #0898d2;
  --color-navy: #161d28;
  --color-navy-soft: #1f2632;
  --color-text: #1a1a1a;
  --color-muted: #5c6675;
  --color-line: #e5edf3;
  --color-ice: #edf7fc;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 48px rgba(8, 28, 54, 0.14);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  background: #f8fbfd;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 14px;
  line-height: 1.15;
  font-weight: 800;
}

p {
  margin: 0 0 16px;
}

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

address {
  font-style: normal;
}

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

.site-main {
  min-height: 60vh;
  padding-top: 86px;
  background: #fff;
}

.section-heading {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading span {
  width: 42px;
  height: 3px;
  background: var(--color-accent);
}

.section-heading--light h2,
.section-heading--footer h2 {
  color: var(--color-white);
}

.section-heading--footer {
  margin-bottom: 18px;
}

.section-heading--footer h2 {
  font-size: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 30, 54, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__brand img {
  width: 188px;
}

.site-nav {
  margin-left: auto;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222f40;
}

.site-nav__item.is-active > a,
.site-nav__item > a:hover,
.site-nav__submenu a:hover,
.site-nav__submenu .is-active > a {
  color: var(--color-accent);
}

.site-nav__caret {
  font-size: 13px;
  line-height: 1;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  padding: 10px 0;
  background: rgba(17, 24, 36, 0.96);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(8, 24, 44, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.site-nav__submenu li a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__item--button {
  margin-left: 10px;
}

.site-header__brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__brochure:hover {
  background: var(--color-accent-deep);
  color: var(--color-white);
}

.site-header__brochure.is-disabled {
  opacity: 0.7;
  cursor: default;
}

.site-header__brochure.is-disabled:hover {
  background: var(--color-accent);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-banner--thin {
  min-height: 170px;
}

.page-banner--thin .page-banner__content h1 {
  font-size: clamp(22px, 3vw, 34px);
  text-transform: none;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 45, 0.85),
    rgba(10, 25, 45, 0.58)
  );
}

.page-banner__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 58px 0;
}

.page-banner__eyebrow {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-banner__content h1 {
  max-width: 900px;
  font-size: clamp(32px, 4vw, 54px);
  text-transform: uppercase;
}

.page-banner__copy {
  max-width: 900px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.home-hero {
  position: relative;
  min-height: 720px;
  background: #081425;
  overflow: hidden;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 17, 32, 0.5),
    rgba(6, 17, 32, 0.36) 42%,
    rgba(6, 17, 32, 0.82)
  );
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 122px 0 56px;
  color: var(--color-white);
  text-align: center;
}

.home-hero__content > p {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__content > h1 {
  max-width: 820px;
  margin: 0 auto 54px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
}

.home-service-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  box-shadow: var(--shadow-soft);
}

.home-service-strip__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 278px;
  background: #0c1727;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.home-service-strip__card:last-child {
  border-right: 0;
}

.home-service-strip__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-service-strip__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 31, 0.2),
    rgba(8, 18, 31, 0.92)
  );
}

.home-service-strip__card--violet {
  box-shadow: inset 0 -4px 0 #c02df7;
}

.home-service-strip__card--gold {
  box-shadow: inset 0 -4px 0 #f2c400;
}

.home-service-strip__card--blue {
  box-shadow: inset 0 -4px 0 #1d72ff;
}

.home-service-strip__card--red {
  box-shadow: inset 0 -4px 0 #eb3652;
}

.home-service-strip__card--magenta {
  box-shadow: inset 0 -4px 0 #f32e93;
}

.home-service-strip__card--orange {
  box-shadow: inset 0 -4px 0 #e18413;
}

.home-service-strip__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px 18px 18px;
  text-align: left;
}

.home-service-strip__body h2 {
  margin-bottom: 10px;
  font-size: 21px;
  color: var(--color-white);
}

.home-service-strip__body p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.home-service-strip__body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-service-strip__card:hover .home-service-strip__body span {
  background: var(--color-white);
  color: var(--color-navy);
}

.home-services {
  padding: 58px 0 78px;
  background: #161d28
    url('/wp-content/uploads/logistic-assets/images/backgrounds/worldmap-dotted.png')
    center bottom / 900px auto no-repeat;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 54px;
  margin-top: 8px;
}

.home-services__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  color: var(--color-white);
}

.home-services__item h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.home-services__item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
  text-align: center;
}

.feature-row__item {
  padding: 14px 18px 0;
}

.icon-mask {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.feature-row__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 4px solid var(--color-accent);
}

.feature-row__icon--mask {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--color-accent);
}

.feature-row__icon--light {
  color: #55c4ff;
}

.feature-row__item h3 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.service-page .feature-row__item h3,
.why-page .feature-row__item h3,
.warehousing-page .feature-row__item h3 {
  font-size: 20px;
}

.home-testimonials {
  position: relative;
  background-position: center;
  background-size: cover;
  padding: 86px 0 98px;
}

.home-testimonials__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 31, 0.3),
    rgba(11, 19, 31, 0.88)
  );
}

.home-testimonials__content {
  position: relative;
  z-index: 1;
}

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

.home-testimonials__card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  background: rgba(10, 19, 32, 0.86);
  box-shadow: 0 20px 40px rgba(8, 17, 31, 0.24);
  overflow: hidden;
}

.home-testimonials__card-image {
  height: 148px;
  background-position: center;
  background-size: cover;
}

.home-testimonials__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 22px;
  color: var(--color-white);
}

.home-testimonials__card-body p {
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.home-testimonials__author {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin-top: auto;
  align-items: center;
}

.testimonial-avatar {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(8, 24, 44, 0.18);
}

.testimonial-avatar--home {
  width: 42px;
  height: 42px;
  font-size: 13px;
}

.testimonial-avatar--about {
  width: 52px;
  height: 52px;
  font-size: 16px;
}

.testimonial-avatar--tone-1 {
  background: linear-gradient(135deg, #2ec1f6, #0898d2);
}

.testimonial-avatar--tone-2 {
  background: linear-gradient(135deg, #1e3d6f, #395f9c);
}

.testimonial-avatar--tone-3 {
  background: linear-gradient(135deg, #28b48e, #13785e);
}

.testimonial-avatar--tone-4 {
  background: linear-gradient(135deg, #f19b2c, #d36a12);
}

.testimonial-avatar--tone-5 {
  background: linear-gradient(135deg, #7d6bff, #4b3acc);
}

.home-testimonials__author strong {
  display: block;
  font-size: 12px;
}

.home-testimonials__author > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__top {
  background:
    linear-gradient(180deg, rgba(15, 23, 35, 0.96), rgba(15, 23, 35, 0.96)),
    url('/wp-content/uploads/logistic-assets/images/backgrounds/footer-bg.png')
      center bottom / 520px auto no-repeat;
  padding: 48px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.05fr 1.1fr;
  gap: 42px;
}

.site-footer__logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer__column p,
.site-footer__column li {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__column ul {
  display: grid;
  gap: 8px;
}

.site-footer__column a:hover {
  color: var(--color-accent);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.site-footer__bottom p {
  margin: 0;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__social {
  display: grid;
  grid-template-columns: repeat(4, 68px);
  align-self: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__social-link {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__social-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__social-icon {
  width: 20px;
  height: 20px;
}

.back-to-top {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background-color var(--transition);
}

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

.back-to-top__icon {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.back-to-top:hover {
  opacity: 1;
  background: #060606;
}

.service-page,
.warehousing-page,
.custom-clearance-page,
.why-page,
.achievement-page,
.contact-page {
  padding: 56px 0 76px;
  background: #fff;
}

.service-page__inner,
.about-story__grid,
.about-values__grid,
.about-team__grid,
.contact-page__header,
.warehousing-page__intro,
.warehousing-page__bottom {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.service-page__body h2,
.custom-clearance-page h2,
.about-story__copy h2,
.warehousing-page h2,
.contact-page h1,
.why-page__intro h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.service-page__lead,
.custom-clearance-page__lead,
.about-focus p,
.about-team__highlight {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.service-page__body p,
.service-page__list li,
.about-story__copy p,
.about-focus p,
.why-page__feature p,
.achievement-page__card h3,
.global-page__copy p,
.contact-page__header p,
.contact-page address,
.warehousing-page p,
.custom-clearance-page p,
.about-mission__card p,
.about-values .tab-panel p,
.about-team .tab-panel p {
  color: var(--color-muted);
}

.service-page__body p,
.service-page__list li,
.about-story__copy p,
.about-focus p,
.why-page__feature p,
.contact-page__header p,
.contact-page address,
.warehousing-page p,
.custom-clearance-page p,
.about-mission__card p,
.about-values .tab-panel p,
.about-team .tab-panel p {
  font-size: 15px;
}

.contact-page address {
  margin-bottom: 20px;
}

.service-page__media img,
.about-story__media img,
.achievement-page__card img,
.why-page__gallery img,
.warehousing-page__intro img {
  width: 100%;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.service-page__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.service-page__list h3,
.why-page__feature h3,
.achievement-page__card h3,
.global-page__region h3,
.warehousing-page__feature h3 {
  font-size: 24px;
}

.service-page__list ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.service-page__list li {
  position: relative;
  padding-left: 16px;
}

.service-page__list li::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
}

.other-services {
  padding: 0 0 82px;
  background: #fff;
}

.other-services h2 {
  margin-bottom: 22px;
  font-size: 26px;
  text-align: center;
}

.other-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.other-services__card {
  display: grid;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 4px solid var(--color-accent);
}

.other-services__card img {
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.other-services__card span {
  font-size: 12px;
  font-weight: 700;
  color: #31435a;
}

.other-services__card--violet {
  border-color: #c02df7;
}

.other-services__card--gold {
  border-color: #f2c400;
}

.other-services__card--blue {
  border-color: #1d72ff;
}

.other-services__card--red {
  border-color: #eb3652;
}

.other-services__card--magenta {
  border-color: #f32e93;
}

.other-services__card--orange {
  border-color: #e18413;
}

.about-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}

.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 39, 0.86);
}

.about-banner__content {
  position: relative;
  z-index: 1;
  padding: 86px 0 134px;
}

.about-banner__content h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5.6vw, 74px);
  text-transform: uppercase;
}

.about-banner__content p {
  max-width: 980px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.about-banner__stats {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.about-banner__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 0 40px;
  text-align: center;
}

.about-banner__stat {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.about-banner__stat strong {
  font-size: clamp(52px, 5vw, 66px);
  line-height: 1;
}

.about-banner__stat span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.about-story,
.about-mission,
.about-team {
  padding: 64px 0;
}

.about-focus {
  padding: 44px 0;
  background: var(--color-ice);
}

.about-values {
  padding: 60px 0 0;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
  border: 1px solid var(--color-line);
}

.tab-list--stacked {
  display: grid;
  max-width: 320px;
}

.tab-list__button {
  flex: 1 1 0;
  padding: 15px 16px;
  border: 0;
  border-right: 1px solid var(--color-line);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #39465a;
}

.tab-list__button:last-child {
  border-right: 0;
}

.tab-list__button.is-active {
  background: var(--color-accent);
  color: var(--color-white);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.about-values__quote {
  padding: 0;
  background: transparent;
  box-shadow: none;
  align-self: start;
}

.about-testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: clamp(400px, 28vw, 430px);
  margin-left: auto;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-testimonials-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 32px 30px 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

.about-testimonials-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.about-testimonials-slider__quote {
  margin: 0;
}

.about-testimonials-slider__quote p {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.52;
  font-weight: 400;
  text-align: center;
  color: #161d28;
}

.about-testimonials-slider__author {
  display: inline-grid;
  grid-template-columns: 52px auto;
  gap: 14px;
  align-items: center;
  margin: 0 auto;
  text-align: left;
}

.about-testimonials-slider__author strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.15;
  color: #0f1218;
}

.about-testimonials-slider__author > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.3;
  color: #2d3442;
}

.about-testimonials-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.about-testimonials-slider__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0f1218;
  transition: background-color var(--transition);
}

.about-testimonials-slider__dots .is-active {
  background: #68c9f7;
}

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

.about-mission__card {
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-team__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-company-band {
  position: relative;
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}

.about-company-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 39, 0.84);
}

.about-company-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-company-band__content h2 {
  margin-bottom: 14px;
  font-size: 28px;
  text-transform: uppercase;
}

.about-company-band__content > p {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

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

.about-company-band__card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.about-company-band__card h3 {
  font-size: 18px;
  color: var(--color-white);
}

.about-company-band__card p {
  color: rgba(255, 255, 255, 0.76);
}

.about-company-band__card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.achievement-page__title {
  margin-bottom: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.6vw, 64px);
  font-weight: 600;
  text-align: center;
  color: var(--color-accent);
}

.achievement-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.page-banner--achievement .page-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 68px 0 64px;
  text-align: center;
}

.page-banner--achievement .page-banner__eyebrow {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.11em;
}

.page-banner--achievement .page-banner__content h1 {
  max-width: 1140px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 3.45vw, 52px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-transform: none;
}

.page-banner--achievement .page-banner__content h1 span {
  display: block;
}

.achievement-page__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.achievement-page__card img {
  aspect-ratio: 1 / 0.52;
}

.achievement-page__card--warehouse img {
  object-position: center 28%;
}

.achievement-page__card h3 {
  margin: 0;
  flex: 1;
  padding: 18px 20px 20px;
  font-size: 24px;
  text-align: center;
  color: #646d80;
}

.why-page__intro {
  max-width: 1140px;
  margin-bottom: 18px;
}

.why-page__eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.why-page__intro h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.why-page__intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.14;
  text-transform: uppercase;
}

.why-page__intro > p {
  max-width: 1080px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.why-page__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 40px;
}

.why-page__gallery img {
  aspect-ratio: 1 / 0.78;
}

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

.why-page__feature {
  display: grid;
  align-content: start;
}

.why-page__feature h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.why-page .feature-row {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.global-page__map {
  position: relative;
  background:
    radial-gradient(
      circle at 65% 40%,
      rgba(40, 76, 112, 0.22),
      transparent 42%
    ),
    #05080d;
  overflow: hidden;
}

.global-page__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/logistic-assets/images/backgrounds/worldmap-dotted.png')
    center center / 930px auto no-repeat;
  opacity: 0.16;
}

.global-page__map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 13, 0.96),
    rgba(5, 8, 13, 0.62) 45%,
    rgba(5, 8, 13, 0.84)
  );
}

.global-page__map-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 52px 0;
}

.global-page__copy {
  position: relative;
  z-index: 1;
  max-width: 320px;
  color: var(--color-white);
}

.global-page__copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.global-page__copy h1 {
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-accent);
}

.global-page__copy p {
  color: rgba(255, 255, 255, 0.76);
}

.global-page__points {
  position: absolute;
  inset: 0 0 0 290px;
}

.global-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

.global-point__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #f86060;
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 8px rgba(248, 96, 96, 0.08);
}

.global-point__label {
  display: inline-flex;
  padding: 6px 12px;
  background: #0f8be3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.global-page__regions {
  padding: 58px 0 82px;
}

.global-page__region-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 24px;
}

.global-page__region h3 {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid #cfd9e3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.global-page__region ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}

.global-page__region li {
  font-size: 12px;
  color: #74bde1;
}

.contact-page {
  padding-top: 64px;
}

.contact-page__header {
  margin-bottom: 36px;
}

.contact-page__header h1 {
  margin-bottom: 20px;
}

.contact-page__header h2 {
  margin-bottom: 14px;
  font-size: 18px;
  text-transform: none;
}

.contact-page__header a:hover {
  color: var(--color-accent);
}

.contact-page__visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 360px;
}

.contact-page__map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  border: 1px solid #dce3ea;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-page__map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-page__map-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 29, 40, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  pointer-events: none;
}

.contact-page__form {
  max-width: 520px;
  display: grid;
  gap: 20px;
}

.contact-page__form label {
  display: grid;
  gap: 8px;
}

.contact-page__form span {
  font-size: 12px;
  color: var(--color-muted);
}

.contact-page__form input,
.contact-page__form textarea {
  border: 0;
  border-bottom: 2px solid #262626;
  padding: 4px 0 12px;
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
}

.contact-page__form input:focus,
.contact-page__form textarea:focus {
  border-bottom-color: var(--color-accent);
}

.contact-page__form button {
  width: fit-content;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warehousing-page__panel {
  margin-top: 52px;
  padding: 42px 44px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.warehousing-page__panel-copy {
  margin-bottom: 30px;
  text-align: center;
}

.warehousing-page__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 42px;
}

.warehousing-page__feature {
  text-align: center;
}

.warehousing-page__feature .feature-row__icon {
  margin-bottom: 14px;
}

.warehousing-page__promise {
  position: relative;
  width: 100%;
  margin: 34px 0 44px;
  padding: 28px 34px 30px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 29, 40, 0.98), rgba(30, 49, 74, 0.96)),
    linear-gradient(90deg, rgba(46, 193, 246, 0.18), transparent 62%);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.warehousing-page__promise::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--color-accent), #7ddcff);
}

.warehousing-page__promise::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 193, 246, 0.24),
    transparent 68%
  );
}

.warehousing-page__promise p {
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 920px;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
}

.warehousing-page__bars {
  display: grid;
  gap: 14px;
  align-self: center;
}

.warehousing-page__bars div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 60px;
  padding: 0;
  border: 1px solid rgba(13, 31, 53, 0.08);
  background: var(--track-color, #f3f7fb);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(18, 35, 58, 0.08);
}

.warehousing-page__bars div::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--fill, 95%) * 1%);
  background: var(
    --bar-color,
    linear-gradient(90deg, var(--color-accent), #67d8fb)
  );
}

.warehousing-page__bars span,
.warehousing-page__bars strong {
  position: relative;
  z-index: 1;
  padding: 16px 22px;
  color: var(--color-white);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(8, 20, 34, 0.18);
}

.warehousing-page__bars span {
  font-size: 15px;
  font-weight: 600;
}

.warehousing-page__bars strong {
  padding-left: 10px;
  font-size: 24px;
  font-weight: 800;
}

.custom-clearance-page h3 {
  margin: 30px 0 24px;
  font-size: 28px;
}

.custom-clearance-page__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.custom-clearance-page__card {
  padding: 28px 24px;
  border: 3px solid #303030;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.generic-page {
  padding: 60px 0;
}

@media (max-width: 1180px) {
  .home-service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .other-services__grid,
  .global-page__region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .site-header__toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0 20px 18px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 0;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav__item,
  .site-nav__item--button {
    margin: 0;
  }

  .site-nav__item > a,
  .site-header__brochure {
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    padding: 0 0 10px;
    background: #0f1722;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }

  .site-nav__item:hover .site-nav__submenu,
  .site-nav__item:focus-within .site-nav__submenu,
  body.menu-open .site-nav__item.has-children.is-open .site-nav__submenu {
    display: block;
  }

  .service-page__inner,
  .about-story__grid,
  .about-values__grid,
  .about-team__grid,
  .contact-page__header,
  .warehousing-page__intro,
  .warehousing-page__bottom,
  .about-mission__grid,
  .service-page__columns,
  .custom-clearance-page__cards {
    grid-template-columns: 1fr;
  }

  .home-service-strip,
  .global-page__region-grid,
  .why-page__gallery,
  .warehousing-page__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .warehousing-page__promise {
    padding: 24px 24px 26px;
  }

  .warehousing-page__bars div {
    min-height: 56px;
  }

  .warehousing-page__bars span {
    font-size: 14px;
  }

  .warehousing-page__bars strong {
    font-size: 20px;
  }

  .feature-row,
  .achievement-page__grid {
    grid-template-columns: 1fr;
  }

  .global-page__map-inner {
    display: block;
    min-height: 540px;
  }

  .global-page__copy {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .global-page__points {
    inset: 160px 0 0 0;
  }

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

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__bottom p {
    padding-bottom: 0;
  }

  .site-footer__social {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .contact-page__visual,
  .contact-page__map-card,
  .contact-page__map-embed {
    min-height: 320px;
  }

  .contact-page__map-badge {
    right: 12px;
    bottom: 12px;
    font-size: 11px;
  }
}

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

  .site-main {
    padding-top: 76px;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-header__brand img {
    width: 158px;
  }

  .page-banner,
  .home-hero {
    min-height: auto;
  }

  .page-banner__content,
  .home-hero__content {
    padding: 88px 0 34px;
  }

  .home-service-strip,
  .home-services__grid,
  .home-testimonials__grid,
  .other-services__grid,
  .global-page__region-grid,
  .why-page__gallery,
  .why-page__grid,
  .warehousing-page__features,
  .about-company-band__cards,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
  }

  .home-service-strip__card {
    min-height: 224px;
  }

  .home-testimonials__card {
    min-height: 0;
  }

  .achievement-page__title {
    font-size: 44px;
  }

  .custom-clearance-page__card {
    font-size: 20px;
  }

  .global-point__label {
    font-size: 9px;
    padding: 5px 9px;
  }

  .global-page__points {
    inset: 210px 0 0 0;
  }

  .site-footer__social {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
}
