:root {
  --navy: #0b1d36;
  --navy-mid: #122744;
  --navy-deep: #071525;
  --orange: #f26b21;
  --orange-hover: #d95a16;
  --text: #1c2b3a;
  --muted: #6b7785;
  --line: #e6eaf0;
  --whatsapp: #25d366;
  --radius: 10px;
  --shadow: 0 12px 40px rgba(11, 29, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
}

h1, h2, h3, h4, h5, .navbar-brand, .logo-word {
  font-family: "Roboto", system-ui, sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  background: var(--navy);
  color: #d7dde6;
  font-size: 13px;
  padding: 8px 0;
}

.topbar a {
  color: #d7dde6;
}

.topbar a:hover {
  color: var(--orange);
}

.topbar .social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  margin: 0 3px;
}

.site-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(11, 29, 54, 0.08);
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.navbar-brand {
  padding: 0;
}

.sbl-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  max-width: 100%;
}

.sbl-logo svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(11, 29, 54, 0.12));
}

.logo-word span {
  display: block;
  line-height: 1.1;
}

.logo-word .brand {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.logo-word .sub {
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.4px;
}

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 0.7rem 0.75rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.dropdown-item:hover,
.dropdown-item.active {
  color: var(--orange) !important;
}

.dropdown-menu {
  border: 0;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 8px;
}

.dropdown-item {
  font-size: 14px;
  border-radius: 6px;
  padding: 8px 12px;
}

.btn-call {
  background: var(--navy);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 16px !important;
  line-height: 1.15;
  min-width: 170px;
}

.btn-call small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 500;
}

.btn-call:hover {
  background: var(--orange);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-orange:hover {
  background: var(--orange-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  border: 0;
  font-weight: 700;
}

.btn-wa:hover {
  background: #1fb955;
  color: #fff;
}

.hero {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-overlay .container {
  pointer-events: auto;
}

.hero .carousel-item {
  min-height: 620px;
}

.hero-slide {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 37, 0.78) 0%, rgba(7, 21, 37, 0.45) 55%, rgba(7, 21, 37, 0.25) 100%);
}

.hero-content,
.quote-card {
  position: relative;
  z-index: 2;
}

.kicker {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 520px;
}

.quote-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.quote-card .card-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
}

.quote-card .card-body {
  padding: 18px;
}

.quote-card .form-control,
.quote-card .form-select,
.form-control,
.form-select {
  border-radius: 8px;
  border-color: #d9e0e8;
  font-size: 14px;
  padding: 10px 12px;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(242, 107, 33, 0.18);
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 4;
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev { left: 18px; }
.carousel-control-next { right: 18px; }

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card i {
  font-size: 34px;
  color: var(--navy-mid);
  margin-bottom: 12px;
}

.service-card h5 {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  margin: 0;
}

.why-section {
  background: linear-gradient(90deg, rgba(7, 18, 32, 0.92) 0%, rgba(7, 18, 32, 0.78) 52%, rgba(7, 18, 32, 0.55) 100%),
    url("../images/photo-1601584115197-04ecc0da31d7.jpg") center/cover no-repeat;
  color: #fff;
}

.why-item i {
  color: var(--orange);
  font-size: 26px;
}

.why-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0;
}

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

.process-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px dashed #cfd8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 28px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.process-row {
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed #d5dee8;
}

.page-hero {
  background: linear-gradient(90deg, rgba(7, 21, 37, 0.86), rgba(7, 21, 37, 0.55)),
    url("../images/photo-1519003722824-194d4455a60c.jpg") center/cover no-repeat;
  color: #fff;
  padding: 90px 0 70px;
}

.page-hero h1 {
  font-weight: 800;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: var(--orange);
}

.site-footer {
  background: var(--navy-deep);
  color: #c5ced8;
  padding-top: 60px;
}

.site-footer h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.site-footer a {
  color: #c5ced8;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-contact-col {
  padding-top: 40px;
}

@media (max-width: 991.98px) {
  .footer-contact-col {
    padding-top: 0;
  }
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 15px;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding: 16px 0;
  font-size: 13px;
}

.map-box {
  background: #13233a;
  border-radius: 10px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 48px;
  margin-bottom: 12px;
}

/* Contact page */
.contact-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: 0.25s ease;
}

.contact-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.contact-tile .tile-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 107, 33, 0.12);
  color: var(--orange);
  font-size: 24px;
}

.contact-tile h6 {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.contact-tile a,
.contact-tile p {
  color: var(--muted);
  font-size: 14px;
  margin: 2px 0;
  display: block;
}

.contact-tile a:hover {
  color: var(--orange);
}

.form-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.form-assurance div {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-assurance i {
  color: var(--orange);
  margin-right: 6px;
}

.contact-aside {
  background: var(--navy);
  color: #c9d3de;
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.contact-aside h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-aside .aside-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.contact-aside .aside-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.contact-aside .aside-row:last-of-type {
  border-bottom: 0;
}

.contact-aside .aside-row i {
  color: var(--orange);
  font-size: 19px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.contact-aside .aside-row span {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-aside a {
  color: #c9d3de;
}

.contact-aside a:hover {
  color: #fff;
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 10px 0 24px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.contact-hours li:last-child {
  border-bottom: 0;
}

.contact-hours li span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-map {
  background: #eef1f5;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 440px;
  min-height: 320px;
  border: 0;
  display: block;
}

.contact-map .map-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.contact-map .map-link a {
  pointer-events: auto;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-map .map-link a:hover {
  color: var(--orange);
}

@media (max-width: 991.98px) {
  .contact-aside {
    margin-top: 8px;
  }

  .contact-map iframe {
    height: 320px;
  }
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.06);
}

.stat-box {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  height: 100%;
}

.stat-box strong {
  display: block;
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
}

.fleet-card img,
.route-card {
  border-radius: 12px;
}

.fleet-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}

.info-card {
  padding: 24px;
}

.alert-ok {
  display: none;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clients-scroll 24s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.client-logo img:hover {
  transform: scale(1.05);
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 30px)); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-overlay {
    position: relative;
    background: var(--navy);
  }

  .hero .carousel-item,
  .hero-slide {
    min-height: 280px;
    padding: 0;
  }

  .quote-card {
    margin-top: 8px;
  }

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

  .btn-call {
    margin-top: 12px;
  }
}
