.header-top {
  background-color: #fff;
}

.transport-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

/* Кнопка дзвінка */
.btn-call {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #ff9900;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    z-index: 0;
    font-size: 1.1rem;
  }

  .btn-glow .shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    z-index: 1;
    animation: shineLoop 2.5s infinite ease-in-out;
    pointer-events: none;
  }

  @keyframes shineLoop {
    0% {
      left: -75%;
    }
    50% {
      left: 110%;
    }
    100% {
      left: 110%;
    }
  }


/* Меню по центру (десктоп) */
.main-nav .nav-link {
  color: #000;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0.3rem 0.75rem;
  transition: color 0.3s ease;

}

.main-nav .nav-link:hover {
  color: #7b0000;
  text-decoration: none;
}

/* Offcanvas меню */
.offcanvas-custom {
  background-color: #f8f9fa;
  padding: 1rem;
}

.menu-links a {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.menu-links a:hover {
  color: #7b0000;
  padding-left: 5px;
}

.contact-info {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.contact-info a {
  color: #7b0000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.offcanvas-intro {
  font-size: 1.3rem;
  color: #555;
  font-weight: 500;
}


@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
        border-top: 1px solid red;
    }
    .transport-text {
      font-weight: 600;
      font-size: 1.6rem;
      color: #333;
    }
    
}


/* main */
.block__1 {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.block__1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.block__1 .container {
  position: relative;
  z-index: 2;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }

  .fade-in-delay {
    animation-delay: 0.3s;
  }

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

  .btn-animate {
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .btn-animate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(160, 0, 0, 0.3);
  }

  .highlight-icon {
    color: #a00;
    margin-right: 6px;
  }

 @media (max-width: 575.98px) {
    #block__2 .col-12 {
      display: flex;
      justify-content: center;
    }

    #block__2 .card {
      width: 90%;
    }
  }


  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.3rem !important;
    font-weight: bold;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 0px;
  }
.btn-nav {
  width: 40px;
  height: 40px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.btn-nav:hover {
  background-color: #bb2d3b;
}

.btn-nav i {
  font-size: 1.25rem;
  line-height: 1;
}




/* footer */
.footer-main {
  font-size: 1rem;
}

.footer-main a {
  text-decoration: none;
}

.footer-main a:hover {
  text-decoration: underline;
  color: #7b0000;
}
.fw-bold {
  font-weight: 600 !important;
  font-size: 1.3rem;
}

.bi-phone-fill {
  color: #ff9900 !important;
}

.call-button {
      position: fixed;
      bottom: 100px;
      right: 20px;
      z-index: 1000;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #ff9900;
      color: #fff;
      border: none;
      box-shadow: 0 0 15px rgba(220, 53, 69, 0.5), 0 0 25px rgba(220, 53, 69, 0.3);
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      animation: pulse 2s infinite;
      cursor: pointer;
    }

    .call-button.visible {
      display: flex;
    }

    .call-button i {
      animation: shake 1s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(220, 53, 69, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
      }
    }

    @keyframes shake {
      0% { transform: rotate(0deg); }
      25% { transform: rotate(15deg); }
      50% { transform: rotate(-15deg); }
      75% { transform: rotate(10deg); }
      100% { transform: rotate(0deg); }
    }
