/* New Black Hawk Transport website styles */

body {
  font-family: "Roboto", sans-serif;
  color: #1f2937;
  background: #ffffff;
}

body.loading-active {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.72); */
  background: rgba(255, 255, 255, 0.52);
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__backdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.page-loader__logo {
  width: min(220px, 60vw);
  height: auto;
}

.page-loader__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(8, 28, 60, 0.15);
  border-top-color: #081c3c;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  /* padding: 1rem 0; */
}
.sticky-top-header{
    /* position: fixed; */
    /* z-index: 9999 !important; */
    width: 100%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    /* top: 0; */
    background-color: #f6a515;
}

/* Topbar color matching main index hero */
.topbar {
  background: #081c3c !important;
}

/* Glass effect */
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 8px 30px rgba(2,6,23,0.25);
}

/* Header nav styles for contrast */
.site-header .navbar-brand, .site-header .nav-link {
  color: #ffffff;
}
.site-header .nav-link {
  opacity: 0.95;
}
.site-header .nav-link:hover {
  color: #f8f9fa;
  opacity: 1;
}
.site-header .navbar-toggler {
  filter: invert(1) brightness(2);
}

.site-header .dropdown-menu {
  border: 0;
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.site-header .dropdown-item {
  color: #1f2937;
  padding: 0.6rem 1rem;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  background: #f8f9fa;
  color: #081c3c;
}

.navbar-brand {
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}
.logo-img{
  height: 90px;
}

@media (max-width: 991px) {
  .logo-img {
    height: 48px;
  }
}

.hero-section {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(135deg, rgba(8,28,60,0.72) 0%, rgba(8,63,107,0.6) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 2rem 0 4rem;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,28,60,0.78) 0%, rgba(8,63,107,0.62) 100%);
  z-index: 0;
}

.hero-slide > .container {
  position: relative;
  z-index: 1;
}

.hero-slider__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.hero-slider__dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  padding: 0;
}

.hero-slider__dot.active {
  background: #ffffff;
  transform: scale(1.1);
}

.eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.hero-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-section .display-5 {
  color: #fff;
}

.hero-section .lead {
  color: rgba(255,255,255,0.9);
}

.hero-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.stats-row .stat-box {
  background: rgba(255,255,255,0.12);
  border-radius: 1.5rem;
}

.service-card {
  min-height: 250px;
}

.service-card:hover {
  transform: translateY(-6px);
  transition: all 220ms ease;
}

.service-card .card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.icon-box {
  /* width: 3rem;
  height: 3rem; */
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
}
.icon-box .bi{
  font-size: 3.5rem;
}

/* Floating call button */
.floating-call {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(13,110,253,0.28);
  z-index: 1200;
  text-decoration: none;
  font-size: 1.25rem;
}

.floating-call:active, .floating-call:focus {
  transform: scale(0.98);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all 520ms cubic-bezier(.2,.9,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* .icon-box {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
} */

.process-card {
  border: 1px solid rgba(13, 110, 253, 0.15);
}

.info-box {
  min-height: 170px;
}

.quote-form {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

footer.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-link {
  color: #f8f9fa;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.bg-white-10 {
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }
}

.service-detail-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.service-detail-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-detail-card .card-body {
  padding: 2rem;
}

.service-detail-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-detail-card .service-detail-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #081c3c;
  margin-bottom: 0;
}

.service-detail-card .service-detail-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0;
}

.service-detail-card .service-detail-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .service-detail-card img {
    height: 260px;
  }

  .service-detail-card .card-body {
    padding: 1.25rem;
  }
}

.breadcrumb_bg {
    background-image: linear-gradient(135deg, rgba(8, 28, 60, 0.78) 0%, rgba(8, 63, 107, 0.6) 100%), url(../img/banner2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.breadcrumb .breadcrumb_iner_item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.breadcrumb .breadcrumb_iner_item h2 {
    color: #ffffff;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
    .breadcrumb .breadcrumb_iner_item {
        min-height: 200px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .breadcrumb .breadcrumb_iner_item h2 {
        font-size: 48px;
    }
}
.breadcrumb:after {
    /* position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    opacity: .8;
    content: ""; */
}