body {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
  font-family: "Inter", sans-serif !important;
}
.font-display {
  /* font-family: "Playfair Display", serif; */
  font-family: "Lora", serif !important;
}

.hero-bg {
  background: linear-gradient(
      120deg,
      rgba(15, 32, 68, 0.9) 0%,
      rgba(15, 32, 68, 0.65) 55%,
      rgba(15, 32, 68, 0.35) 100%
    ),
    url("/assets/bg-hero-2.jpg")
      center/cover no-repeat;
}

@keyframes planeFly {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-14px) rotate(-5deg);
  }
}
.plane-float {
  animation: planeFly 5s ease-in-out infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 34s linear infinite;
  white-space: nowrap;
  min-width: max-content;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.tab-btn {
  border-bottom: 3px solid transparent;
}
.tab-btn.active {
  border-color: #e05c1a;
  color: #e05c1a;
  font-weight: 700;
}

.route-card:hover .route-img {
  transform: scale(1.07);
}
.route-img {
  transition: transform 0.5s ease;
}

.benefit-card:hover {
  border-color: #e05c1a;
  box-shadow: 0 8px 32px rgba(224, 92, 26, 0.1);
}

.faq-body {
  overflow: hidden;
  display: none;
}
.faq-body.open {
    display: block;
}
.faq-icon {
  transition: transform 0.3s;
  display: inline-block;
}
.faq-icon.open {
  transform: rotate(45deg);
}

.form-input:focus {
  border-color: #e05c1a;
  box-shadow: 0 0 0 3px rgba(224, 92, 26, 0.12);
  outline: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #e05c1a;
  border-radius: 3px;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}


/* -- Our Partners -- */
.our-partners {
    .airlines-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 25px;
    }
}