@font-face {
  font-family: 'Geist-Light';
  src: url('../fonts/Geist-Light.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}
 
@font-face {
  font-family: 'Geist-Regular';
  src: url('../fonts/Geist-Regular.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist-Bold';
  src: url('../fonts/Geist-Bold.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neira-Light';
  src: url('../fonts/Neira-Light.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neira-Regular';
  src: url('../fonts/Neira-Regular.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}
  
@font-face {
  font-family: 'Neira-Bold';
  src: url('../fonts/Neira-Bold.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

.neira-light{
  font-family: 'Neira-Light';
} 

.neira-regular{
  font-family: 'Neira-Regular';
} 

.neira-bold{
  font-family: 'Neira-Bold';
} 

.geist-light{
  font-family: 'Geist-Light';
} 

.geist-regular{
  font-family: 'Geist-Regular';
}  

.geist-bold{
  font-family: 'Geist-Bold';
} 
  

.pattern-top {
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='40' viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37'%3E%3Cpath d='M0 10 Q30 0 60 10 T120 10 V15 H0 Z'/%3E%3Cpath d='M0 25 Q30 15 60 25 T120 25 V30 H0 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: top center;
    height: 80px;
} 
.fleet-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.fleet-card {
  background: #fff;
  border: 1px solid rgba(11, 28, 61, 0.08);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 28, 61, 0.08);
}

.fleet-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fleet-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.fleet-card__badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Geist-Regular';
  font-size: 0.68rem;
  color: #0B1C3D;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  padding: 0.3rem 0.6rem;
}

.fleet-card__capacity {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.75rem;
  font-family: 'Geist-Bold';
  font-size: 0.85rem;
  color: #0B1C3D;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9999px;
  padding: 0.35rem 0.8rem;
}

.fleet-card__body {
  padding: 1.15rem 1rem 1.3rem;
  text-align: center;
}

@media (max-width: 1023px) {
  .fleet-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fleet-slider {
    display: none;
  }

  .fleet-card {
    border-radius: 1rem;
  }
}

.fleet-swiper .swiper-pagination {
  position: static;
  margin-top: 0.9rem;
}

.fleet-swiper .swiper-pagination-bullet {
  background: rgba(11, 28, 61, 0.28);
  opacity: 1;
}

.fleet-swiper .swiper-pagination-bullet-active {
  background: #0B1C3D;
}

.hotel-swiper {
  height: 100%;
}

.hotel-swiper .swiper-slide {
  height: auto; 
}

.hotel-swiper .swiper-pagination {
  bottom: 0.8rem !important;
}

.hotel-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.hotel-swiper .swiper-pagination-bullet-active {
  background: #E4C67A;
}

.hotel-swiper__button {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 9999px;
  background: rgba(11, 28, 61, 0.65);
  color: #fff !important;
}

.hotel-swiper__button::after {
  font-size: 0.75rem !important;
  font-weight: 700;
}

.gallery-shell-enter {
  animation: galleryShellFadeIn 320ms ease-out;
}

.gallery-item-wrap {
  position: relative;
  isolation: isolate;
}

.gallery-item-image {
  opacity: 0;
  filter: blur(6px);
  transform: scale(1.02);
  transition: opacity 320ms ease, filter 320ms ease, transform 320ms ease;
}

.gallery-item-image.is-loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.gallery-item-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(11, 28, 61, 0.08), rgba(11, 28, 61, 0.16), rgba(11, 28, 61, 0.08));
  background-size: 200% 100%;
  animation: galleryShimmer 1.3s linear infinite;
  transition: opacity 220ms ease;
}

.gallery-item-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-item-spinner {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 2px solid rgba(11, 28, 61, 0.2);
  border-top-color: rgba(11, 28, 61, 0.8);
  animation: gallerySpin 0.7s linear infinite;
}

@keyframes gallerySpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes galleryShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes galleryShellFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/*wpp*/
.wpp {
    background-color: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    animation: pulse-red 2s infinite;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 15px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 #888;
    z-index: 1000;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpp:hover .fa{
    color: #fff; 
    transition: 0.5s;
}
.wpp:hover{ 
    background-color:#1ebe5d;
    transition: 0.5s;
}
.wpp svg{
  width: 30px;
}
@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
