:root {
  --bg: #f5f7fb;
  --bg-strong: #e3edff;
  --card: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --muted: #030303;
  --text: #0b3858;
  --accent: #2998ff;
  --accent-soft: rgba(41, 152, 255, 0.12);
  --accent-dark: #0054c7;
  --danger: #ef4444;
  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.12);
  --container: 1450px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --turbo-bg: #0f1014;
  --turbo-primary: #6366f1;
  --turbo-success: #10b981;
  --turbo-accent: #06b6d4;
  --turbo-white: #ffffff;
  --fs-md: 1.1rem;
  --fs-base: 1.5rem;
  --fs-sm: 1.2rem;
  --fs-xs: 0.82rem;
  --fs-tiny: 0.75rem;
  --success: #10b981;
  --warning: #f59e0b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}



.site-banner {
  background: linear-gradient(90deg, var(--text), var(--accent-dark));
  color: white;
  font-size: 0.9rem;
  padding: 10px 0;
}

.site-banner__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.site-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.site-banner__btn {
  background: white;
  color: var(--text);
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

.site-banner__close {
  background: none;
  border: none;
  color: white;
  opacity: 0.7;
  font-size: 1rem;
}



.site-header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  padding: 0 20px;
  pointer-events: none;
}


.site-nav {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  max-height: 75vh;
  -webkit-overflow-scrolling: touch;
}

.brand {
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}

.brand__logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  display: block;
}


.nav-main {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-main>li {
  position: relative;
  padding: 0.5rem 0;
}


.nav-main a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  padding: 8px 0;
}

.nav-main a:hover {
  color: var(--accent);
}

.nav-main i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.dropdown:hover>a>i {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);

}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(41, 152, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
}

.nav-toggle {
  margin-right: 20px;
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 11000;
}

.nav-toggle__bars {
  width: 26px;
  height: 20px;
  position: relative;
}

.nav-toggle__bars span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 4px;
  transition: 0.35s ease;
}

.nav-toggle__bars span:nth-child(1) {
  top: 0;
}

.nav-toggle__bars span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle__bars span:nth-child(3) {
  bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: -50px;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 101;
}

.dropdown-row {
  position: absolute;
  top: 120%;
  left: -50px;
  width: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 101;
}

.drop-col {
  min-width: 160px;
}

.drop-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.drop-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drop-col ul li {
  margin-bottom: 0.45rem;
}

.drop-col ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: 0.2s ease;
}

.drop-col ul li a:hover {
  background: rgba(41, 152, 255, 0.08);
  border-left: 3px solid var(--accent);
  color: var(--accent);
  padding-left: 0.5rem;
}



.smart-logistics-cta {
  background: radial-gradient(circle at top center, #1e1b4b 0%, #0f1014 80%);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  color: var(--turbo-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smart-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.turbo-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.turbo-gradient-text {
  background: linear-gradient(135deg, #a5b4fc, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.turbo-subtext {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

.logistics-visual-track {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.turbo-track-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #334155;
  border-radius: 4px;
  transform: translateY(-50%);
}

.turbo-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--turbo-success);
  box-shadow: 0 0 15px var(--turbo-success);
  border-radius: 4px;
  animation: fillRoute 6s linear infinite;
}

.turbo-rig-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 60px;
  z-index: 5;
  animation: moveRig 6s linear infinite;
}

.turbo-truck-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.trailer {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 45px;
  background: linear-gradient(180deg, #fff, #e2e8f0);
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hint {
  color: var(--turbo-primary);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
}

.cab {
  position: absolute;
  bottom: 15px;
  right: 5px;
  width: 25px;
  height: 35px;
  background: var(--turbo-primary);
  border-radius: 4px 8px 4px 4px;
}

.wheels {
  position: absolute;
  bottom: 5px;
  width: 14px;
  height: 14px;
  background: #1e293b;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  animation: spinWheels 0.5s linear infinite;
}

.wheels.front {
  right: 8px;
}

.wheels.back {
  left: 5px;
}

.wheels.back-2 {
  left: 22px;
}

.money-particle {
  position: absolute;
  top: 0;
  left: 50%;
  color: var(--turbo-success);
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
}

.p1 {
  animation: floatMoney 1.5s ease-out infinite;
  animation-delay: 0.5s;
}

.p2 {
  animation: floatMoney 1.5s ease-out infinite;
  animation-delay: 1.0s;
}

.p3 {
  animation: floatMoney 1.5s ease-out infinite;
  animation-delay: 2.5s;
}

.turbo-destination-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--turbo-white);
  border-radius: 50%;
  z-index: 4;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--turbo-white);
  animation: dotPulse 2s infinite;
}

.turbo-btn-main {
  background: var(--turbo-primary);
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  transition: all 0.3s ease;
}

.turbo-btn-main:hover {
  transform: translateY(-3px) scale(1.05);
  background: #4f46e5;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.7);
}

.turbo-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
}

@keyframes moveRig {
  0% {
    left: 0%;
  }

  100% {
    left: 90%;
  }
}

@keyframes fillRoute {
  0% {
    width: 0%;
  }

  100% {
    width: 90%;
  }
}

@keyframes spinWheels {
  0% {
    transform: rotate(0deg);
    border-style: dashed;
  }

  100% {
    transform: rotate(360deg);
    border-style: dashed;
  }
}

@keyframes floatMoney {
  0% {
    transform: translate(-50%, 0) scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -40px) scale(1.2);
    opacity: 0;
  }
}

@keyframes dotPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .turbo-heading {
    font-size: 2rem;
  }

  .logistics-visual-track {
    height: 100px;
  }
}

@media (min-width: 961px) {

  .dropdown:hover .dropdown-menu,
  .dropdown:hover .dropdown-row {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  font-size: var(--fs-base);
  margin-top: 4rem;
}

.footer-search {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.footer-search h3 {
  color: white;
  font-size: var(--fs-lg);
  margin-bottom: 1.5rem;
}

.footer-search__box {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 99px;
}

.footer-search__box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  outline: none;
  font-size: var(--fs-base);
}

.footer-search__box button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
  list-style: none;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  font-size: var(--fs-sm);
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}



.footer-social {
  text-align: center;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none !important;
  transition: 0.3s ease;
  font-size: var(--fs-lg);
}

.social:hover {
  background: var(--accent);
  transform: translateY(-3px);
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: var(--fs-md);

}

.footer-bottom p {
  font-size: var(--fs-md);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }


  .nav-main {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    margin-top: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    max-height: 80vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }


  .nav-main.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-main>li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
  }

  .nav-main>li:last-child {
    border-bottom: none;
  }


  .dropdown-menu,
  .dropdown-row {
    position: static;
    width: 100%;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1rem;
    margin-top: 10px;
    gap: 1rem;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    flex-direction: column;
  }

  .dropdown.open .dropdown-menu,
  .dropdown.open .dropdown-row {
    display: flex;
  }

  .drop-col {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding-inline: 1rem;
  }
}
.site-header,
.site-nav,
.nav-main,
.dropdown,
.dropdown>a,
.dropdown-menu,
.dropdown-row {
  pointer-events: auto !important;
}
