/* ==========================================================================
   Gurukrupa Tours and Travels - Custom Fixes
   Mobile Call/WhatsApp floating bar + form/link polish.
   ========================================================================== */

/* Floating Call + WhatsApp bar - mobile only */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 58px; /* keep floating bar from covering footer content */
  }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta-bar .mobile-cta-btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }

  .mobile-cta-bar .call-btn {
    background-color: #01072e;
    color: #ffffff;
  }

  .mobile-cta-bar .whatsapp-btn {
    background-color: #25d366;
    color: #ffffff;
  }

  .mobile-cta-bar .mobile-cta-btn i {
    font-size: 16px;
  }
}

/* Small polish: keep dropdown/menu links readable when converted to WhatsApp links */
.footer-widget__links-list a,
.user-links a {
  cursor: pointer;
}

/* ==========================================================================
   Hero photo slider (homepage banner-section)
   Full-width, full-bleed photo carousel behind the hero heading/CTA.
   Owl Carousel (already loaded + initialised on .banner-carousel in
   js/script.js) handles the autoplay/loop/nav - this just styles each
   slide as a responsive, cover-fit background photo.
   ========================================================================== */
.banner-section.hero-slider {
  position: relative;
  overflow: hidden;
}

.banner-section.hero-slider .owl-carousel,
.banner-section.hero-slider .owl-stage-outer,
.banner-section.hero-slider .owl-stage,
.banner-section.hero-slider .owl-item {
  height: 100%;
}

.banner-section.hero-slider .slide-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-section.hero-slider .slide-item .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(1, 7, 46, 0.82) 0%,
    rgba(1, 7, 46, 0.58) 45%,
    rgba(1, 7, 46, 0.25) 100%
  );
}

.banner-section.hero-slider .slide-item .auto-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 991px) {
  .banner-section.hero-slider .slide-item {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .banner-section.hero-slider .slide-item {
    min-height: 420px;
  }
  .banner-section.hero-slider .slide-item .slide-overlay {
    background: rgba(1, 7, 46, 0.62);
  }
}

@media (max-width: 480px) {
  .banner-section.hero-slider .slide-item {
    min-height: 360px;
  }
}
