:root {
  --primary: #ffffff;
  --primary-light: #F7F8FA;
  --secondary: #C9A14A;
  --secondary-gradient: linear-gradient(135deg, #e8c682 0%, #C9A14A 100%);
  --accent: #0B1F3A;
  --text-dark: #0B1F3A;
  --text-light: #ffffff;
  --bg-dark: #0B1F3A;
  --bg-card: #ffffff;

  --font-main: 'Inter', system-ui, sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: #444444;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0a192f 0%, #050c18 100%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(210, 174, 109, 0.2));
  animation: logoBreath 2.5s infinite ease-in-out;
  position: relative;
}

/* Shimmer effect on logo */
.loader-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 100%;
  height: 100%;
  background: var(--secondary-gradient);
  transform: translateX(-100%);
  animation: progressFill 2.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

.loader-text {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  animation: fadeInOut 2s infinite alternate ease-in-out;
  margin: 0;
}

@keyframes logoBreath {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(210, 174, 109, 0.2));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 35px rgba(210, 174, 109, 0.4));
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes progressFill {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.9;
  }
}

/* Feature & Service Icons */
.icon-svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--secondary);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 0 5px rgba(210, 174, 109, 0.2));
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(210, 174, 109, 0.05);
  border-radius: 20px 10px 20px 10px;
  /* Soft boutique shape */
  margin-bottom: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--secondary-gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.icon-wrapper:hover {
  background: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(210, 174, 109, 0.15);
}

.icon-wrapper:hover::after {
  opacity: 0.1;
}

.icon-wrapper:hover .icon-svg {
  stroke: var(--secondary);
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(210, 174, 109, 0.5));
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(210, 174, 109, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
  animation: floating 4s infinite ease-in-out;
}

.service-card:hover .service-icon {
  background: rgba(210, 174, 109, 0.15);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(210, 174, 109, 0.2);
}

.service-icon .icon-svg {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0;
}

.feature-list li .icon-svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
  margin-bottom: 0;
  vertical-align: middle;
  filter: none;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Base Utility Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--secondary-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(210, 174, 109, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 174, 109, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: rgba(210, 174, 109, 0.1);
}

section {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #0B1F3A;
  background: none;
  -webkit-text-fill-color: initial;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.navbar.scrolled .nav-links a:not(.btn) {
  color: #111;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links a:not(.btn):hover {
  color: var(--secondary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
  background-color: #111;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links.active a:not(.btn) {
    color: #fff !important;
  }

  .nav-links a:not(.btn) {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    /* kept white to show on dark mobile drawer background */
  }

  .nav-links .btn {
    width: 180px;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span {
    background-color: #fff !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar {
    padding: 0.8rem 0;
    /* thinner navbar on mobile */
    /* background and shadow now follow scrolled state from global styles */
  }

  .logo img {
    height: 48px;
    /* scale down logo nicely */
  }
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Utilities */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.bg-dark {
  background-color: #0B1F3A;
}

.bg-alt {
  background-color: #F7F8FA;
}

.bg-white {
  background-color: #ffffff;
}

.max-900 {
  max-width: 900px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 200px;
  /* adjusted for natural vertical align */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg .slide.active {
  opacity: 1;
}

.hero-bg .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  /* fixed invalid syntax: nudge trucks slightly more to the right */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(10, 25, 47, 0.8) 0%,
      rgba(10, 25, 47, 0.4) 40%,
      transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  max-width: 550px;
  /* narrowed for better separation */
}

.hero-title span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 2rem;
  max-width: 500px;
  /* narrowed for better separation */
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-tracking-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-contact-desktop {
    display: none !important;
  }

  .hero-tracking-mobile {
    display: inline-flex !important;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

.hero-stats-bar {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2.5rem;
  flex-wrap: wrap;
  max-width: 650px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num,
.stat-plus {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-num {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 250px;
    /* moved up slightly to clear image subjects */
    padding-right: 0;
    padding-left: 0;
    text-align: center;
    align-items: flex-start;
    /* anchor to top part of the image */
  }

  .hero-overlay {
    background: rgba(10, 25, 47, 0.6);
    /* stronger uniform overlay on mobile */
  }

  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    /* reduced from 2.2rem to prevent overflow */
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-stats-bar {
    gap: 1.5rem;
    flex-wrap: wrap;
    /* ensure stats wrap on very small screens */
    justify-content: center;
    /* center stats on mobile */
  }

  .stat-num,
  .stat-plus {
    font-size: 2.2rem;
  }

  .stat-item {
    align-items: center;
  }
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: slideUp 1s ease-out forwards;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .slider-controls {
    display: none;
    /* hidden on phone and tablet */
  }

  .slider-btn {
    width: 40px;
    /* smaller buttons on mobile */
    height: 40px;
    font-size: 1.2rem;
  }
}

/* About Us Section */
.about-us {
  background: #ffffff;
  padding: 3.5rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-side {
  order: 1;
}

.about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-content-side {
  order: 2;
}

.about-label {
  display: block;
  text-align: left;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
}

.about-text {
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-cta .btn-arrow {
  font-size: 1.1rem;
  transition: var(--transition);
}

.about-cta:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-side {
    order: 2;
  }

  .about-content-side {
    order: 1;
  }

  .about-content-side {
    text-align: center;
  }

  .about-label {
    text-align: center;
  }
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Mission and Vision Section */
.mission-vision {
  background: var(--bg-dark);
  color: #fff;
  padding: 6rem 0;
}

.mission-text {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: #ffffff;
  padding-bottom: 2rem;
  /* Reduced space below */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(210, 174, 109, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.service-card p {
  color: #555;
  margin-bottom: 1.5rem;
}

.learn-more {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.learn-more:hover {
  color: var(--secondary);
}

/* Split Layout (Warehousing) */
.warehousing {
  background: #ffffff;
  padding-top: 2rem;
  /* Reduced space above */
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.warehousing p {
  color: #555555;
}

.feature-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Compliance Section */
.compliance {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('assets/images/hero.png') center/cover fixed;
  padding: 8rem 0;
  text-align: center;
}

.compliance-box {
  max-width: 800px;
  margin: 0 auto;
}

.compliance .section-title {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.compliance p {
  font-size: 1.2rem;
  color: #f8f9fa;
  margin-bottom: 3rem;
}

.badges-flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(210, 174, 109, 0.1);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Logistics Solutions Section */
.logistics-solutions {
  background: #ffffff;
  padding: 2rem 0 8rem 0;
  /* Reduced top padding */
}

.container-wide {
  max-width: 1400px;
}

.solutions-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 4rem;
  max-width: 800px;
  line-height: 1.2;
}

.highlight-brand {
  color: var(--secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.solution-card {
  height: 500px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.solution-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  opacity: 0;
  /* Hidden by default, reveal on hover if desired, or keep visible. Designing inline with screenshot implies they might be always visible or revealed. Setting to 1 to match screenshot */
  opacity: 1;
}

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

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

  .solution-card {
    height: 400px;
  }
}

/* CTA Section */
.cta {
  background: #ffffff;
  text-align: center;
  padding: 6rem 0;
}

.cta .section-title {
  color: #111111;
  -webkit-text-fill-color: initial;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #555555;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.learn-more {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition);
}

.learn-more:hover {
  color: var(--secondary);
}

/* Split Layout (Warehousing) */
.warehousing {
  background: #ffffff;
  padding-top: 2rem;
  /* Reduced space above */
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.warehousing p {
  color: #555555;
}

.feature-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Compliance Section */
.compliance {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('assets/images/hero.png') center/cover fixed;
  padding: 8rem 0;
  text-align: center;
}

.compliance-box {
  max-width: 800px;
  margin: 0 auto;
}

.compliance .section-title {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.compliance p {
  font-size: 1.2rem;
  color: #f8f9fa;
  margin-bottom: 3rem;
}

.badges-flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(210, 174, 109, 0.1);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Logistics Solutions Section */
.logistics-solutions {
  background: #ffffff;
  padding: 2rem 0 8rem 0;
  /* Reduced top padding */
}

.container-wide {
  max-width: 1400px;
}

.solutions-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #111111;
  margin: 0 auto 4rem;
  max-width: 900px;
  line-height: 1.2;
  text-align: center;
}

.highlight-brand {
  color: var(--secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  height: 500px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.solution-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  opacity: 0;
  /* Hidden by default, reveal on hover if desired, or keep visible. Designing inline with screenshot implies they might be always visible or revealed. Setting to 1 to match screenshot */
  opacity: 1;
}

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

@media (max-width: 768px) {
  .logistics-solutions {
    padding: 3rem 0;
  }

  .solutions-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    height: 350px;
  }
}

/* CTA Section */
.cta {
  background: #ffffff;
  text-align: center;
  padding: 6rem 0;
}

.cta .section-title {
  color: #111111;
  -webkit-text-fill-color: initial;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #555555;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
}

/* Footer */
.footer {
  background: #0B1F3A;
  padding: 40px 0 0;
  text-align: center;
  color: #fff;
}

.footer-centered {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  height: 100px;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-company-name {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-info p {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-info a {
  color: #e0e0e0;
  transition: var(--transition);
}

.footer-info a:hover {
  color: var(--secondary);
}

.footer-bottom {
  background: #050c18;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* About Page Specific Layouts */
.about-page-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.about-page-hero .hero-container {
  z-index: 5;
  position: relative;
  width: 100%;
}

.about-page-hero .about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-page-hero .hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.about-page-hero .section-subtitle {
  margin: 0;
  color: #ffffff;

}

.about-page-hero .hero-description {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

.about-page-hero .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-page-hero .hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero .hero-overlay {
  background: rgba(11, 31, 58, 0.4);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-padding {
  padding: 60px 0;
}

.who-we-are {
  background: #ffffff;
}

.who-we-are .section-title {
  color: #111111;
  -webkit-text-fill-color: initial;
}

.who-we-are .section-text {
  color: #555555;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.card {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(210, 174, 109, 0.1);
  color: #111;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(210, 174, 109, 0.15);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(210, 174, 109, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.bg-alt {
  background: var(--primary-light);
}

.core-values {
  background: #ffffff;
}

.core-values .section-title {
  color: #111111;
  -webkit-text-fill-color: initial;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: left;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #444444;
  line-height: 1.6;
}

.why-list li strong {
  color: #111111;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}


.why-list li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23C9A14A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 6px;
}

.boutique-shape img {
  border-radius: 60px 20px 60px 20px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
  border-radius: 12px;
}

.shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-padding {
    padding: 50px 0;
  }
}

.nav-links a.active {
  color: var(--secondary) !important;
}

.nav-links a.active::after {
  width: 100% !important;
}

/* Visibility Utilities */
.text-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.bg-dark .section-title {
  color: #ffffff;
  -webkit-text-fill-color: initial;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-page-hero {
    height: 500px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 2rem;
  }

  .grid-2 {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-page-hero {
    height: 400px;
  }
}

/* Routes Page Styles */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.route-category {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-center {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 560px;
  width: 100%;
}

.route-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(210, 174, 109, 0.2);
  width: 100%;
}

.route-header h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  white-space: nowrap;
}

.route-list {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.route-list li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  color: #555;
  transition: var(--transition);
}

.route-category:hover .route-list li {
  color: #111;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.office-card {
  text-align: left;
  border-left: 4px solid var(--secondary);
}

/* Center a single office card across the grid (used for ODHAV) */
.office-card.center {
  grid-column: 1 / -1;
  justify-self: center;
  width: 90%;
  max-width: 420px;
}

.office-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.office-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.office-address {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.office-contact {
  margin-bottom: 1.5rem;
}

.office-contact p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.load-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.load-badge.ftl-ltl {
  background: rgba(210, 174, 109, 0.15);
  color: #8a6a2e;
}

.load-badge.ltl {
  background: rgba(52, 191, 163, 0.1);
  color: #1f6b5c;
}

.load-badge.ftl {
  background: rgba(52, 116, 191, 0.1);
  color: #1f476b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 3rem;
}

.feature-item {
  text-align: center;
}

.feature-item .icon-wrapper {
  margin: 0 auto 1.5rem;
}

.feature-item h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--secondary);
}

.bg-dark .feature-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

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

@media (max-width: 992px) {

  .routes-grid,
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .routes-grid,
  .offices-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .office-card {
    padding: 2rem;
  }
}


/* Contrast Utilities */
.bg-white {
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
}

.bg-white .section-title,
.bg-white h2,
.bg-white h3 {
  color: var(--text-dark) !important;
}

.bg-white .section-text,
.bg-white p {
  color: #555555 !important;
}

/* Visibility Fixes for Routes Page specifically */
.bg-dark .section-title,
.bg-dark h2 {
  color: #ffffff !important;
}

.bg-dark .section-subtitle {
  color: var(--secondary);
  opacity: 1;
}

.booking-offices .section-text {
  color: #444 !important;
  font-weight: 500;
}

.office-tag {
  font-weight: 800 !important;
  /* Make thin tags bolder */
  letter-spacing: 1.5px;
}

/* Load Badge Contrast Improvement */
.load-badge.ftl-ltl {
  background: rgba(210, 174, 109, 0.25);
  color: #5c441a;
}

.load-badge.ltl {
  background: rgba(52, 191, 163, 0.2);
  color: #0f4d40;
}

.load-badge.ftl {
  background: rgba(52, 116, 191, 0.2);
  color: #0f2e4d;
}


.section-subtitle {
  font-weight: 700 !important;
}

/* Premium Contact Page Redesign */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

.method-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  will-change: transform;
}

.method-card:hover {
  transform: translateY(-12px) translateZ(0);
  box-shadow: 0 20px 50px rgba(230, 177, 163, 0.2);
  border-color: var(--secondary);
}

.method-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.method-card:hover .method-icon-circle {
  background: var(--secondary);
  transform: rotate(10deg);
}

.method-card:hover .method-icon-circle .icon-svg {
  stroke: var(--text-light);
}

.method-icon-circle .icon-svg {
  width: 35px;
  height: 35px;
  stroke: var(--secondary);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.4s ease;
}

/* removed duplicate rule that referenced undefined --white variable */

.method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.method-details p {
  color: #444;
  line-height: 1.7;
  font-size: 0.95rem;
}

.method-cta-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: letter-spacing 0.3s ease;
}

.method-card:hover .method-cta-link {
  letter-spacing: 0.5px;
}

.contact-link-extra {
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}


.info-content a {
  color: var(--secondary);
  text-decoration: none;
}

/* Modern Form */
.form-container {
  padding: 2.5rem;
}

.modern-form .form-group {
  margin-bottom: 1.5rem;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
}

.modern-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(230, 177, 163, 0.1);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Contact Features */
.contact-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .contact-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-features-grid {
    grid-template-columns: 1fr;
  }
}

.c-feature-item {
  text-align: center;
  padding: 2rem;
  background: #fdfdfd;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.c-feature-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary);
}

.c-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.c-feature-icon .icon-svg {
  width: 28px;
  height: 28px;
  stroke: var(--secondary);
  stroke-width: 2;
  fill: none;
}

.c-feature-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.c-feature-item p {
  font-size: 0.9rem;
  color: #666;
}

/* Map Section */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header .section-title {
  color: var(--text-dark);
}


.footer-bottom a {
  text-decoration: underline !important;
  color: inherit;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--secondary);
}