/* ================================================== */
/* CARGONZ */
/* created by On3step */
/* ================================================== */
/* @charset "utf-8"; */
/* ================================================== */
/* TABLE OF CONTENTS
    ==================================================
    Tip: use Ctrl+F with class prefix to jump quickly.

    1. FONTS & VARIABLES         | find: :root, --cargo-
    2. RESET & BASE STYLES       | find: body, a, ul
    2.2 Body & Typography        | find: h1, h2, p
    33. UTILITIES                | find: .container, .section-padding

    4. NAVIGATION                | find: .cargo-topbar, .cargo-header, .nav-, .menu-toggle
    5. HERO SECTION              | find: .hero-, .home-hero-slider
    9. SECTION HEADERS           | find: .section-header, .section-title
    10. SERVICES (FEATURES)      | find: .features-
    10. SERVICES SECTION         | find: .services-

    TRACKING ALT STYLES          | find: .progress-track-alt, .history-
    TRACKING PAGE                | find: .track-form-large, .tracking-timeline
    TRACKING ALTERNATIVE         | find: .tracking-search-alt

    14. ABOUT/PROCESS SECTION    | find: .process-section, .map-section
    15. TESTIMONIALS             | find: .testimonials-, .testimonial-
    16. FAQ SECTION              | find: .faq-, .accordion-
    17. CTA SECTION (GET QUOTE)  | find: .quote-sidebar-widget
    18. CONTACT SECTION          | find: .contact-map-iframe
    19. FOOTER                   | find: .footer-
    20. BACK TO TOP              | find: .progress-wrap
    21. LOCOMOTIVE SCROLL        | find: .fade-on-scroll
    22. PAGE HEADER              | find: .page-header, .breadcrumb
    23. ABOUT PAGE               | find: .about-, .year-badge
    25. TEAM SECTION             | find: .team-
    26. WHY CHOOSE US            | find: .why-choose-, .check-list
    29. BLOG SECTION             | find: .blog-
    31. BLOG SIDEBAR (SIDE PANEL)| find: #extra-, #btn-extra
    32. RESPONSIVE DESIGN        | find: @media (max-width:

    Fleet Block (end of file)    | find: .fleet-
 ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================
   1. FONTS & VARIABLES
   ============================================ */
:root {
  --cargo-cream: #F8FAFC;
  --cargo-white: #FFFFFF;
  --cargo-ink: #0F172A;
  --cargo-ink-light: #334155;
  --cargo-brown: #1E293B;
  --cargo-brown-dark: #020617;
  --cargo-brown-light: #475569;
  --cargo-blue: #2563EB;
  --cargo-blue-dark: #003e9d;
  --cargo-blue-light: #60A5FA;
  --cargo-gold: #0EA5E9;
  --cargo-muted: #64748B;
  --cargo-border: #E2E8F0;
  --cargo-shadow: rgba(15, 23, 42, 0.08);
  --cargo-shadow-lg: rgba(15, 23, 42, 0.12);

  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;

  /* Spacing Scale - Golden Ratio Based */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 0.75rem;
  /* 12px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4.5rem;
  /* 72px */
  --space-4xl: 6rem;
  /* 96px */
  --space-5xl: 9rem;
  /* 144px */

  /* Layout */
  --container-width: 1240px;
  --content-width: 980px;
  --border-radius: 2px;
  --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
/* Bootstrap 5 Reset Overrides (if needed) */
a {
  text-decoration: none;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

body {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--cargo-muted);
  background: var(--cargo-cream);
  overflow-x: hidden;
}

/* ============================================
   2.2 Body & Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cargo-ink);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-lg);
  color: var(--cargo-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--cargo-blue-dark);
}

/* ============================================
   33. UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--content-width);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

.space-5xl {
  padding-top: var(--space-5xl) !important;
  padding-bottom: var(--space-5xl) !important;
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.cargo-topbar {
  background: var(--cargo-brown-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cargo-topbar a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 15px;
}

.topbar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  gap: var(--space-xl);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.topbar-item i {
  color: var(--cargo-blue);
  font-size: 0.875rem;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.topbar-phone {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  font-size: .9rem !important;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 0.75rem;
}

.social-icon:hover {
  color: var(--cargo-blue);
  transform: translateY(-2px);
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.cargo-header {
  position: fixed;
  top: 52px;
  /* Below topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 15px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cargo-header.top-15 {
  top: 15px;
}

.cargo-header.header-sticky {
  background: var(--cargo-white);
  padding: 15px 0;
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: none;
}

/* Header Grid */
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #fff;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 9999;
}

.logo img {
  max-width: 185px;
}

.logo img.logo {
  display: block;

}

.logo img.logo-dark {
  display: none;
}

.logo span {
  color: var(--cargo-blue);
}

.cargo-header.header-sticky .logo img.logo {
  display: none;
}

.cargo-header.header-sticky .logo img.logo-dark {
  display: block;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu>li {
  position: relative;
  padding: 10px 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.nav-link:hover {
  color: var(--cargo-blue);
}

.cargo-header.header-sticky .nav-link {
  color: var(--cargo-ink);
}

.cargo-header.header-sticky .nav-link:hover {
  color: var(--cargo-blue);
}

/* Dropdown Menu */
.nav-menu ul {
  position: absolute;
  top: 139%;
  left: 0;
  width: 220px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border-radius: 0 0 4px 4px;
}

.nav-menu li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu ul li {
  padding: 0;
}

.nav-menu ul li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cargo-ink);
  text-transform: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.nav-menu ul li:last-child a {
  border-bottom: none;
}

.nav-menu ul li a:hover {
  color: var(--cargo-blue);
  padding-left: 25px;
  background: #fcfcfc;
}

/* Nested Dropdown */
.nav-menu ul ul {
  top: 0;
  left: 100%;
  margin-top: -15px;
}

.nav-menu .has-child>a::after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 5px;
  font-size: 12px;
}

.nav-menu ul .has-child>a::after {
  content: "\f105";
  float: right;
}

/* Button Animations (Dentia Style) */
.btn-header,
.btn-primary,
.btn-hero.btn-primary,
.btn-search-icon {
  background: var(--cargo-blue);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 39, 99, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-hero {
  padding: 16px 30px !important;
}

.btn-header span,
.btn-primary span {
  display: block;
  position: relative;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.btn-header:hover span,
.btn-primary:hover span {
  transform: translateX(16px);
  opacity: 0;
}

.btn-header::before,
.btn-primary::before {
  content: attr(data-hover);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cargo-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(0%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 2;
  color: #fff;
}

.btn-header::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 34%;
  height: 320%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 85%);
  transform: rotate(18deg);
  opacity: 0;
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.btn-header:hover::before,
.btn-primary:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.btn-header:hover::after,
.btn-primary:hover::after {
  left: 118%;
  opacity: 1;
}

.btn-header:hover,
.btn-primary:hover,
.btn-hero.btn-primary:hover {
  background: var(--cargo-blue-dark);
  box-shadow: 0 14px 28px rgba(0, 39, 99, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(0px) scale(1);
}

.btn-search-icon:hover {
  background: var(--cargo-blue-dark) !important;
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--cargo-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-secondary:hover {
  background: var(--cargo-white);
  color: var(--cargo-ink) !important;
  border-color: var(--cargo-white);
  box-shadow: 0 14px 26px rgba(255, 255, 255, 0.22);
  transform: translateY(-3px) scale(1.01);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.cargo-header.header-sticky .menu-toggle {
  color: var(--cargo-ink);
}

.header-actions {
  display: flex;
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cargo-ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-video-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-video-hero .hero-overlay {
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 42%, rgba(15, 23, 42, 0.42) 74%, rgba(15, 23, 42, 0.25) 100%);
}

.hero-slider-section {
  position: relative;
  display: flex;
  flex-direction: column;
}

.home-hero-slider {
  width: 100%;
  height: 100%;
}

.home-hero-slider .swiper-wrapper {
  height: auto;
  align-items: stretch;
}

.home-hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-slider .swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.74) 44%, rgba(15, 23, 42, 0.45) 77%, rgba(15, 23, 42, 0.28) 100%);
}

.hero-slider-content {
  position: relative;
  z-index: 3;
}

.hero-slider-pagination {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 34px !important;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: var(--transition);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: var(--cargo-blue);
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

.hero-slider-nav:hover {
  background: var(--cargo-blue);
  border-color: var(--cargo-blue);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.85) 45%,
      rgba(15, 23, 42, 0.4) 75%,
      rgba(15, 23, 42, 0.1) 100%);
}

.hero-split {
  background: var(--cargo-ink);
  padding: 0;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-split-left {
  display: flex;
  align-items: center;
  padding: 200px clamp(28px, 7vw, 110px) clamp(72px, 9vh, 120px);
  padding-bottom: 8rem;
}

.hero-split .hero-content {
  max-width: 760px;
  padding: 0;
}

.hero-split .label-text {
  color: var(--cargo-blue);
}

.hero-split .hero-stats {
  margin-top: 10px;
}

.hero-split .stat-divider {
  background: rgba(15, 23, 42, 0.14);
}

.hero-split-right {
  position: relative;
  overflow: hidden;
}

.hero-split-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  margin: 12vw 0 9vw 0;
  border-radius: 20px;
}

.hero-split-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.58) 100%);
}

.hero-split-card {
  position: absolute;
  left: clamp(20px, 4vw, 46px);
  right: clamp(20px, 4vw, 46px);
  bottom: clamp(180px, 40vh, 160px);
  z-index: 3;
  background: linear-gradient(145deg, rgba(8, 16, 38, 0.82) 0%, rgba(8, 16, 38, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 22px 24px 24px;
  box-shadow: 0 16px 42px rgba(8, 15, 34, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  overflow: hidden;
}

.hero-split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.08) 0%, rgba(96, 165, 250, 0.34) 50%, rgba(96, 165, 250, 0.08) 100%);
}

.hero-split-card-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.88);
}

.hero-split-card h4 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.22rem, 1.5vw, 1.52rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--cargo-white);
}

.hero-split-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 36ch;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  padding: 11rem 0 6rem;
}

.hero-centered .hero-content {
  margin: 0 auto;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 0px;
}

.hero-centered .hero-label {
  justify-content: center;
}

.hero-centered .hero-buttons {
  justify-content: center;
}

.hero-centered .hero-stats {
  justify-content: center;
}


.hero-enter.is-hero-visible .hero-label,
.hero-enter.is-hero-visible .hero-description,
.hero-enter.is-hero-visible .hero-stats {
  animation: heroFadeRise 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter.is-hero-visible .hero-title .title-line {
  animation: heroLineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter.is-hero-visible .hero-buttons .btn-hero {
  animation: heroButtonReveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter.is-hero-visible .hero-label {
  animation-delay: 0s;
}

.hero-enter.is-hero-visible .hero-title .title-line:nth-child(1) {
  animation-delay: 0.02s;
}

.hero-enter.is-hero-visible .hero-title .title-line:nth-child(2) {
  animation-delay: 0.06s;
}

.hero-enter.is-hero-visible .hero-description {
  animation-delay: 0.09s;
}

.hero-enter.is-hero-visible .hero-buttons .btn-hero:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-enter.is-hero-visible .hero-buttons .btn-hero:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-enter.is-hero-visible .hero-stats {
  animation-delay: 0.16s;
}

@keyframes heroFadeRise {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineReveal {
  0% {
    opacity: 0;
    transform: translateY(75%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.label-line {
  width: 28px;
  height: 2px;
  background: var(--cargo-blue);
}

.label-text {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cargo-blue-light);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--cargo-white);
  margin-bottom: var(--space-2xl);
  letter-spacing: -0.04em;
  text-shadow: 0 8px 16px rgba(5, 10, 20, 0.25);
}

.title-line {
  display: block;
}

.title-line-accent {
  color: transparent;
  background: linear-gradient(90deg, rgba(0, 115, 255, 0.72) 0%, rgba(0, 119, 255, 0.95) 55%, rgba(0, 110, 255, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-3xl);
  max-width: 680px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
}

.btn-hero {
  padding: 1.125rem 2.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--cargo-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-secondary:hover {
  background: var(--cargo-white);
  color: var(--cargo-ink) !important;
  border-color: var(--cargo-white);
  box-shadow: 0 14px 26px rgba(255, 255, 255, 0.22);
  transform: translateY(-3px) scale(1.01);
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--cargo-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator Removed */

/* ============================================
   10. SERVICES SECTION (FEATURES)
   ============================================ */
.features-section {
  background: var(--cargo-white);
  padding: 0;
  position: relative;
  z-index: 20;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
}

.feature-card {
  background: var(--cargo-white);
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  transition: var(--transition);
  border-right: 1px solid var(--cargo-border);
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cargo-blue);
  transition: width 0.5s ease;
}

.feature-card:hover {
  background: #FDFBF9;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--cargo-shadow-lg);
}

.feature-card:hover::after {
  width: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FEF5ED 0%, #FEF0E6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cargo-blue);
  margin-bottom: var(--space-xl);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--cargo-blue);
  color: var(--cargo-white);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.feature-content {
  position: relative;
  z-index: 2;
}

.h4-style {
  font-size: 1.25rem;
}

.h5-style {
  font-size: 1.125rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--cargo-ink);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cargo-muted);
  margin-bottom: 0;
}

.feature-number {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--cargo-border);
  line-height: 1;
  opacity: 0.3;
  transition: var(--transition);
}

.feature-card:hover .feature-number {
  color: var(--cargo-blue);
  opacity: 0.15;
}

/* ============================================
   9. SECTION HEADERS
   ============================================ */
.section-header {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cargo-blue);
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-lg);
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--cargo-blue);
}

.section-label.no-line {
  padding: 0;
}

.section-label.no-line::before,
.section-label.no-line::after {
  display: none;
}

.section-label::before {
  left: -32px;
}

.section-label::after {
  right: -32px;
}

.section-label.light {
  color: var(--cargo-blue-light);
}

.section-label.light::before,
.section-label.light::after {
  background: var(--cargo-blue-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cargo-ink);
  margin-bottom: var(--space-lg);
}

.section-title.light {
  color: var(--cargo-white);
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--cargo-muted);
  margin-bottom: 0;
}

/* ============================================
   TRACKING ALT STYLES
   ============================================ */
.progress-track-alt .progress-line-bg {
  height: 6px;
  transform: translateY(-50%);
  z-index: 0;
}

.progress-track-alt .progress-line-active {
  height: 6px;
  width: 75%;
  transform: translateY(-50%);
  z-index: 1;
}

.step-icon-done {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--cargo-blue);
}

.step-icon-current {
  width: 50px;
  height: 50px;
  border: 4px solid var(--cargo-blue);
  animation: pulse-ring 2s infinite;
}

.step-icon-pending {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
}

.icon-box-small {
  width: 40px;
  height: 40px;
}

.history-time {
  width: 80px;
}

.history-dot-active {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 1px var(--cargo-blue);
}

.history-line-active {
  width: 2px;
  height: 100%;
  top: 16px;
  left: 7px;
}

.history-dot-pending {
  width: 16px;
  height: 16px;
}

.history-line-pending {
  width: 2px;
  height: 100%;
  top: 16px;
  left: 7px;
}

/* ============================================
   17. CTA SECTION (GET QUOTE)
   ============================================ */
.quote-sidebar-widget {
  border-radius: 20px;
}

.form-alert-message {
  border-radius: 8px;
}

/* ============================================
   16. FAQ SECTION
   ============================================ */
.sidebar-sticky-top {
  top: 120px;
}

/* ============================================
   18. CONTACT SECTION
   ============================================ */
.contact-map-iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 20px;
}

/* ============================================
   10. SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--cargo-cream);
  padding: var(--space-5xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-2xl);
}

.service-card {
  background: var(--cargo-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--cargo-shadow);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px var(--cargo-shadow-lg);
}

.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover .service-overlay {
  opacity: 1;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.5) 0%, rgba(29, 78, 216, 0.7) 100%);
}

.service-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: var(--cargo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--cargo-white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--cargo-white);
  color: var(--cargo-blue);
  transform: scale(1.05);
}

.service-content {
  padding: var(--space-2xl);
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cargo-muted);
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cargo-blue);
  transition: var(--transition);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   26. WHY CHOOSE US
   ============================================ */
.why-choose-section {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.92);
}

.why-choose-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
}

.why-choose-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
}

.check-list {
  list-style: none;
  margin: var(--space-2xl) 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  color: inherit;
  /* Inherit color from parent */
  font-weight: 500;
}

.check-list.light-text li {
  color: rgba(255, 255, 255, 0.9);
}

.check-list.dark-text li {
  color: var(--cargo-ink);
}

.check-list i {
  width: 25px;
  height: 25px;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid var(--cargo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--cargo-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   14. ABOUT/PROCESS SECTION
   ============================================ */
.process-section,
.map-section {
  background: var(--cargo-white);
  padding: var(--space-5xl) 0;
}

/* ============================================
   22. PAGE HEADER
   ============================================ */
.page-header {
  position: relative;
  padding: 250px 0 40px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  text-align: left;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.breadcrumb {
  position: absolute;
  bottom: 0;
  right: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb span {
  color: var(--cargo-blue);
}

/* ============================================
   23. ABOUT PAGE
   ============================================ */
.about-image-col {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.year-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--cargo-blue);
  color: #fff;
  padding: 30px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.year-badge span {
  font-size: 2rem;
  display: block;
}

/* ============================================
   25. TEAM SECTION
   ============================================ */
.team-slider {
  margin-top: 50px;
  padding-bottom: 0px;
  position: relative;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Subtle gradient border on hover */
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--cargo-blue), var(--cargo-orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.team-card:hover::before {
  opacity: 1;
}

/* Card Shine Effect */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 10;
  transform: skewX(-20deg);
}

.team-card:hover .card-shine {
  left: 100%;
}

/* Team Image */
.team-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* Vignette effect */
.team-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* Bottom gradient overlay */
.team-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}

.team-card:hover .team-image::before,
.team-card:hover .team-image::after {
  opacity: 1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.06);
}

/* Team Overlay - subtle color tint */
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(41, 98, 255, 0.08),
      rgba(255, 107, 0, 0.08));
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
  z-index: 1;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* Team Badge - more subtle */
.team-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cargo-blue);
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 5;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.team-card:hover .team-badge {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.team-badge i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Team Info */
.team-info {
  padding: 25px 30px;
  text-align: center;
  position: relative;
  background: #fff;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--cargo-ink);
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

/* Animated underline */
.team-name::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--cargo-blue), var(--cargo-orange));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.team-card:hover .team-name::after {
  width: 80%;
}

.team-role {
  color: var(--cargo-blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
  position: relative;
}

.team-bio {
  font-size: 0.92rem;
  color: #6c757d;
  margin: 16px 0 22px;
  line-height: 1.65;
  transition: all 0.5s ease 0.15s;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}


/* Social Links */
.team-card .social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.team-card .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: var(--cargo-ink);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

/* Background gradient on hover */
.team-card .social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cargo-blue), var(--cargo-orange));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.team-card .social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.team-card .social-icon:hover::before {
  opacity: 1;
}

.team-card .social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--cargo-blue-dark);
}

/* Stagger animation for social icons on card hover */
.team-card:hover .social-icon:nth-child(1) {
  transition-delay: 0.05s;
}

.team-card:hover .social-icon:nth-child(2) {
  transition-delay: 0.1s;
}

.team-card:hover .social-icon:nth-child(3) {
  transition-delay: 0.15s;
}

/* Navigation Buttons */
.team-nav {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  color: var(--cargo-blue);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cargo-blue), var(--cargo-orange));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-nav:hover::before {
  opacity: 1;
}

.team-nav:hover {
  color: white;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.team-nav::after {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

/* Pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0d0d0;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}

.swiper-pagination-bullet:hover {
  background: #b0b0b0;
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--cargo-blue), var(--cargo-orange));
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(41, 98, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    border-radius: 16px;
  }

  .team-image {
    height: 350px;
  }

  .team-badge {
    width: 42px;
    height: 42px;
    font-size: 16px;
    top: 20px;
    right: 20px;
  }

  .team-info {
    padding: 28px 22px 26px;
  }

  .team-name {
    font-size: 1.25rem;
  }

  .team-role {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .team-bio {
    font-size: 0.88rem;
    margin: 14px 0 20px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .team-image {
    height: 320px;
  }

  .team-info {
    padding: 24px 18px;
  }
}

.breadcrumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.015);
  border-radius: 50%;
  font-size: 12px;
  color: var(--cargo-blue);
}

/* ============================================
   TRACKING PAGE
   ============================================ */
.track-form-large .input-group {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.track-form-large input {
  height: 70px;
  font-size: 1.25rem;
  padding: 0 30px;
  border: none;
  background: #fff;
}

.track-form-large .btn {
  padding: 0 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shipment-info-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
}

.shipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipment-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.05rem;
}

.shipment-list li:last-child {
  border-bottom: none;
}

.shipment-list .label {
  color: var(--cargo-muted);
  font-weight: 500;
}

.shipment-list .value {
  color: var(--cargo-ink);
  font-weight: 600;
  text-align: right;
}

/* Timeline */
.tracking-timeline {
  position: relative;
  padding-left: 50px;
  padding-top: 20px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  height: 100%;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--cargo-muted);
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
  border-color: var(--cargo-blue);
  background: var(--cargo-blue);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
  animation: pulse-ring 2s infinite;
}

.timeline-item.active .timeline-marker i {
  animation: bounce-icon 2s infinite;
}

/* ============================================
   TRACKING ALTERNATIVE
   ============================================ */
.tracking-search-alt {
  border: 1px solid var(--cargo-border);
}

.tracking-search-alt .input-group {
  border-radius: 50rem !important;
}

.tracking-search-alt .form-control:focus {
  box-shadow: none;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.progress-track-alt .step-item {
  width: 80px;
}

.info-list-alt .icon-box-small {
  font-size: 1.1rem;
}

.history-list-alt .history-item:last-child .history-dot .position-absolute {
  display: none;
}

@keyframes bounce-icon {

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

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

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.timeline-item.completed .timeline-marker {
  border-color: var(--cargo-blue);
  background: #fff;
  color: var(--cargo-blue);
}

.timeline-item.completed::after {
  content: '';
  position: absolute;
  left: -25px;
  /* Center of the line (left: -50 + 25) */
  top: -50px;
  /* Connect to previous item */
  height: calc(100% + 50px);
  width: 2px;
  background: var(--cargo-blue);
  z-index: 0;
  display: none;
  /* Logic handled by CSS is tricky for connectivity, keeping simple for now or use JS */
}

/* Connect completed lines */
.tracking-timeline::before {
  background: linear-gradient(to bottom, var(--cargo-blue) 0%, var(--cargo-blue) 50%, #e2e8f0 50%, #e2e8f0 100%);
  /* This is a static gradient hack. For dynamic, JS is better, but simple CSS: */
  background: #e2e8f0;
}

.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  transform: rotate(45deg);
}

.timeline-content .date {
  display: block;
  font-size: 0.875rem;
  color: var(--cargo-blue);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-content .title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cargo-ink);
}

.timeline-content .desc {
  margin-bottom: 0;
  color: var(--cargo-muted);
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cargo-muted);
}

.blog-detail-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--cargo-ink);
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--cargo-blue);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cargo-ink);
  background: #f8fafc;
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--cargo-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.blog-meta i {
  color: var(--cargo-blue);
  margin-right: 5px;
}

.sidebar-widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--cargo-blue);
}

.cat-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--cargo-muted);
}

.cat-list li a:hover {
  color: var(--cargo-blue);
}

.service-list-widget li {
  border-bottom: 1px solid var(--cargo-border);
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-list-widget li:last-child {
  border-bottom: 0;
}

.service-list-widget li a {
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--cargo-ink-light);
  font-weight: 600;
  transition: var(--transition);
}

.service-list-widget li a i {
  line-height: 25px;
  opacity: 0.5;
  transition: var(--transition);
}

.service-list-widget li a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--cargo-blue);
}

.service-list-widget li a:hover i {
  opacity: 1;
}

.service-list-widget li a.active {
  background: var(--cargo-blue);
  color: var(--cargo-white);
}

.service-list-widget li a.active i {
  line-height: 25px;
  opacity: 1;
}

.brochure-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brochure-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--cargo-border);
  border-radius: 12px;
  background: #F8FAFF;
  color: var(--cargo-ink);
  text-decoration: none;
  transition: var(--transition);
}

.brochure-btn .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--cargo-blue);
  font-size: 1.1rem;
  flex: 0 0 44px;
}

.brochure-btn .text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.brochure-btn .text .title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cargo-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brochure-btn .text .size {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cargo-muted);
  margin-top: 3px;
}

.brochure-btn .download {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cargo-blue);
  color: var(--cargo-white);
  font-size: 0.8rem;
  opacity: 0.9;
  transform: translateX(-2px);
  transition: var(--transition);
}

.brochure-btn:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.brochure-btn:hover .download {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-widget.p-0 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.sidebar-widget.p-0 {
  border-radius: 8px;
  min-height: 300px;
}

.sidebar-widget.p-0 .position-absolute {
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.45) 0%, rgba(2, 6, 23, 0.78) 100%);
  padding: 24px;
}

.sidebar-widget.p-0 h4 {
  color: var(--cargo-white);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.sidebar-widget.p-0 p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.sidebar-widget.p-0 h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sidebar-widget.p-0 .bg-dark h3 {
  color: #fff !important;
}


.sidebar-widget.p-0 .btn {
  border: 0;
  background: var(--cargo-blue);
  color: var(--cargo-white);
  font-weight: 700;
  border-radius: 4px;
  padding: 10px 20px;
}

.sidebar-widget.p-0 .btn:hover {
  background: var(--cargo-blue-dark);
}

.img-vertical-height {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + 10px) center;
}

@media (max-width: 575px) {

  .sidebar-widget.p-0 img,
  .sidebar-widget.p-0 {
    min-height: 300px;
    height: 300px;
  }

  .sidebar-widget.p-0 h4 {
    font-size: 1.5rem;
  }

  .sidebar-widget.p-0 h3 {
    font-size: 1.8rem;
  }
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-post-info {
  width: 70%;
}

.recent-post-info h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-info .h4-style {
  font-size: 1.15rem;
  margin-bottom: 0px;
  line-height: normal;
}

.recent-post-info .h4-style a {
  color: var(--cargo-blue-dark);
}

.recent-post-info h5 a {
  color: var(--cargo-ink);
}

.recent-post-info h5 a:hover {
  color: var(--cargo-blue);
}

.recent-post-date {
  font-size: 0.85rem;
  color: var(--cargo-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3xl);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 70%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, var(--cargo-blue), var(--cargo-border));
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--cargo-white) 0%, #FDFBF9 100%);
  border: 3px solid var(--cargo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--cargo-blue);
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .process-icon i {
  color: #fff;
}

.process-step:hover .process-icon {
  background: var(--cargo-blue);
  color: var(--cargo-white);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.process-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: var(--cargo-blue);
  color: var(--cargo-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px var(--cargo-shadow-lg);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.process-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cargo-muted);
  margin-bottom: 0;
}

.badge-blog {
  line-height: 17px;
  position: relative;
  top: 2px;
  border: 1px solid rgba(0, 0, 0, .15);
  font-weight: 500;
  letter-spacing: .3px;
  opacity: .75;
}

/* ============================================
   19. FOOTER
   ============================================ */
.footer-main {
  background: var(--cargo-ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: var(--space-4xl) 0 var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cargo-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links a:hover {
  color: var(--cargo-blue);
  padding-left: var(--space-xs);
}

.footer-links i {
  color: var(--cargo-blue-light);
  width: 18px;
}

.footer-bottom {
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--cargo-blue-light);
}

/* ============================================
   31. BLOG SIDEBAR (SIDE PANEL)
   ============================================ */
#btn-extra {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 40px;
  height: 40px;
  padding-top: 10px;
  gap: 6px;
  transition: all 0.3s ease;
}

#btn-extra span {
  display: block;
  height: 2px !important;
  background: #fff;
  transition: all 0.3s ease;
}

#btn-extra span:nth-child(1) {
  width: 20px;
}

#btn-extra span:nth-child(2) {
  position: relative;
  width: 25px;
  top: 5px
}

#btn-extra span:nth-child(3) {
  position: relative;
  width: 20px;
  top: 10px;
}

#btn-extra:hover span {
  width: 30px;
  background: var(--cargo-blue);
}

.header-sticky #btn-extra span {
  background: var(--cargo-ink);
}

#extra-wrap {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(5px);
}

#extra-wrap.open {
  right: 0;
  opacity: 1;
  visibility: visible;
}

#extra-content {
  position: absolute;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  background: #fff;
  padding: 80px 50px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

#extra-wrap.open #extra-content {
  right: 0;
}

#btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btn-close span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--cargo-ink);
  transition: all 0.3s ease;
}

#btn-close span:nth-child(1) {
  transform: rotate(45deg);
}

#btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}

#btn-close:hover {
  background: var(--cargo-blue);
}

#btn-close:hover span {
  background: #fff;
  transform: rotate(135deg);
}

#btn-close:hover span:nth-child(2) {
  transform: rotate(45deg);
}

/* Side Panel Typography & Content */
#extra-content .logo {
  color: var(--cargo-ink);
  margin-bottom: 15px;
}

#extra-content h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--cargo-ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  margin-top: 30px;
  border-left: 3px solid var(--cargo-blue);
}

#extra-content .ul-check {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

#extra-content .ul-check li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

#extra-content .ul-check li:last-child {
  border-bottom: none;
}

#extra-content .ul-check li a {
  color: var(--cargo-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#extra-content .ul-check li a:hover {
  color: var(--cargo-blue);
  padding-left: 5px;
}

#extra-content .ul-check li a::after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

#extra-content .ul-check li a:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* Contact Info Styling */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 10px 0;
  font-size: 0.9375rem;
  color: var(--cargo-muted);
  line-height: 1.6;
}

.contact-info-item i {
  color: var(--cargo-blue);
  font-size: 1.125rem;
  margin-top: 4px;
  min-width: 20px;
}

.contact-info-item strong {
  display: block;
  color: var(--cargo-ink);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Social Icons Fixed */
.social-icons-group {
  display: flex;
  gap: 10px;
  margin-top: auto;
  /* Push to bottom if needed, or just margin */
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon-box {
  width: 45px;
  height: 45px;
  background: #f5f5f5;
  color: var(--cargo-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.125rem;
}

.social-icon-box:hover {
  background: var(--cargo-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}


/* ============================================
   32. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1240px) {

  #btn-extra,
  .btn-header {
    display: none !important;
  }
}

@media (max-width: 1124px) {
  :root {
    --space-5xl: 6rem;
    --space-4xl: 4rem;
  }

  .header-grid {
    width: 100%;
  }

  #btn-extra,
  .btn-header {
    display: none !important;
  }

  .cargo-header {
    top: 0;
    width: 100vw;
  }

  .cargo-header .container {
    padding: 0 10px;
  }

  .topbar-grid {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .main-nav.mobile-open {
    display: block;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--cargo-white);
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    z-index: 1100;
    max-height: 100vh;
    overflow-y: auto;
    padding-top: 86px;
  }

  .main-nav.mobile-open .nav-menu {
    display: block;
    padding: 8px 0;
    gap: 0;
  }

  .main-nav.mobile-open .nav-menu>li {
    padding: 0;
    border-bottom: 1px solid var(--cargo-border);
  }

  .main-nav.mobile-open .nav-menu>li:last-child {
    border-bottom: 0;
  }

  .main-nav.mobile-open .nav-link {
    color: var(--cargo-ink);
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .main-nav.mobile-open .nav-menu .has-child>a::after {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 32px;
    height: 32px;
    margin-left: 0;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--cargo-blue);
    transition: var(--transition);
    pointer-events: none;
  }

  .main-nav.mobile-open .nav-menu .has-child>a {
    position: relative;
    padding-right: 54px;
  }

  .main-nav.mobile-open .nav-menu li.open>a::after {
    transform: translateY(-50%) rotate(180deg);
    background: var(--cargo-blue);
    color: var(--cargo-white);
  }

  .main-nav.mobile-open .nav-menu ul {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f8fbff;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: none;
  }

  .main-nav.mobile-open .nav-menu li.open>ul {
    display: block;
  }

  .main-nav.mobile-open .nav-menu ul li a {
    padding: 11px 26px;
    border-bottom: 1px solid #e9f0fa;
    font-size: 0.875rem;
  }

  .main-nav.mobile-open .nav-menu ul li:last-child a {
    border-bottom: 0;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999 !important;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .menu-toggle i {
    color: var(--cargo-white) !important;
    font-size: 24px !important;
    display: block !important;
    visibility: visible !important;
  }

  .cargo-header.header-sticky .menu-toggle i {
    color: var(--cargo-ink) !important;
  }

  .menu-toggle.active {
    background: var(--cargo-blue);
    border-color: var(--cargo-blue);
    color: var(--cargo-white) !important;
  }

  body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
  }

  body.mobile-menu-open .cargo-header .logo img.logo {
    display: none;
  }

  body.mobile-menu-open .cargo-header .logo img.logo-dark {
    display: block;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .home-hero-slider .swiper-slide {
    padding: 120px 0 80px;
  }

  .hero-title {
    line-height: 1.06;
  }

  .title-line-accent {
    -webkit-text-stroke: 0.8px rgba(191, 219, 254, 0.45);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .stat-number {
    font-size: 2.25rem;
  }

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

  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--cargo-border);
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

  .hero-split-left {
    min-height: auto;
    padding: 130px 28px 58px;
  }

  .hero-split-right {
    min-height: 62svh;
  }

  .hero-split-img {
    height: 100%;
    margin: 0 20px 20px;
    border-radius: 24px;
  }

  .hero-split-card {
    right: 20px;
    left: 20px;
    bottom: 20px;
    padding: 20px;
  }

}

@media (max-width: 768px) {
  :root {
    --space-5xl: 4rem;
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  .title-line-accent {
    -webkit-text-stroke: 0.6px rgba(191, 219, 254, 0.42);
  }

  .hero-slider-prev {
    left: 5px;
  }

  .hero-slider-next {
    right: 5px;
  }

  .hero-slider-nav {
    font-size: .75rem;
    width: 40px;
    height: 40px;
  }

  .hero-slider-pagination {
    bottom: 20px !important;
  }

  .btn-hero {
    padding: .6rem 2rem;
  }


  .hero-slider-section {
    min-height: auto;
    height: auto;
    display: block;
  }

  .home-hero-slider {
    height: auto;
  }

  .home-hero-slider .swiper-wrapper {
    height: auto;
  }

  .home-hero-slider .swiper-slide {
    height: auto;
  }

  .hero-split-left {
    padding: 0px 20px 40px;
  }

  .hero-split-right {
    min-height: 56svh;
  }

  .hero-split-img {
    margin: 0 14px 14px;
    border-radius: 20px;
  }

  .hero-split-card {
    bottom: 15%;
    margin: 14px;
    padding: 18px 18px 20px;
    background: linear-gradient(145deg, rgba(8, 16, 38, 0.88) 0%, rgba(8, 16, 38, 0.76) 100%);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(8, 19, 42, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
  }

  .stat-divider {
    display: none;
  }

  .process-step::before {
    display: none;
  }

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

  .breadcrumb {
    position: relative;
    bottom: 0;
    left: 4px;
    text-align: left;
    display: flex;
    width: 100%;
    justify-content: left;
  }

  .hero-content {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-centered .hero-content {
    padding-top: 15px !important;
  }

  .hero-content.hero-slider-content {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .topbar-item span {
    display: none;
  }

  .logo {
    font-size: 1.5rem;
  }

  .btn-primary {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.8125rem;
  }

  .section-label::before,
  .section-label::after {
    display: none;
  }
}

/* ============================================
   21. LOCOMOTIVE SCROLL
   ============================================ */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-on-scroll .blog-image img,
.fade-on-scroll .team-image img,
.fade-on-scroll .recent-post-img img,
.fade-on-scroll .author-image img,
.fade-on-scroll .stats-box>img,
.fade-on-scroll .about-image,
.fade-on-scroll .service-detail-image img,
.fade-on-scroll .fleet-hero-image,
.fade-on-scroll .fleet-media-grid img {
  will-change: transform, opacity;
}

.fade-on-scroll.visible .blog-image img,
.fade-on-scroll.visible .team-image img,
.fade-on-scroll.visible .recent-post-img img,
.fade-on-scroll.visible .author-image img,
.fade-on-scroll.visible .stats-box>img,
.fade-on-scroll.visible .about-image,
.fade-on-scroll.visible .service-detail-image img,
.fade-on-scroll.visible .fleet-hero-image,
.fade-on-scroll.visible .fleet-media-grid img {
  will-change: auto;
}

/* Staggered children animation for grids */
.fade-on-scroll.visible .process-step,
.fade-on-scroll.visible .feature-card,
.fade-on-scroll.visible .service-card {
  animation: fadeInUp 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ============================================
   20. BACK TO TOP
   ============================================ */
.progress-wrap {
  position: fixed;
  right: 15px;
  bottom: 15px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.05);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--cargo-blue);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background: var(--cargo-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--cargo-blue);
  stroke-width: 3;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.track-stats-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0;
}

.track-stats-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
}

/* Left: Track Box */
.track-box {
  flex: 1;
  min-width: 300px;
  background: var(--cargo-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Optional pattern for blue box */
.track-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.track-content {
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.track-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  color: #fff;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.track-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.track-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  font-size: 1rem;
}

.track-form {
  margin-bottom: var(--space-3xl);
}

.input-group {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.input-group:focus-within {
  border-bottom-color: #fff;
}

.track-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px 40px 15px 0;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  font-weight: 500;
}

.track-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.track-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.track-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.track-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.track-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.track-socials a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Right: Stats Box */
.stats-box {
  flex: 1.5;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-4xl);
}

.stats-box>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  padding: var(--space-2xl);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
}

.stat-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--cargo-blue);
}

@media (max-width: 991px) {
  .track-stats-container {
    flex-direction: column;
  }

  .stats-box {
    padding: var(--space-5xl) 30px;
  }
}

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

  .track-title {
    font-size: 2rem;
  }
}

/* ============================================
   15. TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: var(--cargo-cream);
  overflow: hidden;
}

.testimonials-slider {
  padding: 20px;
  padding-bottom: 110px;
}

.testimonials-slider .swiper-pagination {
  bottom: 0px;
}

.testimonial-card {
  background: #fff;
  padding: 35px 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 0;
  font-size: 2rem;
  color: var(--cargo-blue);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-align: center;
}

.author-image {
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cargo-ink);
  margin-bottom: 2px;
}

.author-pos {
  font-size: 0.875rem;
  color: var(--cargo-muted);
  font-weight: 500;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--cargo-muted);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D1D5DB;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: var(--cargo-blue);
  border-radius: 50%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--cargo-blue);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--cargo-blue);
  color: #fff;
}

/* ============================================
   16. FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-5xl) 0;
  background: #fff;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--cargo-border);
  background: transparent;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--cargo-ink);
  background: transparent;
  padding: 1.5rem 0;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--cargo-brown-dark);
  background: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F172A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 0 1.5rem 0;
  color: var(--cargo-muted);
  line-height: 1.7;
}

/* ============================================
   29. BLOG SECTION
   ============================================ */
.blog-section {
  position: relative;
  top: 1px;
  padding: var(--space-5xl) 0;
  background: var(--cargo-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.blog-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--cargo-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8125rem;
  color: var(--cargo-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.blog-meta i {
  color: var(--cargo-blue);
  margin-right: 5px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--cargo-ink);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--cargo-blue);
}

.blog-desc {
  color: var(--cargo-muted);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cargo-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
  color: var(--cargo-blue-dark);
}

.blog-pagination {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-pagination .page-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cargo-border);
  background: var(--cargo-white);
  color: var(--cargo-ink-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.blog-pagination .page-link:hover {
  border-color: var(--cargo-blue);
  color: var(--cargo-blue);
  transform: translateY(-2px);
}

.blog-pagination .page-link.active {
  background: var(--cargo-blue);
  border-color: var(--cargo-blue);
  color: var(--cargo-white);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.blog-pagination .page-link i {
  font-size: 0.75rem;
}

.fleet-hero-split .fleet-hero-split .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.fleet-hero-split .row {
  min-height: 640px;
}

.fleet-hero-media-col,
.fleet-hero-content-col {
  min-height: 640px;
}

.fleet-hero-media-col {
  position: relative;
  display: flex;
}

.fleet-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fleet-hero-content-col {
  display: block;
  padding: 64px 7vw 64px 56px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--cargo-white);
  border: 1px solid var(--cargo-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.fleet-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--cargo-blue);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.fleet-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.fleet-card p {
  color: var(--cargo-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.fleet-card span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cargo-blue);
}

.fleet-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fleet-media-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.fleet-cta {
  background: var(--cargo-ink-light);
  text-align: center;
  padding: 80px 40px;
}

.fleet-cta h3 {
  color: var(--cargo-white);
  margin-bottom: 14px;
  font-size: 2.3rem;
}

.fleet-cta p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin: 0 auto 28px;
}

@media (max-width: 991px) {

  .fleet-hero-split .row,
  .fleet-hero-media-col,
  .fleet-hero-content-col {
    min-height: auto;
  }

  .fleet-hero-image {
    height: 420px;
  }

  .fleet-hero-content-col {
    padding: 42px 28px;
  }

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

  .fleet-media-grid img {
    height: 240px;
  }

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

@media (max-width: 768px) {
  .fleet-hero-image {
    height: 320px;
  }

  .fleet-hero-content-col {
    padding: 34px 20px;
  }

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

  .fleet-media-grid {
    grid-template-columns: 1fr;
  }

  .fleet-media-grid img {
    height: 220px;
  }

  .fleet-cta {
    padding: 42px 22px;
  }

  .fleet-cta h3 {
    font-size: 1.55rem;
  }

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


/* Animaciones de Entrada */
@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

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

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Clases para aplicar en el HTML */
.reveal-left {
  animation: revealLeft 1.2s ease-out forwards;
}

.reveal-right {
  animation: revealRight 1.2s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Efecto Hover: Las tarjetas brillan al pasar el mouse */
.col-lg-6:hover .shadow-lg {
  border-color: #ffd700 !important;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.07) !important;
  transform: translateY(-5px);
}

/* Animación de entrada escalonada */
.anim-up {
  animation: fadeInUp 1s ease forwards;
}

.anim-left {
  animation: fadeInLeft 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.anim-right {
  animation: fadeInRight 1.2s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* Efecto de Flotación para los Iconos */
.icon-float {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

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

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

/* Hover de la Tarjeta: Se ilumina al tocarla */
.transport-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.transport-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #162533, #0b131a) !important;
}

/* Contenedor de la ruta */
.process-pathway {
  padding-top: 30px;
}

/* La "Carretera" animada */
.road-line {
  position: absolute;
  top: 85px;
  left: 10%;
  width: 0;
  /* Empieza en 0 para la animación */
  height: 4px;
  background: repeating-linear-gradient(90deg, #0056b3, #0056b3 20px, transparent 20px, transparent 40px);
  z-index: 1;
  animation: drawRoad 2.5s ease-out forwards;
}

@keyframes drawRoad {
  to {
    width: 80%;
  }
}

/* Círculos de los Iconos */
.icon-circle {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 3px solid #f0f0f0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.icon-circle i {
  font-size: 2.5rem;
  color: #0056b3;
}

/* Números de los pasos */
.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffd700;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animación de entrada escalonada para cada paso */
.step-1 {
  animation: stepFadeUp 0.8s ease forwards 0.5s;
}

.step-2 {
  animation: stepFadeUp 0.8s ease forwards 1s;
}

.step-3 {
  animation: stepFadeUp 0.8s ease forwards 1.5s;
}

.step-4 {
  animation: stepFadeUp 0.8s ease forwards 2s;
}

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

/* Efecto Hover: El icono "arranca" */
.process-step:hover .icon-circle {
  border-color: #0056b3;
  transform: scale(1.1) rotate(5deg);
  background: #0056b3;
}

.process-step:hover .icon-circle i {
  color: #ffffff;
}

.path-container {
  position: relative;
  padding: 40px 0;
}

/* Línea de fondo que une los puntos */
.path-line {
  position: absolute;
  top: 90px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: #e9ecef;
  z-index: 1;
}

/* Estilo de cada paso */
.path-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-content {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px);
}

/* Iconos circulares imponentes */
.step-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #0056b3;
  color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.1);
}

.path-step h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.path-step p {
  font-size: 0.95rem;
  color: #666;
  padding: 0 10px;
}

/* Animación cuando se vuelve visible */
.path-step.active .step-content {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto hover: El icono se activa */
.path-step:hover .step-icon {
  background: #0056b3;
  color: #ffffff;
  transform: scale(1.1);
}

/* Contenedor Principal */
.process-wrapper {
  position: relative;
  padding: 40px 0;
}

/* Tarjeta Estilo Premium */
.step-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  border: 1px solid #eee;
  z-index: 2;
}

.step-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 86, 179, 0.15);
  border-color: #0056b3;
}

/* El Icono con Radar */
.icon-main {
  width: 90px;
  height: 90px;
  background: #f8f9fa;
  color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 20px;
  font-size: 2.5rem;
  position: relative;
}

/* Animación de Pulso (Radar) */
.radar-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #0056b3;
  border-radius: 20px;
  animation: ping 2s infinite;
  opacity: 0;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Anillo especial para el GPS (Paso 3) */
.pulse-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid #ffd700;
  border-radius: 50%;
  animation: gps-pulse 1.5s infinite;
}

@keyframes gps-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tags de números modernos */
.step-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

/* Animación de Entrada */
.process-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.process-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Contenedor Principal del Medallón */
.icon-badge {
  width: 120px;
  height: 120px;
  margin: 0 auto 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Efecto Neumórfico de fondo */
  background: #fdfdfd;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02), 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/* Superficie de Cristal Esmerilado (Frosted Glass) */
.badge-surface {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.1);
  transition: all 0.5s ease;
}

/* El Icono con Gradiente Metálico */
.badge-surface i {
  font-size: 3rem;
  background: linear-gradient(135deg, #0056b3, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

/* Efecto Brillo Azul */
.badge-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* --- Variación Dorada (GPS) --- */
.badge-gold .badge-surface i {
  background: linear-gradient(135deg, #ffd700, #e6b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-glow-gold {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.5;
}

/* --- Animaciones de Pulso de Radar --- */
.anim-pulse-blue::after,
.anim-pulse-gold::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}

.anim-pulse-blue::after {
  border: 2px solid #00aaff;
  animation: pulseBlue 2.5s infinite;
}

.anim-pulse-gold::after {
  border: 2px solid #ffd700;
  animation: pulseGold 2.5s infinite;
}

@keyframes pulseBlue {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulseGold {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* --- Efectos al pasar el Mouse (Hover) --- */
.step-card:hover .badge-surface {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 45px rgba(0, 86, 179, 0.2);
}

.step-card:hover .badge-glow {
  opacity: 1;
}

.step-card:hover .anim-pulse-blue::after {
  animation-duration: 1.2s;
  /* El pulso se acelera al hover */
}

/* Contenedor de pasos */
.process-step {
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Línea que conecta los puntos */
.process-line {
  position: absolute;
  top: 75px;
  left: 12%;
  width: 76%;
  height: 3px;
  background: #e9ecef;
  z-index: 1;
}

/* El Círculo del Icono */
.step-icon-circle {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border: 3px solid #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
  transition: all 0.4s ease;
}

.step-icon-circle i {
  font-size: 2.8rem;
  color: #0056b3;
  transition: all 0.4s ease;
}

/* El número pequeño arriba del icono */
.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffd700;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Efecto hover: El icono "cobra vida" */
.process-step:hover .step-icon-circle {
  background: #0056b3;
  transform: scale(1.1);
  border-color: #ffd700;
}

.process-step:hover i {
  color: #ffffff;
}

/* Textos */
.process-step h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.process-step p {
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
}

/* Títulos de los Pasos (Más grandes y fuertes) */
.step-title {
  font-weight: 900 !important;
  /* Grosor máximo */
  color: #1a1a1a !important;
  /* Negro profundo para contraste */
  font-size: 1.5rem !important;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  /* Estilo ejecutivo */
}

/* Descripciones (Más claras y legibles) */
.step-desc {
  color: #444 !important;
  /* Gris oscuro, no tenue */
  font-size: 1.1rem !important;
  line-height: 1.6;
  padding: 0 15px;
  font-weight: 400;
}

/* El "Highlight" que pediste para resaltar texto clave */
.highlight {
  color: #0056b3;
  /* Azul THC */
  font-weight: 700;
  /* Negrita en palabras clave */
  border-bottom: 2px solid #ffd700;
  /* Subrayado amarillo seguridad */
}

/* Ajuste adicional al círculo para que no opaque al texto */
.step-icon-circle {
  border: 4px solid #0056b3 !important;
  /* Borde más grueso */
  margin-bottom: 35px !important;
  /* Más espacio con el título */
}

/* Efecto Hover: El texto también reacciona */
.process-step:hover .step-title {
  color: #0056b3 !important;
  transition: color 0.3s ease;
}

/* Animación de Pulso para los Marcadores */
.map-pulse {
  width: 20px;
  height: 20px;
  background: rgba(0, 86, 179, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 86, 179, 0.4);
  animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 86, 179, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

/* Estilo de los items de ruta */
.route-item {
  padding: 15px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.route-item:hover {
  transform: translateX(10px);
  border-color: #0056b3;
  color: #0056b3;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

.route-item span {
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
  color: #0056b3;
}

.map-wrapper {
  background: #fdfdfd;
  border-radius: 30px;
  padding: 20px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.mexico-map {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

/* Estilo de los nombres en el mapa */
.map-label {
  font-size: 14px;
  font-weight: 700;
  fill: #333;
  font-family: sans-serif;
  pointer-events: none;
}

/* Animación de las líneas de ruta */
.route-line {
  fill: none;
  stroke: #0056b3;
  stroke-width: 2;
  stroke-dasharray: 10;
  stroke-opacity: 0.3;
  animation: dashRoute 5s linear infinite;
}

@keyframes dashRoute {
  to {
    stroke-dashoffset: -100;
  }
}

/* Efecto Radar en los Puntos */
.radar-wave {
  fill: none;
  stroke: #0056b3;
  stroke-width: 2;
  animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    stroke-width: 2;
  }

  100% {
    transform: scale(4);
    opacity: 0;
    stroke-width: 0.5;
  }
}

/* Ajuste del panel de información */
.info-card {
  background: #fff;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

/* Estilo del Mapa */
.mexico-svg {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.map-bg {
  fill: #f1f4f7;
  stroke: #cbd5e0;
  stroke-width: 1;
}

/* Animación de las Rutas (Líneas que se mueven) */
.route-path {
  fill: none;
  stroke: #0056b3;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8, 12;
  stroke-opacity: 0.6;
  animation: flowRoute 15s linear infinite;
}

@keyframes flowRoute {
  from {
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* El Hub Principal (Monterrey) */
.hub-core {
  fill: #0056b3;
}

.hub-core.secondary {
  fill: #00aaff;
}

.hub-pulse {
  fill: #0056b3;
  opacity: 0.3;
  animation: hubRing 2s ease-out infinite;
}

@keyframes hubRing {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Etiquetas del Mapa */
.hub-label {
  font-size: 12px;
  font-weight: 800;
  fill: #1a202c;
  text-transform: uppercase;
  font-family: sans-serif;
}

/* Estilo del Panel Lateral */
.status-panel {
  transition: transform 0.3s ease;
}

.status-panel:hover {
  transform: scale(1.02);
}

.bg-primary-light {
  background: rgba(0, 86, 179, 0.1);
}

/* Contenedor del Simulador */
.map-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  background: linear-gradient(145deg, #101a24, #0a0f14);
  border-radius: 20px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  overflow: hidden;
}

/* El mapa SVG de fondo */
.mexico-bg {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 90%;
  pointer-events: none;
  /* Para no estorbar los clics */
}

/* Los Nodos (Ciudades) */
.map-node {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.node-core {
  width: 10px;
  height: 10px;
  background: #00aaff;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: -5px;
  box-shadow: 0 0 10px #00aaff;
  transition: transform 0.2s;
}

/* El Hub Principal (Monterrey) */
.hub-base .node-core {
  width: 16px;
  height: 16px;
  background: #ffd700;
  top: -8px;
  left: -8px;
  box-shadow: 0 0 20px #ffd700;
}

.hub-base .node-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #ffd700;
  border-radius: 50%;
  top: -25px;
  left: -25px;
  animation: hubPulse 2s infinite;
}

@keyframes hubPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.node-label {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0.7;
}

.map-node:hover .node-core {
  transform: scale(1.5);
}

.map-node:hover .node-label {
  opacity: 1;
  color: #ffd700;
}

/* Las Líneas Animadas (Rutas) */
.route-line {
  position: absolute;
  background: #00aaff;
  height: 2px;
  transform-origin: left center;
  z-index: 5;
  opacity: 0.4;
}

/* Panel Flotante */
.floating-data-panel {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(11, 19, 26, 0.95);
  border: 1px solid rgba(0, 170, 255, 0.4);
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  z-index: 20;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.floating-data-panel.show {
  opacity: 1;
  transform: translateY(0);
}

/* Estilos para el contenedor del mapa */
.map-container {
  overflow: hidden;
  /* Evita que el mapa se salga del borde redondeado */
}

/* Asegura que el SVG ocupe todo el espacio pero mantenga su proporción */
#mexico-map-svg svg {
  width: 100%;
  height: 100%;
  max-height: 500px;
  /* Evita que se haga absurdamente alto en pantallas grandes */
}

/* Color base para los estados del mapa SVG (Ajusta según necesites) */
#mexico-map-svg path {
  fill: #e9ecef;
  /* Gris claro */
  stroke: #ffffff;
  /* Borde blanco entre estados */
  stroke-width: 1px;
  transition: fill 0.3s ease;
}

/* Un color sutil al pasar el mouse por el mapa (opcional) */
#mexico-map-svg path:hover {
  fill: #dee2e6;
}

/* Estilos del Mapa THC */
.mapa-logistico-section {
  background: #0b131a;
  overflow: hidden;
}

.contenedor-mapa-real {
  position: relative;
  width: 100%;
  height: 650px;
  background: #101a24;
}

.mapa-fondo {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Blank_map_of_Mexico.svg/1024px-Blank_map_of_Mexico.svg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  filter: invert(1);
}

/* Líneas de Ruta Animadas */
.linea-animada {
  fill: none;
  stroke: #00aaff;
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  animation: fluirRuta 10s linear infinite;
}

@keyframes fluirRuta {
  to {
    stroke-dashoffset: -100;
  }
}

/* Puntos de Ciudad */
.punto-mapa {
  position: absolute;
  z-index: 10;
}

.pulso-oro {
  width: 15px;
  height: 15px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 20px #ffd700;
  animation: pulsoRadar 2s infinite;
}

@keyframes pulsoRadar {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.etiqueta-hub {
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  position: absolute;
  top: 20px;
  white-space: nowrap;
}

/* Botones */
.btn-ruta {
  background: transparent;
  border: 1px solid #00aaff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
  margin: 0 5px;
}

.btn-ruta.active,
.btn-ruta:hover {
  background: #00aaff;
  box-shadow: 0 0 15px #00aaff;
}

/* Contenedor principal del Mapa THC */
.mapa-logistico-section {
  background: #0b131a;
  padding-bottom: 50px;
}

.contenedor-mapa-real {
  position: relative;
  width: 100%;
  height: 650px;
  background: #080d12;
  /* Fondo muy oscuro para contraste */
  border-radius: 15px;
  border: 1px solid rgba(0, 170, 255, 0.15);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* LA MAGIA: Silueta de México a prueba de fallos */
.mapa-fondo {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a2f4c;
  /* El color de la silueta de México */
  -webkit-mask-image: url('https://www.amcharts.com/lib/3/maps/svg/mexicoLow.svg');
  mask-image: url('https://www.amcharts.com/lib/3/maps/svg/mexicoLow.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.8;
}

/* Líneas de Ruta Animadas */
.linea-animada {
  fill: none;
  stroke: #00aaff;
  stroke-width: 2.5;
  stroke-dasharray: 8, 8;
  animation: fluirRuta 15s linear infinite;
  opacity: 0.7;
}

@keyframes fluirRuta {
  from {
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* Nodos y Pulsos GPS */
.punto-mapa {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.pulso-oro {
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 15px #ffd700;
  animation: pulsoRadar 2s infinite;
}

.pulso-azul {
  width: 8px;
  height: 8px;
  background: #00aaff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00aaff;
}

@keyframes pulsoRadar {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Etiquetas de Ciudades */
.etiqueta-hub {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Diseño de Botones Ejecutivos */
.botones-rutas {
  margin-top: 20px;
}

.btn-ruta {
  background: transparent;
  border: 1px solid #0056b3;
  color: #a0aec0;
  padding: 8px 25px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 0 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-ruta.active,
.btn-ruta:hover {
  background: #0056b3;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}

/* Contenedor del Mapa */
.lienzo-mapa-thc {
  width: 100%;
  height: 600px;
  background: radial-gradient(ellipse at center, #161c24 0%, #0a0b0e 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 170, 255, 0.15);
  overflow: hidden;
}

/* Silueta de México Real (Efecto Holograma) */
.silueta-mexico {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a2f4c;
  /* Color de la tierra */
  -webkit-mask-image: url('https://www.amcharts.com/lib/3/maps/svg/mexicoLow.svg');
  mask-image: url('https://www.amcharts.com/lib/3/maps/svg/mexicoLow.svg');
  -webkit-mask-size: 85%;
  mask-size: 85%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.6;
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.3));
}

/* Botones de Filtro */
.btn-filtro {
  background: transparent;
  border: 1px solid #2a2a35;
  color: #888;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.btn-filtro:hover {
  border-color: #F5C200;
  color: #F5C200;
}

.btn-filtro.active {
  background: #F5C200;
  border-color: #F5C200;
  color: #000;
}

/* Animación de las Líneas (Rutas) */
.ruta-activa {
  fill: none;
  stroke: #00aaff;
  stroke-width: 2.5;
  stroke-dasharray: 6, 8;
  animation: flujoRuta 15s linear infinite;
  filter: drop-shadow(0 0 4px rgba(0, 170, 255, 0.8));
  opacity: 0.8;
}

@keyframes flujoRuta {
  to {
    stroke-dashoffset: -200;
  }
}

/* Nodos (Puntos en el mapa) */
.nodo-ciudad {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.nodo-core {
  width: 8px;
  height: 8px;
  background: #00aaff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00aaff;
}

.nodo-base {
  width: 12px;
  height: 12px;
  background: #F5C200;
  box-shadow: 0 0 15px #F5C200;
}

.nodo-pulso {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border: 2px solid #F5C200;
  border-radius: 50%;
  animation: radarPulse 2s infinite ease-out;
}

@keyframes radarPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.nodo-etiqueta {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
}


/* --- COMMAND CENTER STYLES --- */
.live-indicator {
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #2563eb;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.stats-mini-card {
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  text-align: center;
}

/* Tarjeta Inteligente */
.route-smart-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.route-smart-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
}

.route-icon {
  width: 50px;
  height: 50px;
  background: #f8faff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.status-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Visualización de la Ruta */
.route-path-visual {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 800;
  color: #0f172a;
  font-size: 0.85rem;
}

.path-line-anim {
  flex-grow: 1;
  height: 2px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.path-line-anim::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  animation: flowLine 2s infinite linear;
}

@keyframes flowLine {
  to {
    left: 100%;
  }
}

.route-smart-card.tiny {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-smart-card.tiny h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.mini-path {
  width: 40px;
  height: 3px;
  background: #2563eb;
  border-radius: 10px;
  opacity: 0.3;
}

/* --- INFRASTRUCTURE SECTION --- */
.bg-soft-primary {
  background: rgba(37, 99, 235, 0.1);
}

.spec-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 100%;
}

.spec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.spec-header i {
  font-size: 2.5rem;
  color: #2563eb;
  transition: 0.3s;
}

.spec-number {
  font-size: 3rem;
  font-weight: 900;
  color: #f8f9fa;
  line-height: 1;
}

.spec-card h4 {
  font-weight: 800;
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.spec-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.spec-list li i {
  color: #2563eb;
  font-size: 0.8rem;
}

/* Efecto Hover: Apple-Style Shadow */
.spec-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.spec-card.active {
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.05);
}

.spec-card:hover .spec-header i {
  transform: scale(1.2);
}

/* --- AURORA FOOTER STYLES --- */
.thc-aurora-footer {
  background: #0f172a;
  background: linear-gradient(-45deg, #0f172a, #1e293b, #2563eb, #1e3a8a);
  background-size: 400% 400%;
  animation: auroraBG 15s ease infinite;
  position: relative;
  padding-top: 100px;
  color: #fff;
}

@keyframes auroraBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Ola superior */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave .shape-fill {
  fill: #ffffff;
}

/* Reemplaza el inline style="z-index: 5;" del HTML original */
.footer-inner {
  z-index: 5;
}

/* Tarjeta CTA con Glassmorphism */
.footer-cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 50px;
  border-radius: 30px;
  margin-bottom: 80px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.btn-glow-action {
  background: #ffd700;
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-glow-action:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  color: #000;
}

/* Tipografía y Listas */
.footer-h5 {
  color: #ffd700;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 30px;
}

.footer-animated-links {
  list-style: none;
  padding: 0;
}

.footer-animated-links li {
  margin-bottom: 15px;
}

.footer-animated-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.footer-animated-links a:hover {
  color: #fff;
  transform: translateX(10px);
}

/* Items de Contacto Tech */
.contact-tech-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon-blob {
  width: 45px;
  height: 45px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.2rem;
}

/* Barra Inferior */
.footer-bottom-bar {
  margin-top: 60px;
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- HERO REDESIGN PREMIUM --- */
.hero-section-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
}

.hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* El degradado que salva la legibilidad */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.7) 40%,
      rgba(15, 23, 42, 0) 100%);
}

.hero-content-v2 {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: 80px;
}

/* Tipografía y Sombra de Texto */
.hero-main-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero-main-title .text-white {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

.hero-main-title .text-accent {
  background: linear-gradient(90deg, #00aaff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-lead-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Fix de legibilidad */
}

/* Botones Apple-Style */
.btn-apple-primary {
  background: #2563eb;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-apple-primary:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.btn-apple-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-apple-outline:hover {
  background: #fff;
  color: #0f172a;
}

/* Stats en panel de cristal */
.hero-stats-glass {
  margin-top: 60px;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.glass-stat strong {
  font-size: 2rem;
  color: #00aaff;
  display: block;
}

.glass-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.glass-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 30px;
}

/* FIX PARA EL VIDEO Y TAMAÑO DEL HEADER */
.hero-section-premium {
  position: relative;
  height: 500px;
  /* Ajustamos la altura para que no se vea reducido */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Empuja el contenido hacia abajo para que no lo tape el menú fijo */
  padding-top: 100px;
}

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

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Esto evita que el video se estire o se vea horrible */
}

/* Oscurecemos el video para que la letra blanca resalte */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 2;
}

.page-header-content {
  position: relative;
  z-index: 3;
  /* Asegura que el texto esté por encima del video y el overlay */
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

/* FIX PARA HERO VIDEO INDEX */
.hero-section-premium {
  position: relative;
  width: 100%;
  /* Aumentamos a 85vh para que ocupe casi toda la pantalla inicial */
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
  padding-top: 100px;
  /* Evita que el menú tape el título */
}

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

.hero-video-bg {
  width: 100% !important;
  height: 100% !important;
  /* CLAVE: Hace que el video llene el área sin estirarse feo */
  object-fit: cover;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  /* Degradado oscuro a la izquierda para que el texto resalte */
  background: linear-gradient(90deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.4) 50%,
      rgba(15, 23, 42, 0.1) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  /* Asegura que el texto flote sobre el video */
}

/* =========================================
   TOPBAR MINIMALISTA (FACEBOOK)
   ========================================= */
.cargo-topbar-minimal {
  background-color: #0b131a;
  /* Azul marino muy oscuro */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-facebook-link {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.topbar-facebook-link:hover {
  opacity: 1;
  color: #1877F2;
  /* Se pinta del azul oficial de Facebook al pasar el mouse */
  transform: translateY(-1px);
}

.topbar-phone-link {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.topbar-phone-link:hover {
  opacity: 1;
  color: #00aaff;
}

/* Efecto Caja de Cristal (Glassmorphism) para el párrafo */
.hero-lead-text {
  background: rgba(11, 19, 26, 0.45) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  padding: 16px 24px !important;
  border-radius: 12px !important;
  border-left: 4px solid #00aaff !important;
  font-weight: 400 !important;
  display: inline-block !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

/* MEJORA VISUAL DE TARJETAS THC */

/* Cambiar círculos durazno por azul THC */
.feature-icon {
  background-color: rgba(0, 170, 255, 0.1) !important;
  /* Azul muy suave */
  color: #00aaff !important;
  /* El azul de tu logo */
  border-radius: 50% !important;
  transition: all 0.3s ease-in-out;
}

/* Efecto al pasar el mouse (hover) */
.feature-card:hover .feature-icon {
  background-color: #00aaff !important;
  /* El círculo se llena de azul */
  color: #ffffff !important;
  /* El icono se vuelve blanco */
}

.feature-card {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(0, 170, 255, 0.2);
}

/* ============================================
   THC — RESPONSIVE MOBILE OPTIMIZATION 2026
   Performance: transform/opacity only (60fps)
   ============================================ */

/* --- Hero: quitar margin-left fijo del btn-outline --- */
.btn-apple-outline {
  margin-left: 0;
}

/* --- Hero: definir layout del wrap de botones --- */
.hero-actions-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- Animaciones de entrada del hero (GPU-friendly) --- */
.anim-reveal {
  animation: heroFadeRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform;
}

.anim-reveal-late {
  animation: heroFadeRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  will-change: opacity, transform;
}

.block-anim {
  display: block;
  animation: heroFadeRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform;
}

.block-anim:nth-child(2) {
  animation-delay: 0.12s;
}

/* --- Tablet (≤ 992px) --- */
@media (max-width: 992px) {
  .hero-section-premium {
    min-height: 70vh;
    padding-top: 90px;
  }

  .hero-content-v2 {
    padding-top: 40px;
    max-width: 100%;
  }

  .hero-stats-glass {
    padding: 16px 28px;
    gap: 16px;
  }

  .thc-map-iframe {
    height: 500px !important;
  }

  .footer-cta-card {
    padding: 32px 36px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  /* Command center: stats cards en fila sin desborde */
  .thc-command-center .col-lg-6.d-flex {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

  /* Hero */
  .hero-section-premium {
    min-height: 60vh;
    padding-top: 80px;
  }

  .hero-main-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .hero-lead-text {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    padding: 10px 14px !important;
    margin-bottom: 18px !important;
    max-width: 90% !important;
    width: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-content-v2 {
    text-align: center;
    margin: 0 auto;
  }

  .hero-stats-glass {
    padding: 10px 18px;
    gap: 10px;
    border-radius: 14px;
    margin-top: 18px;
  }

  .glass-divider {
    display: none;
  }

  .glass-stat strong {
    font-size: 1.3rem;
  }

  .glass-stat span {
    font-size: 0.7rem;
  }

  /* Botones hero: centrados en columna, más compactos */
  .hero-actions-wrap {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .btn-apple-primary,
  .btn-apple-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 28px;
    font-size: 0.92rem;
  }

  /* Reducir tipografía Bootstrap display en mobile */
  .display-2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem) !important;
  }

  .display-3 {
    font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
  }

  .display-4 {
    font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
  }

  .display-5 {
    font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
  }

  /* Identity section: reducir icono flotante */
  .icon-float i {
    font-size: 2.5rem !important;
  }

  /* Mapa: altura reducida */
  .thc-map-iframe {
    height: 420px !important;
    border-radius: 16px !important;
  }

  /* Services grid: 1 columna en mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Track-Stats: track title más pequeño */
  .track-title {
    font-size: 1.75rem;
  }

  /* Track-Stats: stat value más pequeño */
  .stat-value {
    font-size: 2.5rem;
  }

  /* Footer CTA card */
  .footer-cta-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  /* Footer bottom bar: stack vertical */
  .footer-bottom-bar .d-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .legal-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  /* Process line: ya oculta con d-none d-lg-block, pero asegurar step-wrapper */
  .step-wrapper {
    padding: 0 8px;
  }

  /* Command center: header row ajustado */
  .thc-command-center .row.mb-5>div:last-child {
    justify-content: flex-start !important;
  }

  .stats-mini-card {
    padding: 12px 18px;
  }

  /* Footer: logo y about */
  .footer-logo {
    max-width: 160px;
  }
}

/* --- Mobile pequeño (≤ 576px) --- */
@media (max-width: 576px) {

  /* Contenedor base */
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-section-premium {
    min-height: 55vh;
  }

  .hero-content-v2 {
    padding-top: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-main-title {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem) !important;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .hero-lead-text {
    font-size: 0.82rem !important;
    padding: 8px 12px !important;
    margin-bottom: 14px !important;
    max-width: 95% !important;
  }

  .hero-stats-glass {
    margin-top: 14px;
    padding: 8px 14px !important;
    gap: 8px !important;
    justify-content: center;
  }

  .btn-apple-primary,
  .btn-apple-outline {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  /* Features: ya apiladas por el CSS existente */
  .features-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Stat cards: 1 columna en xs */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mapa iframe */
  .thc-map-iframe {
    height: 360px !important;
    border-radius: 14px !important;
  }

  /* Process section: padding interior */
  .process-section .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Route smart cards: padding reducido */
  .route-smart-card {
    padding: 24px 20px;
  }

  /* FAQ section bottom bar */
  .thc-command-center .mt-5.p-4 {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start !important;
  }

  .thc-command-center .mt-5.p-4 .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer CTA */
  .footer-cta-card {
    padding: 22px 18px;
  }

  /* Footer CTA row botón */
  .footer-cta-card .col-lg-4 {
    text-align: left !important;
  }

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

  /* Footer wave: recortar svg en xs */
  .footer-wave svg {
    height: 40px;
  }

  /* Hover: deshabilitar transforms costosos en touch */
  @media (hover: none) {

    .feature-card:hover,
    .service-card:hover,
    .route-smart-card:hover,
    .spec-card:hover {
      transform: none !important;
    }

    .btn-apple-primary:hover {
      transform: none;
    }
  }
}

/* --- Prevención de scroll horizontal global --- */
body {
  overflow-x: hidden;
}

.hero-section-premium,
.track-stats-section,
.services-section,
.identity-section,
.process-section,
.thc-command-center,
.thc-aurora-footer {
  overflow-x: hidden;
}

/* --- will-change solo para animaciones activas --- */
.anim-left,
.anim-right,
.anim-up {
  will-change: opacity, transform;
}

/* --- Deshabilitar will-change una vez visible (evita GPU overhead) --- */
.anim-left.anim-done,
.anim-right.anim-done,
.anim-up.anim-done {
  will-change: auto;
}

/* ============================================
   THC — MOBILE-SPECIFIC POLISH
   Ajustes finos para pantallas < 992px
   ============================================ */

/* fs-lg-4: Bootstrap no incluye esta clase hasta v5.2 — la definimos aquí */
@media (min-width: 992px) {
  .fs-lg-4 {
    font-size: 1.5rem !important;
  }
}

/* Misión/Visión: heading más pequeño en móvil */
@media (max-width: 768px) {
  .identity-section h3.display-5 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }

  /* Hero title: letra más pequeña para que no se corte */
  .hero-main-title .text-white,
  .hero-main-title .text-accent {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  /* Stats glass: distribuir uniformemente */
  .hero-stats-glass .glass-stat {
    flex: 1 1 60px;
    min-width: 60px;
  }

  /* Track box: padding más cómodo */
  .track-box {
    padding: 40px 20px;
  }

  /* Service image: altura fija proporcional */
  .service-image {
    height: 200px;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Process step: centrar en móvil */
  .process-step {
    text-align: center;
  }

  .step-icon-circle {
    margin: 0 auto 16px;
  }

  /* Route smart card tiny: full width en móvil xs */
  .route-smart-card.tiny {
    padding: 16px 18px;
  }

  /* Footer CTA row: botón debajo del texto */
  .footer-cta-card .row {
    flex-direction: column;
    gap: 20px;
  }

  .footer-cta-card .col-lg-4 {
    text-align: left !important;
  }

  /* Features section: reducir padding vertical */
  .features-section.py-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (max-width: 576px) {

  /* Stat value en la sección de estadísticas */
  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  /* Track title */
  .track-title {
    font-size: 1.5rem;
  }

  .track-subtitle {
    font-size: 0.9rem;
  }

  /* Heading de sección: process */
  .process-section h2.display-3 {
    font-size: 1.6rem !important;
  }

  /* Identity section heading */
  .identity-section h2.display-2 {
    font-size: 1.8rem !important;
  }

  /* Sección cobertura heading */
  #cobertura-thc h2.display-5 {
    font-size: 1.4rem !important;
  }

  /* Command center heading */
  .thc-command-center h2.display-4 {
    font-size: 1.5rem !important;
  }

  /* Footer: columnas de links no tan juntas */
  .col-6.col-lg-2,
  .col-6.col-lg-3 {
    padding-right: 8px;
    padding-left: 8px;
  }

  /* Botón "Cotizar Ahora" en sección mapa */
  #cobertura-thc .btn.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  /* Footer bottom: gap entre copyright y links */
  .footer-bottom-bar .container {
    gap: 10px;
  }
}

/* ============================================
   THC — HERO MOBILE PRECISION FIX
   Corrige: título demasiado grande, logo
   encimado, botones sin touch target,
   márgenes laterales insuficientes.
   Solo afecta ≤ 768px / ≤ 480px.
   El diseño desktop (≥ 769px) no cambia.
   ============================================ */

@media (max-width: 768px) {

  /* 1 — TIPOGRAFÍA: título que no llene toda la pantalla */
  .hero-main-title {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
  }

  .hero-main-title .text-white,
  .hero-main-title .text-accent {
    font-size: inherit !important;
  }

  /* 2 — LOGO: reducir para no competir con toggle de menú */
  .logo img,
  .navbar-brand img {
    max-width: 110px !important;
  }

  /* 3 — HEADER: separar contenido del hero del header fijo */
  .hero-section-premium {
    padding-top: 70px !important;
  }

  .hero-content-v2 {
    padding-top: 24px !important;
  }

  /* 4 — LEAD TEXT: ancho completo en móvil */
  .hero-lead-text {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 5 — BOTONES: touch target mínimo 48px */
  .btn-apple-primary,
  .btn-apple-outline {
    min-height: 48px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* 6 — HERO CONTAINER: márgenes laterales mínimos */
  .hero-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {

  /* Reducción extra en pantallas muy pequeñas (≤ 480px) */
  .hero-main-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem) !important;
    letter-spacing: 0 !important;
    margin-bottom: 8px !important;
  }

  .hero-lead-text {
    font-size: 0.78rem !important;
    padding: 7px 11px !important;
    margin-bottom: 12px !important;
    line-height: 1.5 !important;
  }

  /* Logo aún más pequeño en xs */
  .logo img,
  .navbar-brand img {
    max-width: 90px !important;
  }

  /* Stats glass: reducir padding para que quepan los 3 datos */
  .hero-stats-glass {
    padding: 8px 12px !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .glass-stat strong {
    font-size: 1.2rem !important;
  }

  .glass-stat span {
    font-size: 0.68rem !important;
  }

  .btn-apple-primary,
  .btn-apple-outline {
    padding: 9px 18px !important;
    font-size: 0.84rem !important;
  }
}

/* --- CORRECCIÓN PARA CELULARES --- */
@media screen and (max-width: 768px) {

  /* 1. Achicar los títulos gigantes */
  h1,
  h2,
  .display-1,
  .display-2,
  .display-3,
  .display-4,
  .display-5 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-top: 20px !important;
  }

  /* 2. Ajustar la caja oscura para que no pegue con los bordes del teléfono */
  .bg-dark,
  .card,
  div[style*="background"] {
    padding: 1.2rem !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: auto !important;
  }

  /* 3. Separar el logo para que no se encime */
  img {
    max-width: 100% !important;
    margin-bottom: 15px !important;
  }

  /* 4. Botones anchos y fáciles de tocar en celular */
  .btn {
    width: 100% !important;
    display: block !important;
    margin-bottom: 10px !important;
  }
}

/* ============================================
   CONTACT FORM — Botón Enviar
   .btn-header se oculta en ≤1240px por la
   regla del nav; #btn-enviar debe ser visible
   siempre, en todos los tamaños de pantalla.
   ============================================ */
#btn-enviar {
    display: block !important;
    width: 100% !important;
    background: var(--cargo-blue, #1a56db);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 16px 24px !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.15s ease;
    margin-top: 4px;
}
#btn-enviar:hover,
#btn-enviar:focus {
    background: var(--cargo-blue-dark, #1648c0) !important;
    transform: translateY(-1px);
    outline: none;
}
#btn-enviar:active {
    transform: translateY(0);
}