/* ================================================== */
 /* JetCargo */
 /* ================================================== */
 /* @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=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   1. FONTS & VARIABLES
   ============================================ */
:root {
  --cargo-main: #003d7c;
  --cargo-cream: #F8FAFC;
  --cargo-white: #FFFFFF;
  --cargo-ink: #030712;
  --cargo-ink-light: #1f2937;
  --cargo-brown: #0B1E36;
  --cargo-brown-dark: #000914;
  --cargo-brown-light: #0f294a;
  --cargo-blue: #e60028;
  --cargo-blue-dark: #b3001e;
  --cargo-blue-light: #ff4d6a;
  --cargo-gold: #0EA5E9;
  --cargo-muted: #4b5563;
  --cargo-border: #f1f5f9;
  --cargo-shadow: rgba(0, 61, 124, 0.04);
  --cargo-shadow-lg: rgba(0, 61, 124, 0.09);
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-display: 'Outfit', 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: 12px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 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);
}

/* ==========================================================================
   UNIVERSAL TRANSITION ENFORCEMENT FOR ALL ANIMATED & INTERACTIVE ELEMENTS
   ========================================================================== */
a,
button,
input,
select,
textarea,
.btn,
.btn *,
.btn::before,
.btn::after,
.nav-link,
.nav-link::before,
.nav-link::after,
.social-icon,
.social-icon::before,
.social-icon::after,
.social-icon i,
.menu-toggle,
.progress-wrap,
.progress-wrap::before,
.progress-wrap::after,
.whatsapp-float,
.feature-card,
.feature-icon,
.feature-number,
.service-card,
.service-image img,
.service-overlay,
.service-icon,
.service-content,
.service-link,
.service-link i,
.team-card,
.team-card::before,
.team-image,
.team-image::before,
.team-image::after,
.team-image img,
.team-overlay,
.team-badge,
.team-info,
.team-name,
.team-name::after,
.team-nav,
.team-nav::before,
.card-shine,
.blog-card,
.blog-image img,
.testimonial-card,
.stat-card,
.stat-icon-wrap,
.glass-card,
.dark-glass-card,
.accordion-item,
.accordion-button,
.accordion-button::after,
.accordion-collapse,
.accordion-body,
.form-control,
.form-select,
.cat-list a,
.service-list-widget a,
.sidebar-widget,
.brochure-btn,
.brochure-btn *,
.hero-slider-nav,
.swiper-pagination-bullet,
.swiper-button-next,
.swiper-button-prev,
.topbar-contact a,
.topbar-social a,
.footer-links a,
.contact-info-card,
.process-step,
.pricing-card,
.hero-quick-quote-bar,
.hero-quick-quote-bar *,
.blob-1,
.blob-2,
.fade-on-scroll,
.counter-animate,
.section-label,
[class*="animate"],
[style*="animation"] {
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   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: 6px;
}

.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: 1px;
}

.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;
}

.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: 72px; /* Starts below the topbar */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 48px);
  max-width: 1240px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 32px;
  border-radius: 100px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 18, 39, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

.cargo-header.header-sticky {
  top: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 32px;
  box-shadow: 0 15px 40px rgba(0, 30, 60, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

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

/* 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: 180px;
  height: auto;
}

.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: block; /* Keep displaying horizontal logo since pill is white */
}

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

/* 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.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0b1c30 !important;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

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

/* Dropdown Menu */
.nav-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  list-style: none;
  margin: 15px 0 0 0;
  padding: 14px 0;
  box-shadow: 0 20px 45px rgba(0, 30, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.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-main);
  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: linear-gradient(135deg, var(--cargo-blue) 0%, var(--cargo-blue-light) 100%);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 100px;
  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 18px rgba(230, 0, 40, 0.2), 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: linear-gradient(135deg, var(--cargo-blue-dark) 0%, var(--cargo-blue) 100%);
  box-shadow: 0 10px 24px rgba(230, 0, 40, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px) scale(1.02);
}

.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: 12rem 0 7rem;
}

.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-centered .hero-title,
.hero-centered .hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Initial hidden state before slider animate is active */
.hero-enter .hero-label,
.hero-enter .hero-title .title-line,
.hero-enter .hero-description,
.hero-enter .hero-buttons .btn-hero,
.hero-enter .hero-stats,
.hero-enter .hero-quick-quote-bar {
  opacity: 0;
}

.hero-enter.is-hero-visible .hero-label,
.hero-enter.is-hero-visible .hero-description,
.hero-enter.is-hero-visible .hero-stats,
.hero-enter.is-hero-visible .hero-quick-quote-bar {
  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; }
.hero-enter.is-hero-visible .hero-quick-quote-bar { animation-delay: 0.15s; }

@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: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 48px 32px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 18, 39, 0.04);
  border-radius: 24px;
  text-align: -webkit-center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 18, 39, 0.03);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 18, 39, 0.1);
  border-color: rgba(230, 0, 40, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(230, 0, 40, 0.08) 0%, rgba(0, 61, 124, 0.08) 100%);
  border: 1px solid rgba(230, 0, 40, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cargo-blue);
  margin-bottom: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--cargo-blue) 0%, #b80018 100%);
  color: var(--cargo-white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(230, 0, 40, 0.3);
}

.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: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 18, 39, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 18, 39, 0.12);
  border-color: rgba(230, 0, 40, 0.1);
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.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.4) 100%);
  transition: var(--transition);
  opacity: 0.8;
}

.service-card:hover .service-overlay {
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(230, 0, 40, 0.2) 0%, rgba(0, 18, 39, 0.6) 100%);
}

.service-icon {
  position: absolute;
  top: 222px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cargo-blue) 0%, #b80018 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--cargo-white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(230, 0, 40, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(230, 0, 40, 0.45);
}

.service-content {
  padding: 44px 32px 36px 32px;
  border-bottom: none !important;
  transition: var(--transition);
}

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

.service-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: var(--space-lg);
}

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

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

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

/* ============================================
   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.0625rem;
  line-height: 1.8;
  color: var(--cargo-muted);
  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;
}

.service-section {
  background: var(--cargo-white);
}

/* ============================================
   22. PAGE HEADER
   ============================================ */
.page-header {
  position: relative;
  padding: 200px 0 100px;
  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: linear-gradient(135deg, rgba(2, 9, 18, 0.9) 0%, rgba(0, 61, 124, 0.65) 100%);
}

.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: 380px;
  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: 35px 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;
  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;
}

.form-control, .form-select {
  line-height: 1.75;
  padding: 12px 20px;
  background-color: #fcfdfe;
  border: 1px solid rgba(0, 61, 124, 0.1) !important;
  border-radius: 8px !important;
  font-size: 0.9375rem;
  color: var(--cargo-ink);
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background-color: var(--cargo-white);
  border-color: var(--cargo-main) !important;
  box-shadow: 0 0 0 4px rgba(0, 61, 124, 0.08) !important;
  outline: none;
}

/* ============================================
   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: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cargo-white) 0%, #FDFBF9 100%);
  border: 2px solid var(--cargo-main);
  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;
}

.step-h5 {
  color: var(--cargo-main);
}

.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: #020912;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cargo-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.55);
}

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

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

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Glowing WhatsApp Badge Button inside Footer */
.footer-wa-btn {
  background: #25d366 !important;
  color: #fff !important;
  border-radius: 100px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  border: none;
}

.footer-wa-btn:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

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

.footer-bottom {
  padding: var(--space-xl) 0;
  background: #01050a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.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;
}

.contact-info-item a {
  color: var(--cargo-muted);
}
  a:hover {
  color: var(--cargo-blue);
}

/* 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: 12px !important;
    left: 12px !important;
    right: 12px !important;
    margin: 0 !important;
    width: auto !important;
    transform: none !important;
    border-radius: 16px !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  }

  body.mobile-menu-open .cargo-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    background: var(--cargo-white) !important;
    padding: 16px 20px !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid var(--cargo-border) !important;
  }

  body.mobile-menu-open .cargo-header .logo {
    position: relative !important;
    z-index: 9999 !important;
  }

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

  .topbar-grid, .cargo-topbar {
    display: none !important;
  }

  .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: flex !important;
    flex-direction: column !important;
    padding: 16px 20px 36px !important;
    gap: 10px !important;
  }

  .main-nav.mobile-open .nav-menu > li {
    padding: 0 !important;
    border-bottom: none !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .main-nav.mobile-open .nav-menu > li > a,
  .main-nav.mobile-open .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    color: var(--cargo-ink) !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 14px !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .main-nav.mobile-open .nav-menu > li > a.active,
  .main-nav.mobile-open .nav-menu > li > a:hover,
  .main-nav.mobile-open .nav-link.active,
  .main-nav.mobile-open .nav-link:hover {
    color: var(--cargo-blue) !important;
    background: rgba(225, 29, 72, 0.08) !important;
  }

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

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

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

  .main-nav.mobile-open .nav-menu ul {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin: 6px 0 10px !important;
    padding: 8px 0 !important;
    display: none;
    background: rgba(15, 23, 42, 0.02) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
  }

  .main-nav.mobile-open .nav-menu li.open > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .main-nav.mobile-open .nav-menu ul li {
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .main-nav.mobile-open .nav-menu ul li a {
    display: block !important;
    padding: 10px 22px !important;
    border-bottom: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--cargo-muted) !important;
    border-radius: 8px !important;
    margin: 0 8px !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
  }

  .main-nav.mobile-open .nav-menu ul li a:hover,
  .main-nav.mobile-open .nav-menu ul li a.active {
    color: var(--cargo-blue) !important;
    background: rgba(225, 29, 72, 0.06) !important;
  }

  .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(233, 87, 33, 0.5);
  }

  .menu-toggle i {
    color: #323b7e !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. SCROLL ANIMATIONS
   ============================================ */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Staggered animations for grid children */
.fade-on-scroll.visible .service-card:nth-child(1),
.fade-on-scroll.visible .process-step:nth-child(1),
.fade-on-scroll.visible .feature-card:nth-child(1),
.fade-on-scroll.visible .stat-card:nth-child(1),
.fade-on-scroll.visible .team-card:nth-child(1) { animation-delay: 0.0s; }

.fade-on-scroll.visible .service-card:nth-child(2),
.fade-on-scroll.visible .process-step:nth-child(2),
.fade-on-scroll.visible .feature-card:nth-child(2),
.fade-on-scroll.visible .stat-card:nth-child(2),
.fade-on-scroll.visible .team-card:nth-child(2) { animation-delay: 0.1s; }

.fade-on-scroll.visible .service-card:nth-child(3),
.fade-on-scroll.visible .process-step:nth-child(3),
.fade-on-scroll.visible .feature-card:nth-child(3),
.fade-on-scroll.visible .stat-card:nth-child(3),
.fade-on-scroll.visible .team-card:nth-child(3) { animation-delay: 0.18s; }

.fade-on-scroll.visible .service-card:nth-child(4),
.fade-on-scroll.visible .process-step:nth-child(4),
.fade-on-scroll.visible .feature-card:nth-child(4),
.fade-on-scroll.visible .stat-card:nth-child(4),
.fade-on-scroll.visible .team-card:nth-child(4) { animation-delay: 0.26s; }

.fade-on-scroll.visible .service-card:nth-child(5),
.fade-on-scroll.visible .process-step:nth-child(5),
.fade-on-scroll.visible .feature-card:nth-child(5) { animation-delay: 0.32s; }

.fade-on-scroll.visible .service-card:nth-child(6),
.fade-on-scroll.visible .process-step:nth-child(6),
.fade-on-scroll.visible .feature-card:nth-child(6) { animation-delay: 0.38s; }

/* Staggered children animation for grids */
.fade-on-scroll.visible .process-step,
.fade-on-scroll.visible .feature-card,
.fade-on-scroll.visible .service-card,
.fade-on-scroll.visible .stat-card,
.fade-on-scroll.visible .team-card {
  animation: fadeInUpChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  opacity: 0;
}

@keyframes fadeInUpChild {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

/* Shimmer effect for image reveals */
.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;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.03);
}

.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;
  transform: scale(1);
}

/* Premium floating animation for stat icons */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.stat-icon-wrap {
  animation: floatIcon 3s ease-in-out infinite;
}
.stat-card:nth-child(1) .stat-icon-wrap { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon-wrap { animation-delay: 0.4s; }
.stat-card:nth-child(3) .stat-icon-wrap { animation-delay: 0.8s; }
.stat-card:nth-child(4) .stat-icon-wrap { animation-delay: 1.2s; }

/* Pulse animation for CTA buttons */
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 4px 20px rgba(230, 0, 40, 0.3); }
  50% { box-shadow: 0 8px 35px rgba(230, 0, 40, 0.55); }
}

/* Smooth hover on service cards */
.service-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Smooth hover on feature cards */
.feature-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ============================================
   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(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.stat-icon-wrap {
    font-size: 2.25rem;
    color: var(--cargo-blue);
    margin-bottom: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 4px 10px rgba(230, 0, 40, 0.3));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 991px) {
    .track-stats-container {
        flex-direction: column;
    }
    .stats-box {
        padding: var(--space-4xl) 30px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .track-title {
        font-size: 2rem;
    }
}

/* ============================================
   15. TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonials-slider-wrap {
  position: relative;
  padding: 0 56px;
}

.testimonials-slider {
  padding-bottom: 56px;
}

.testimonials-slider .swiper-slide {
  height: auto;
}

.testimonials-pagination {
  bottom: 0 !important;
}

.testimonial-card {
  background: #fff;
  padding: 28px 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 61, 124, 0.08);
  box-shadow: 0 8px 32px rgba(0, 61, 124, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(230, 0, 40, 0.08);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 61, 124, 0.1);
  border-color: rgba(230, 0, 40, 0.15);
}

.testimonial-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.testimonial-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0c1c2e;
  background: rgba(0, 61, 124, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 61, 124, 0.04);
}

.testimonial-route i {
  color: var(--cargo-blue);
  font-size: 0.7rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--cargo-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cargo-border);
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cargo-main) 0%, var(--cargo-brown-light) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.testimonial-footer .author-pos {
  font-size: 0.78rem;
  color: var(--cargo-muted);
  font-weight: 500;
  margin-bottom: 0;
}

.testimonials-button-next,
.testimonials-button-prev {
  color: var(--cargo-main);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 61, 124, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  top: 42%;
}

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

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

/* Shipments chips */
.shipments-block-title {
  color: var(--cargo-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.shipments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .shipments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shipment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(0, 61, 124, 0.08);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cargo-ink-light);
  transition: all 0.3s ease;
}

.shipment-chip:hover {
  border-color: rgba(230, 0, 40, 0.2);
  box-shadow: 0 6px 20px rgba(0, 61, 124, 0.08);
  transform: translateY(-2px);
}

.shipment-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(230, 0, 40, 0.08);
  color: var(--cargo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* 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: 24px;
  height: 8px;
  background: var(--cargo-blue);
  border-radius: 100px;
}

.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;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 992px) {
  .faq-layout {
    grid-template-columns: 360px 1fr;
    gap: 64px;
  }
}

.faq-intro .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.faq-intro-text {
  color: var(--cargo-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.faq-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.faq-stat-card {
  background: linear-gradient(135deg, rgba(0, 61, 124, 0.04) 0%, rgba(230, 0, 40, 0.04) 100%);
  border: 1px solid rgba(0, 61, 124, 0.08);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.faq-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cargo-main);
  line-height: 1.1;
}

.faq-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cargo-muted);
  margin-top: 4px;
}

.faq-cta-btn {
  border-radius: 100px;
}

.faq-accordion-wrap {
  background: #f8fafc;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 61, 124, 0.06);
}

@media (min-width: 768px) {
  .faq-accordion-wrap {
    padding: 28px;
  }
}

.faq-accordion .faq-item {
  background: #fff;
  border: 1px solid rgba(0, 61, 124, 0.06) !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.faq-accordion .faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(230, 0, 40, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 61, 124, 0.06);
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cargo-ink);
  background: #fff;
  padding: 18px 20px;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--cargo-main);
  background: #fff;
}

.faq-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(230, 0, 40, 0.08);
  color: var(--cargo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-item-icon {
  background: var(--cargo-blue);
  color: #fff;
}

.faq-item-question {
  flex: 1;
  text-align: left;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003d7c'%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;
}

.faq-accordion .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='%23e60028'%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");
}

.faq-accordion .accordion-body {
  padding: 0 20px 18px 70px;
  color: var(--cargo-muted);
  line-height: 1.75;
  font-size: 0.9rem;
  visibility: visible !important;
}

@media (max-width: 575px) {
  .testimonials-slider-wrap {
    padding: 0;
  }

  .testimonials-button-next,
  .testimonials-button-prev {
    display: none;
  }

  .faq-accordion .accordion-body {
    padding: 0 20px 18px 20px;
  }
}

.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='%23e95721'%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;
  margin-top: 72px !important;
}

.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;
  }
}

/* ==================================================
   SAHIL ENTERPRISE PREMIUM EXTENSIONS
   ================================================== */
/* Premium subtle dot-grid background texture for content sections */
.services-section, 
.process-section, 
.why-choose-section {
  position: relative;
}

.services-section::before, 
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 61, 124, 0.02) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Smooth premium card shadows and hover lift */
.team-card {
  box-shadow: 0 10px 30px -10px rgba(0, 61, 124, 0.06) !important;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease !important;
  border: 1px solid rgba(0, 61, 124, 0.03);
}

.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px -12px rgba(0, 61, 124, 0.12) !important;
  border-color: rgba(230, 0, 40, 0.1);
}

/* Premium gradient lines for cards */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cargo-main) 0%, var(--cargo-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

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

/* Premium ambient backdrop blobs */
.decorative-blob {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(150px);
  opacity: 0.05;
}

.blob-1 {
  background: var(--cargo-main);
  top: 15%;
  left: -200px;
}

.blob-2 {
  background: var(--cargo-blue);
  bottom: 15%;
  right: -200px;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 15px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  animation: waPulse 2s infinite;
}

body:has(.progress-wrap.active-progress) .whatsapp-float,
.whatsapp-float.active-progress {
  bottom: 75px !important;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.6);
  transform: translateY(-5px) scale(1.05);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer WhatsApp Pill Button */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-wa-btn:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.4);
}

/* Brand Marquee Slider */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: #f8fafc;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 61, 124, 0.05);
  border-bottom: 1px solid rgba(0, 61, 124, 0.05);
  position: relative;
  z-index: 10;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  gap: 80px;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

.marquee-item:hover {
  opacity: 0.95;
  filter: grayscale(0%);
}

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

/* Service Page Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-widget {
  background: var(--cargo-white);
  border: 1px solid rgba(0, 61, 124, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px -10px rgba(0, 61, 124, 0.04);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cargo-border);
  position: relative;
}

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

.service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-menu li {
  margin-bottom: 0;
}

.service-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 18, 39, 0.05);
  border-radius: 14px;
  color: #0c1c2e;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.service-menu li a:hover, 
.service-menu li.active a {
  background: linear-gradient(135deg, var(--cargo-blue) 0%, #b80018 100%);
  color: #fff !important;
  border-color: transparent;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(230, 0, 40, 0.18);
}

.help-widget {
  background: linear-gradient(135deg, #020912 0%, #001227 100%);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 15px 35px rgba(0, 18, 39, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.help-widget-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.help-widget-icon {
  font-size: 3rem;
  color: var(--cargo-blue-light);
  margin-bottom: 20px;
  animation: bounce-icon 2s infinite;
}

.help-widget-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 15px;
  display: block;
  text-decoration: none;
}

.help-widget-phone:hover {
  color: var(--cargo-blue-light) !important;
}

/* Premium Accordion Styling */
.accordion-item {
    border: 1px solid rgba(0, 61, 124, 0.05) !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 20px -2px rgba(11, 30, 54, 0.03) !important;
    transition: all 0.3s ease !important;
    background: var(--cargo-white) !important;
}

.accordion-item:hover {
    box-shadow: 0 10px 30px -5px rgba(11, 30, 54, 0.06) !important;
    border-color: rgba(0, 61, 124, 0.15) !important;
}

.accordion-button {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: var(--cargo-main) !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    background-color: var(--cargo-white) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8fafc !important;
    color: var(--cargo-blue) !important;
    border-left: 4px solid var(--cargo-blue) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button::after {
    background-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.accordion-body {
    padding: 20px 24px !important;
    background-color: var(--cargo-white) !important;
    color: var(--cargo-ink) !important;
    font-family: var(--font-primary) !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    border-top: 1px solid rgba(0, 61, 124, 0.05) !important;
}

/* ==================================================
   SAHIL ENTERPRISE MOBILE & PREMIUM RESPONSIVE FIXES
   ================================================== */
@media (max-width: 768px) {
  .topbar-email {
    display: none !important;
  }
  
  .cargo-topbar {
    display: none !important;
  }

  .topbar-grid {
    padding: 8px 0;
    justify-content: center;
    gap: 15px;
  }
  
  .topbar-left {
    gap: 10px;
  }

  /* Preloader logo optimization */
  .loader-logo img {
    max-width: 200px !important;
    height: auto !important;
  }

  /* Hero adjustments for mobile */
  .hero-slider-content {
    padding: 8rem 0 4rem !important;
  }

  .hero-title {
    font-size: 2.25rem !important;
    margin-bottom: var(--space-xl) !important;
  }

  .hero-description {
    font-size: 1rem !important;
    margin-bottom: var(--space-2xl) !important;
  }

  .btn-hero {
    padding: 12px 24px !important;
    font-size: 13px !important;
  }

  /* WhatsApp button shift to avoid overlap */
  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 12px !important;
    font-size: 24px !important;
  }

  body:has(.progress-wrap.active-progress) .whatsapp-float,
  .whatsapp-float.active-progress {
    bottom: 72px !important;
  }
  
  .progress-wrap {
    width: 40px !important;
    height: 40px !important;
    bottom: 20px !important;
    right: 12px !important;
  }
  
  .progress-wrap::after, .progress-wrap::before {
    line-height: 40px !important;
    font-size: 16px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 1124px) {
  .menu-toggle {
    border-color: var(--cargo-main) !important;
  }
  
  .menu-toggle.active {
    background: var(--cargo-blue) !important;
    border-color: var(--cargo-blue) !important;
  }

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

  body.mobile-menu-open .menu-toggle i {
    color: #fff !important;
  }

  .main-nav.mobile-open {
    padding-top: 80px;
  }

  .cargo-header .logo img.logo {
    max-width: 160px;
  }

  .cargo-header .logo img.logo-dark {
    max-width: 160px;
  }
}

/* Tablet / Medium Breakpoints columns */
@media (min-width: 768px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* Smooth glassmorphic effect on sidebar widgets */
.sidebar-widget {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 61, 124, 0.08) !important;
  box-shadow: 0 10px 30px -15px rgba(0, 61, 124, 0.08) !important;
}

/* Glass effect for help-widget */
.help-widget {
  background: linear-gradient(135deg, #020912 0%, #001227 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Spacing fixes for CTA and FAQ sections */
.faq-section {
  padding-bottom: var(--space-3xl) !important; /* 72px above the card */
}

.service-section {
  padding-bottom: var(--space-3xl) !important; /* 72px above the card */
}

.section-padding.pt-0 {
  padding-bottom: var(--space-2xl) !important; /* 48px below the card */
}

/* ==================================================
   HERO QUICK QUOTE BAR GLASSMORPHISM
   ================================================== */
.hero-quick-quote-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
  max-width: 720px;
  width: 100%;
  margin: 35px auto 0 auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-quick-quote-bar select {
  background: transparent;
  border: none !important;
  color: #fff !important;
  font-size: 0.9rem;
  padding: 10px 16px;
  outline: none !important;
  flex: 1.2;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hero-quick-quote-bar select option {
  background: #001227;
  color: #fff;
}

.hero-quick-quote-bar input {
  background: transparent;
  border: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 0.9rem;
  padding: 10px 20px;
  outline: none !important;
  flex: 1;
}

.hero-quick-quote-bar input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-quick-quote-bar .quick-wa-btn {
  background: var(--cargo-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 0, 40, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-quick-quote-bar .quick-wa-btn:hover {
  background: var(--cargo-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 0, 40, 0.4);
}

@media (max-width: 991px) {
  .hero-quick-quote-bar {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.6);
    margin-top: 25px !important;
    gap: 12px;
    box-sizing: border-box !important;
    align-items: stretch !important;
    width: 100%;
  }
  
  .hero-quick-quote-bar select {
    width: auto !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 12px 10px;
    text-align: center;
    box-sizing: border-box !important;
  }
  
  .hero-quick-quote-bar input {
    width: auto !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 12px 10px;
    text-align: center;
    box-sizing: border-box !important;
  }
  
  .hero-quick-quote-bar .quick-wa-btn {
    width: auto !important;
    justify-content: center;
    margin-top: 4px;
    padding: 14px;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }
}

/* GST Card Premium Layout Extension */
.gst-feature-card {
  display: flex !important;
  align-items: center;
  text-align: left !important;
  gap: 32px;
  padding: 32px 40px !important;
  border-left: 5px solid #e60028 !important; /* Crimson Red GST Highlight! */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%) !important;
}

.gst-feature-card .feature-icon {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.gst-feature-card .feature-title {
  margin-top: 0 !important;
  margin-bottom: 8px;
  text-align: left !important;
}

.gst-feature-card .feature-description {
  margin-bottom: 0;
  text-align: left !important;
}

@media (max-width: 768px) {
  .gst-feature-card {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px;
    padding: 32px 24px !important;
    border-left: none !important;
    border-top: 5px solid #e60028 !important; /* Top border for mobile */
  }

  .gst-feature-card .feature-title,
  .gst-feature-card .feature-description {
    text-align: center !important;
  }
}

/* Booking Channel Card Style */
.booking-channel-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 18, 39, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 18, 39, 0.06);
  border-color: rgba(230, 0, 40, 0.12) !important;
  background: #fff;
}

/* Service Info Card Style */
.service-info-card {
  padding: 32px 24px;
  border: 1px solid rgba(0, 61, 124, 0.04) !important;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 18, 39, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.service-info-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 18, 39, 0.06);
  border-color: rgba(230, 0, 40, 0.12) !important;
}


/* ============================================================
   NEW PREMIUM SECTIONS — WHY CHOOSE SPLIT + MORBI SPECIALTY
   ============================================================ */

/* Why Choose Us — Premium Split Layout */
.why-choose-inner {
  display: flex;
  min-height: 580px;
  align-items: stretch;
}

.why-choose-img-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.why-choose-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-img-col:hover img {
  transform: scale(1.04);
}

.why-choose-img-badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: var(--cargo-blue);
  color: white;
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(230, 0, 40, 0.4);
}

.why-choose-img-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.why-choose-img-badge .badge-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.why-choose-text-col {
  flex: 0 0 50%;
  padding: var(--space-5xl) var(--space-4xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cargo-cream);
}

.why-choose-list {
  margin-bottom: var(--space-2xl);
}

/* Morbi Tile Specialty Section */
.morbi-specialty-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.morbi-specialty-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.morbi-specialty-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.morbi-specialty-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 10, 25, 0.92) 0%, rgba(5, 10, 25, 0.6) 70%, rgba(5, 10, 25, 0.35) 100%);
}

.morbi-specialty-content {
  position: relative;
  z-index: 10;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.morbi-specialty-text {
  max-width: 640px;
}

.morbi-stat-row {
  display: flex;
  gap: 48px;
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.morbi-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.morbi-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.morbi-stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .why-choose-inner {
    flex-direction: column;
    min-height: unset;
  }
  .why-choose-img-col {
    flex: 0 0 auto;
    height: 380px;
  }
  .why-choose-text-col {
    flex: 0 0 auto;
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .why-choose-img-col {
    height: 260px;
  }
  .why-choose-img-badge {
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
  }
  .why-choose-img-badge .badge-number {
    font-size: 1.8rem;
  }
  .why-choose-text-col {
    padding: var(--space-2xl) var(--space-lg);
  }
  .morbi-specialty-section {
    min-height: 480px;
  }
  .morbi-stat-row {
    gap: 28px;
  }
  .morbi-stat-num {
    font-size: 1.6rem;
  }
}

/* ============================================================
   GLOBAL MICRO-ANIMATION IMPROVEMENTS
   ============================================================ */

/* Enhanced btn hover with magnetic lift */
.btn-hero {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease !important;
}

.btn-hero:hover {
  transform: translateY(-3px) !important;
}

.btn-hero:active {
  transform: translateY(-1px) !important;
}

/* Smooth image hover zoom on about image */
.about-image-col {
  overflow: hidden;
  border-radius: 20px;
}

.about-image {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-image-col:hover .about-image {
  transform: scale(1.04) !important;
}

/* Service card image smooth zoom */
.service-card .service-image {
  overflow: hidden;
}

.service-card .service-image img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover .service-image img {
  transform: scale(1.07) !important;
}

/* Team card image hover */
.team-card .team-image {
  overflow: hidden;
}

.team-card .team-image img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.team-card:hover .team-image img {
  transform: scale(1.05) !important;
}

/* Smooth link underline slide on nav */
.nav-menu > li > a {
  transition: color 0.3s ease !important;
}

/* Smooth background slide on header scroll */
.cargo-header {
  transition: background 0.5s ease, box-shadow 0.5s ease, top 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease, border-color 0.5s ease !important;
}

/* Enhanced process icon hover */
.process-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease !important;
}

.process-step:hover .process-icon {
  transform: translateY(-6px) scale(1.05) !important;
}

/* FAQ accordion smooth icon rotate */
.accordion-button::after {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Testimonial card hover lift */
.testimonial-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0, 18, 39, 0.1) !important;
}

/* WhatsApp float button pulse */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}

.whatsapp-float {
  animation: waPulse 2.5s ease-in-out infinite;
}

/* Scroll to top button smooth animation */
.progress-wrap {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.progress-wrap:hover {
  transform: scale(1.12) !important;
}

/* Page header parallax setup */
.page-header {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .page-header {
    background-attachment: scroll; /* Fix mobile parallax flicker */
  }
}

/* Section label animation */
.section-label {
  transition: letter-spacing 0.5s ease;
}

/* Counter number animation smoothness */
.counter-animate {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}


