* {box-sizing: border-box;}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero-bg {
  background-image: linear-gradient(to bottom, rgba(11,31,58,0) 0%,rgba(11,31,58,1) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80");
  background-size: cover;
  background-position: center 30%;
}

/* ── SEARCH BAR ── */
.search-tab.active {
  background: #ff6b35;
  color: white;
}
.search-tab {
  transition: all 0.2s;
}
.search-input-group {
  border-right: 1px solid #e5e7eb;
}
.search-input-group:last-of-type {
  border-right: none;
}

/* ── DESTINATION CARD ── */
.dest-card {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.dest-card img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card:hover img {
  transform: scale(1.07);
}
.dest-card .overlay {
  background: linear-gradient(
    to top,
    rgba(11, 31, 58, 0.75) 0%,
    transparent 55%
  );
}
.cheap-airline {
  background: #f4f4f4;
    &:before {
        background-color: #0B1F3A;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
    }
}

/* ── TICKET CARD ── */
.ticket-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
  overflow: hidden;
  transition: all 0.3s;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.14);
}
.ticket-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

/* ── HOW IT WORKS ── */
.how-bg {
  background-image:  linear-gradient(to bottom, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.85)),
  url("/assets/bg-how-it-works.jpg");
  background-size: cover;
  background-position: center;
}
.img-2 {
  position: absolute;
  top: 66px;
  right: 60px;
  z-index: 11;
  width: 50%;
  height: 30%;
}
.img-3 {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 12;
  width: 40%;
  height: 55%;
}

/* ── WHY US ── */
.why-icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FLIGHT SEARCH STRIP ── */
.flight-strip {
  background: linear-gradient(135deg, #0b1f3a 0%, #1a3255 100%);
}
.flight-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.flight-item:last-child {
  border-right: none;
}

/* ── SLIDERS ── */
.slider-destinations {
  .slick-slide {
    padding: 0 12px !important;
  }
}
.wrap-testimonials {
  .slick-slide {
    padding: 0 12px !important;
    img {
      height: 125px !important;
      border-radius: 10px;
    }
  }
  .slick-dots {
    bottom: -40px;
    li {
      margin: 0;
      button:before {font-size: 10px;}
    }
  }
}

/* ── FAQ ── */
.faq-item {
  margin-bottom: 15px !important;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-icon {
  transition: transform 0.3s;
}
.block-thumbnails {
  img {position: absolute;}
  img:nth-child(1) {
    bottom: 0;
    left: 8%;
  }
  img:nth-child(2) {
    right: 5%;
    top: 15%;
  }
  img:nth-child(3) {
    right: 10%;
    bottom: 10%;
  }
  img:nth-child(4) {
    left: -20%;
    top: 45%;
  }
  img:nth-child(5) {
    left: 25%;
    top: 5%;
  }
}

/* ── FOOTER ── */
.footer-bg {
  background: #0A0A0A;
}

/* ── NAV ── */
.nav-scroll {
      background: White;
    backdrop-filter: blur(16px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── DOTS ── */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s, transform 0.2s;
}
.dot.active {
  background: #ff6b35;
  transform: scale(1.3);
}

/* ── MOBILE NAV ── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
#mobile-menu.open {
  max-height: 400px;
}

/* ── SEARCH TAB LINE ── */
.tab-underline {
  height: 2px;
  background: #ff6b35;
  transition: transform 0.3s;
}

/* ── SCROLLBAR HIDDEN ── */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── CARD SHINE ── */
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* ── TRUST BADGE ── */
.trust-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-anim-1 {
  animation: fadeSlideUp 0.8s 0.1s both;
}
.hero-anim-2 {
  animation: fadeSlideUp 0.8s 0.25s both;
}
.hero-anim-3 {
  animation: fadeSlideUp 0.8s 0.42s both;
}
.hero-anim-4 {
  animation: fadeSlideUp 0.8s 0.58s both;
}

@keyframes pulse-brand {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}
.btn-pulse {
  animation: pulse-brand 2.5s infinite;
}
.dropdown-item:hover {
    background-color: #ff6b35 !important;
}

/* ✅ Text ek line me rahe */
.dropdown-item {
    white-space: nowrap; /* line break band */
    overflow: hidden; /* extra text hide */
    text-overflow: ellipsis; /* ... show kare */
}

/* ======== Media Breakpoints ========== */
@media (max-width: 767px) {
  .airline-strip img {max-width: 150px !important;}
  .wrap-testimonials .slick-list {padding: 0 8% !important;}
  .testimonial-card > div.flex {
    display: block !important;
    img {margin-top: 25px; display: block; width: 60px !important; height: 60px !important;}
    .info-testimonial {width: 100% !important;}
  }
  .img-1 img {height: auto !important;}
  .slider-destinations {
    .slick-arrow {z-index: 10;}
    .slick-next {right: 0;}
    .slick-prev {left: 0;}
  }
}


.passenger-wrapper {
    flex: 1;
    position: relative;
}

.trigger {
    background: #f3f4f6;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.dropdown-economy {
    display: none;
    position: absolute;
    top: 105%;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.row-economy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;

    .label {
        font-size: 12px;
    }

    .sub {
        font-size: 10px;
        color: #888;
    }
}

.controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .controls button {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: none;
        background: #ea580c;
        color: white;
        font-size: 13px;
        cursor: pointer;
    }

.controls span {
    min-width: 10px;
    text-align: center;
    font-size: 12px;
}

.done {
    width: 100%;
    padding: 5px 10px;
    background: #ea580c;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#summary {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

