@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&family=Orbitron:wght@600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* ===== CSS Variables (aaalogisticsgroup.com tokens) ===== */
:root {
  --orange: #EB6100;
  --orange-dark: #d95500;
  --navy: #06163A;
  --navy-dark: #0E3D5F;
  --text: #333333;
  --text-light: #858FA6;
  --text-muted: #858FA6;
  --white: #ffffff;
  --red: #DE3232;
  --border: #e5e5e5;
  --gray-bg: #F6F6F6;
  --shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --container: 1200px;
  --font-heading: "Cabin", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Open Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-top {
  border-bottom: 1px solid var(--border);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text em {
  font-style: normal;
  color: var(--orange);
}

.logo-sub {
  font-family: "Orbitron", "Cabin", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.1;
  background: linear-gradient(90deg, #2f6fd6 0%, #1d4289 45%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tag {
  font-family: "Orbitron", "Cabin", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6b7280;
  padding-left: 2px;
}

.logo-nav-mobile .logo-img {
  height: 40px;
  width: 40px;
}

.logo-nav-mobile .logo-sub {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.logo-nav-mobile .logo-tag {
  display: none;
}

.logo-banner {
  width: auto;
  height: 44px;
  max-width: 100%;
  flex-shrink: 0;
}

.logo-nav-mobile {
  display: none;
  margin-right: auto;
  align-items: center;
  gap: 8px;
}

.logo-nav-mobile .logo-icon {
  display: block;
  width: auto;
  height: 37px;
  flex-shrink: 0;
}

.logo-icon {
  width: auto;
  height: 37px;
  flex-shrink: 0;
  display: none;
}

.header-top .logo-banner { display: block; }
.header-top .logo-icon { display: none; }

.lang-flag-img {
  width: 20px;
  height: auto;
  border: 1px solid #ccc;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}

.header-contact a:hover { color: var(--orange); }

.header-contact svg { width: 16px; height: 16px; fill: var(--orange); }

.btn-quote {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--red);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #c62828;
  border-color: #c62828;
}

.header-nav {
  position: relative;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav { display: flex; align-items: center; }

.main-nav > li {
  position: relative;
}

.main-nav > li > a,
.main-nav > li > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.3s;
}

.main-nav > li:hover > a,
.main-nav > li:hover > .nav-link,
.main-nav > li.active > a,
.main-nav > li.active > .nav-link {
  color: var(--orange);
}

.main-nav .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s;
}

.main-nav > li:hover .chevron {
  transform: rotate(225deg) translateY(2px);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

.main-nav > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}

.dropdown li a:hover,
.dropdown li a.active {
  color: var(--orange);
}

.dropdown-wide { min-width: 280px; }

/* Nested dropdown */
.dropdown .has-sub {
  position: relative;
}

.dropdown .has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown .has-sub > a .chevron-sm {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(-45deg);
}

.dropdown .sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s;
}

.dropdown .has-sub:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-utils {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-utils a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.nav-utils a:hover { color: var(--orange); }

.nav-utils svg { width: 18px; height: 18px; fill: currentColor; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.lang-flag {
  width: 20px;
  height: 14px;
  background: linear-gradient(180deg, #b22234 33%, #fff 33%, #fff 66%, #b22234 66%);
  border: 1px solid #ccc;
  position: relative;
}

.lang-flag::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 50%;
  background: #3c3b6e;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* ===== Hero Slideshow ===== */
.hero {
  position: relative;
  padding: 100px 0 230px;
  color: var(--white);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 6s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 50%;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 16px;
}

.hero h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.7px;
  line-height: 1.7;
}

/* Hero CTA overlapping card */
.hero-cta {
  position: relative;
  z-index: 5;
  margin-top: -100px;
  padding-bottom: 100px;
}

.hero-cta-card {
  background: var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 28px 20px;
}

.hero-cta-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.hero-cta-card a {
  color: var(--navy);
  transition: color 0.3s;
}

.hero-cta-card a:hover { color: var(--orange); }

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
}

/* ===== Sections ===== */
section { padding: 80px 0; }

.section-label {
  display: block;
  text-align: center;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 50px;
}

/* About Section */
.about-section {
  background: var(--white);
  padding: 20px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
  font-family: var(--font-body);
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}

.stat-icon i {
  font-size: 40px;
  color: var(--orange);
}

.stat-counter { margin-left: 25px; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-top: 4px;
}

.about-visual { position: relative; }

.about-collage-img {
  width: 100%;
  height: auto;
  display: block;
}

.values-wrapper {
  position: relative;
  margin-top: -320px;
  margin-left: 250px;
}

.values-box {
  position: relative;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 40px 30px;
  border: 25px solid var(--white);
}

.values-box h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.values-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 10px;
  line-height: 1.5;
}

.values-box li i {
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.about-globe {
  position: absolute;
  width: 170px;
  max-width: 170px;
  top: 230px;
  left: -115px;
  z-index: 1;
  pointer-events: none;
}

/* Platform Banner - fixed background parallax */
.platform-banner {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-image: url('../images/about-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.platform-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.platform-banner .container { position: relative; z-index: 1; }

.platform-banner .brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: var(--white);
}

.platform-banner h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--white);
  padding: 0 150px;
}

/* Services Section */
.services-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--gray-bg);
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/world-map-bg.png');
  background-position: 100% 10px;
  background-repeat: no-repeat;
  background-size: 40% auto;
  opacity: 0.9;
  pointer-events: none;
}

.services-section .container { position: relative; z-index: 1; }

.section-title-left {
  font-family: var(--font-heading);
  text-align: left;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 40px;
  max-width: calc(100% - 500px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  background: transparent;
  padding: 0 20px 0 0;
  box-shadow: none;
  border-radius: 0;
}

.service-card:nth-child(2) { padding: 0 15px 0 10px; }

.service-icon-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 25px 20px 26px;
  border-radius: 5px;
  box-shadow: var(--shadow);
  margin-bottom: 15px;
}

.service-icon {
  width: auto;
  height: auto;
  background: var(--orange);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
  padding: 12px 14px;
}

.service-icon i {
  font-size: 30px;
  color: var(--white);
}

.service-icon-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.service-body p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
  color: #06163A;
}

.service-tags {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.service-tags strong { font-weight: 600; }

/* Delivery Section */
.delivery-section {
  background: var(--white);
  padding: 100px 0 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.delivery-text h2 {
  font-family: var(--font-heading);
  font-size: 49px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
}

.delivery-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* News Section */
.news-section { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card { overflow: hidden; }

.news-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 16px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card h3 a:hover { text-decoration: underline; }

.news-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.read-more {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
}

.read-more:hover { text-decoration: underline; }

/* Subscribe Bar */
.subscribe-bar {
  position: relative;
  z-index: 10;
  margin-bottom: -60px;
}

.subscribe-inner {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.subscribe-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.subscribe-text p {
  font-size: 14px;
  color: var(--text-light);
}

.subscribe-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.subscribe-form input {
  padding: 14px 20px;
  border: 1px solid var(--border);
  font-size: 14px;
  width: 280px;
  outline: none;
}

.subscribe-form input:focus { border-color: var(--orange); }

.btn-subscribe {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 5px;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-subscribe:hover { background: #c62828; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer-col li a::before {
  content: '» ';
  color: var(--orange);
}

.footer-col li a:hover { color: var(--orange); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-contact svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== Inner Page Layouts ===== */
.page-content { padding: 60px 0 80px; }

.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

.sidebar-nav { position: sticky; top: 120px; }

.sidebar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  transition: transform 0.3s;
}

.sidebar-card:hover { transform: translateX(4px); }

.sidebar-card.active {
  border-left: 3px solid var(--orange);
}

.sidebar-card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-card-icon svg { width: 22px; height: 22px; fill: var(--white); }

.sidebar-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.content-area h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.content-area .subtitle {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 8px;
}

.content-area .subtitle::before {
  content: '—— ';
}

.content-area p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

.content-area h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 16px;
}

/* Culture section */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.culture-item { margin-bottom: 24px; }

.culture-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.culture-item p {
  font-size: 14px;
  color: var(--text-light);
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-light);
}

.values-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.values-list li strong { color: var(--navy); }

/* Strategy page */
.strategy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.strategy-image-wrap { position: relative; }

.strategy-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.strategy-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 4px solid var(--orange);
  z-index: 1;
}

.strategy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.strategy-label::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--orange);
}

.btn-contact {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-contact:hover { background: var(--orange-dark); }

/* Timeline */
.timeline-section { margin-top: 40px; }

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.timeline-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.timeline-list .year {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  min-width: 60px;
}

.timeline-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
  border-radius: 4px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-card p,
.contact-card li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-form {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 40px;
  border-radius: 4px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover { background: var(--orange-dark); }

/* Service detail page */
.service-detail h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

.service-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-detail ul li {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 8px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.feature-stat {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 4px;
}

.feature-stat .num {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
}

.feature-stat .label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Partners page */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.partner-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s;
}

.partner-card:hover { transform: translateY(-4px); }

.partner-card .partner-icon {
  width: 60px;
  height: 60px;
  background: rgba(238,118,35,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.partner-card .partner-icon svg { width: 28px; height: 28px; fill: var(--orange); }

.partner-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* News detail */
.news-detail { max-width: 800px; margin: 0 auto; }

.news-detail h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.news-detail .news-meta { margin-bottom: 30px; }

.news-detail-img {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 30px;
}

.news-detail p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 42, 71, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-size: 18px;
  border: none;
  outline: none;
  background: var(--white);
  border-radius: 4px;
}

.search-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

/* ===== Responsive (Elementor breakpoints: 1024 / 767) ===== */
@media (max-width: 1024px) {
  .header-top { display: none; }

  .logo-nav-mobile { display: flex; }

  .header-contact { display: none; }
  .btn-quote { display: none; }
  .menu-toggle { display: flex; }

  .header-nav-inner { flex-wrap: wrap; position: relative; }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    z-index: 200;
  }

  .main-nav.open { display: flex; }

  .main-nav > li > a,
  .main-nav > li > .nav-link { padding: 12px 20px; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .main-nav > li.open > .dropdown { display: block; }

  .dropdown .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .dropdown .has-sub.open > .sub-dropdown { display: block; }

  .nav-utils { margin-left: auto; }

  .hero h2 { font-size: 60px; }
  .hero-content { max-width: 100%; padding-right: 20px; }

  .values-wrapper {
    margin-left: 320px;
    margin-top: -350px;
  }

  .platform-banner h2 {
    font-size: 50px;
    padding: 0 10px;
  }

  .section-title-left {
    font-size: 50px;
    max-width: 100%;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 0; margin-bottom: 40px; }
  .service-card:nth-child(2) { padding: 0; }

  .services-section::before {
    background-position: 0 0;
    background-size: contain;
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .hero {
    padding: 80px 0 180px;
  }

  .hero h2 { font-size: 37px; }
  .hero h4 { font-size: 16px; }

  .hero-cta {
    margin-top: -80px;
    padding-bottom: 40px;
  }

  .hero-cta-card h2 { font-size: 20px; }

  .about-section { padding: 0 0 40px; }

  .about-grid,
  .delivery-grid,
  .strategy-section,
  .timeline-grid,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .about-title { font-size: 32px; }

  .about-collage-img { display: none; }

  .values-wrapper {
    margin-left: 0;
    margin-top: 20px;
  }

  .about-globe {
    width: 100px;
    top: 242px;
    left: auto;
    right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .stat-num { font-size: 45px; }
  .stat-label { font-size: 15px; }

  .platform-banner {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .platform-banner h2 {
    font-size: 32px;
    padding: 0 20px;
  }

  .platform-banner .brand { font-size: 16px; }

  .services-section { padding: 40px 0 50px; }

  .section-title-left { font-size: 32px; }

  .services-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-icon-box {
    flex-direction: row;
    align-items: center;
  }

  .delivery-section { padding: 50px 0; }
  .delivery-text h2 { font-size: 32px; }
  .delivery-image { display: none; }

  .stats-row { flex-direction: column; gap: 20px; }

  .subscribe-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-form input { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }

  .culture-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
}

/* ===== Worldcargo specific ===== */
.wc-stats {
  background: var(--white);
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.wc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wc-stat {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
}

.wc-stat:last-child { border-right: none; }

.wc-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
}

.wc-stat .stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 8px;
}

.wc-values-section {
  padding: 80px 0;
  background: var(--white);
}

.wc-values-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.wc-values-intro p {
  margin: 16px 0 28px;
  color: var(--text-light);
}

.wc-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wc-value-card {
  background: var(--gray-bg);
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.wc-value-card strong {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--navy);
}

.wc-value-card span {
  font-size: 13px;
  color: var(--text-muted);
}

.wc-services-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.wc-block {
  margin-bottom: 0px;
  /* scroll-margin-top: 120px; */
}

.wc-office-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.wc-office-gallery img {
  width: 100%;
  /* height: 540px; */
  object-fit: cover;
  border-radius: 4px;
}

.wc-local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.wc-local-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.wc-local-card .service-icon {
  margin-bottom: 16px;
}

.wc-local-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.wc-local-card p {
  font-size: 14px;
  color: var(--text-light);
}

.wc-map-block {
  margin: 40px 0;
}

.wc-map-wrap {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  background: var(--gray-bg);
  position: relative;
  z-index: 1;
}

.wc-map-wrap .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
}

.wc-map-wrap .leaflet-popup-content {
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 14px;
}

.wc-map-wrap .leaflet-popup-content a {
  color: var(--orange);
}

.wc-map-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wc-map-address {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  max-width: 520px;
}

.wc-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-map-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 15px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s;
}

.btn-map-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.sidebar-card.active {
  border-color: var(--orange);
  color: var(--orange);
}

.hero h2 {
  font-size: 52px;
}

@media (max-width: 1024px) {
  .wc-values-layout,
  .wc-local-grid,
  .wc-office-gallery,
  .wc-services-3 {
    grid-template-columns: 1fr 1fr !important;
  }

  .logo-nav-mobile .logo-img {
    height: 36px;
    width: 36px;
  }
}

@media (max-width: 767px) {
  .wc-stats { margin-top: -40px; }
  .wc-stats-grid { grid-template-columns: 1fr; }
  .wc-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .wc-stat:last-child { border-bottom: none; }
  .wc-stat .stat-num { font-size: 36px; }

  .wc-values-layout,
  .wc-values-grid,
  .wc-local-grid,
  .wc-office-gallery,
  .wc-services-3 {
    grid-template-columns: 1fr !important;
  }

  .hero h2 { font-size: 32px; }
  .wc-map-wrap { height: 300px; }
}
